Magellan Linux

Contents of /trunk/core/readline/readline-6.2-r3.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9991 - (show annotations) (download)
Sun Jan 15 16:23:54 2012 UTC (12 years, 4 months ago) by niro
File size: 2244 byte(s)
-fixed handling of static libs
1 # $Id$
2
3 PNAME="readline"
4 PVER="6.2"
5 PBUILD="r3"
6
7 PATCH_LEVEL="2"
8
9 PCAT="sys-libs"
10
11 DESCRIPTION="readline is a set of libraries that offers command-line editing and history capabilities."
12 HOMEPAGE="http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html"
13
14 DEPEND=">= sys-libs/ncurses-5.9
15 >= app-shells/bash-4"
16
17 SRCFILE="${PNAME}-${PVER}.tar.gz"
18 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
19
20 sminclude mtools multilib
21
22 SRC_URI=(
23 gnu://${PNAME}/${SRCFILE}
24 ftp://ftp.cwru.edu/pub/bash/${SRCFILE}
25 mirror://${PNAME}/${SRCFILE}
26 mirror://${PNAME}/${PNAME}-5.0-parallel.patch
27 $(for ((i=1;i <= PATCH_LEVEL; i++))
28 do
29 ver=00${i}
30 [[ ${i} -ge 10 ]] && ver=0${i}
31 [[ ${i} -ge 100 ]] && ver=${i}
32 echo "gnu://${PNAME}/${PNAME}-${PVER}-patches/${PNAME}${PVER/./}-${ver}"
33 echo "ftp://ftp.cwru.edu/pub/bash/${PNAME}-${PVER}-patches/${PNAME}${PVER/./}-${ver}"
34 echo "mirror://${PNAME}/${PNAME}${PVER/./}-${ver}"
35 done)
36 )
37
38 [[ ! -z ${PATCH_LEVEL} ]] && UP2PVER="${PVER}.${PATCH_LEVEL}"
39 UP2DATE="updatecmd_gnu ${PNAME} gz"
40
41 src_prepare()
42 {
43 munpack ${SRCFILE} || die
44
45 # apply all upstream patches
46 local i
47 local ver
48 for ((i=1; i <= PATCH_LEVEL; i++))
49 do
50 ver=00${i}
51 [[ ${i} -ge 10 ]] && ver=0${i}
52 [[ ${i} -ge 100 ]] && ver=${i}
53
54 mpatch ${PNAME}${PVER/./}-${ver} || die
55 done
56
57 # fix parallel build
58 mpatch ${PNAME}-5.0-parallel.patch || die
59 }
60
61 src_compile()
62 {
63 mconfigure --libdir=/'$(mlibdir)' || die
64
65 # enforce linking with ncurses
66 mmake SHLIB_XLDFLAGS=-lncursesw || die
67 }
68
69 src_install()
70 {
71 # needed directories
72 all-abis minstalldir /usr/'$(mlibdir)' || die
73
74 minstall_destdir || die
75
76 # fix permissions
77 all-abis mchmod 0755 /'$(mlibdir)'/lib{readline,history}.so'\*' || die
78
79 if mqueryfeature "static"
80 then
81 # move static libs to /usr/lib
82 all-abis mv ${BINDIR}/'$(mlibdir)'/lib{readline,history}.a ${BINDIR}/usr/'$(mlibdir)' || die
83 fi
84
85 # remove *.so from /lib and link them to /usr/lib
86 all-abis rm -v ${BINDIR}/'$(mlibdir)'/lib{readline,history}.so || die
87 all-abis mlink ../../'$(mlibdir)'/libreadline.so.${PVER%.*} /usr/'$(mlibdir)'/libreadline.so || die
88 all-abis mlink ../../'$(mlibdir)'/libhistory.so.${PVER%.*} /usr/'$(mlibdir)'/libhistory.so || die
89
90 minstalldocs CHANGELOG CHANGES COPYING MANIFEST NEWS README USAGE || die
91 }