Gentoo Archives: gentoo-commits

From: "Marijn Schouten (hkbst)" <hkbst@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lisp/clisp: ChangeLog clisp-2.48.ebuild
Date: Wed, 29 Jul 2009 14:22:21
Message-Id: E1MWA2r-0002yg-B8@stork.gentoo.org
1 hkbst 09/07/29 14:22:17
2
3 Modified: ChangeLog clisp-2.48.ebuild
4 Log:
5 some small improvement
6 (Portage version: 2.1.6.13/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.95 dev-lisp/clisp/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/clisp/ChangeLog?rev=1.95&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/clisp/ChangeLog?rev=1.95&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/clisp/ChangeLog?r1=1.94&r2=1.95
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-lisp/clisp/ChangeLog,v
18 retrieving revision 1.94
19 retrieving revision 1.95
20 diff -u -r1.94 -r1.95
21 --- ChangeLog 29 Jul 2009 11:32:46 -0000 1.94
22 +++ ChangeLog 29 Jul 2009 14:22:17 -0000 1.95
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-lisp/clisp
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/clisp/ChangeLog,v 1.94 2009/07/29 11:32:46 hkbst Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/clisp/ChangeLog,v 1.95 2009/07/29 14:22:17 hkbst Exp $
28 +
29 + 29 Jul 2009; Marijn Schouten <hkBst@g.o> clisp-2.48.ebuild:
30 + some small improvement
31
32 29 Jul 2009; Marijn Schouten <hkBst@g.o> -clisp-2.43-r1.ebuild,
33 -clisp-2.44.1.ebuild, -clisp-2.44.1-r1.ebuild, -clisp-2.46.ebuild,
34
35
36
37 1.2 dev-lisp/clisp/clisp-2.48.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/clisp/clisp-2.48.ebuild?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/clisp/clisp-2.48.ebuild?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/clisp/clisp-2.48.ebuild?r1=1.1&r2=1.2
42
43 Index: clisp-2.48.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/dev-lisp/clisp/clisp-2.48.ebuild,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- clisp-2.48.ebuild 29 Jul 2009 11:29:44 -0000 1.1
50 +++ clisp-2.48.ebuild 29 Jul 2009 14:22:17 -0000 1.2
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/clisp/clisp-2.48.ebuild,v 1.1 2009/07/29 11:29:44 hkbst Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/clisp/clisp-2.48.ebuild,v 1.2 2009/07/29 14:22:17 hkbst Exp $
56
57 EAPI=2
58
59 @@ -13,7 +13,7 @@
60
61 SLOT="2"
62 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc -sparc ~x86"
63 -IUSE="hyperspec X new-clx dbus fastcgi gdbm gtk pari pcre postgres readline svm zlib"
64 +IUSE="hyperspec X new-clx dbus fastcgi gdbm gtk pari +pcre postgres +readline svm +unicode +zlib" #threads
65
66 RDEPEND="virtual/libiconv
67 >=dev-libs/libsigsegv-2.4
68 @@ -42,7 +42,7 @@
69 [[ $# = 0 ]] && die "${FUNCNAME[0]} must receive at least one argument"
70 for m in "$@" ; do
71 einfo "enabling module $m"
72 - myconf="${myconf} --with-module=${m}"
73 + myconf+=" --with-module=${m}"
74 done
75 }
76
77 @@ -63,7 +63,7 @@
78 src_configure() {
79 # built-in features
80 local myconf="--with-ffcall --with-dynamic-modules"
81 - use readline || myconf="${myconf} --with-noreadline"
82 +# use threads && myconf+=" --with-threads=POSIX_THREADS"
83
84 # We need this to build on alpha/ia64
85 if use alpha || use ia64; then
86 @@ -106,6 +106,7 @@
87
88 # configure chokes on --sysconfdir option
89 local configure="./configure --prefix=/usr --libdir=/usr/$(get_libdir) \
90 + $(use_with readline) $(use_with unicode) \
91 ${myconf} --hyperspec=${CLHSROOT} ${BUILDDIR}"
92 einfo "${configure}"
93 ${configure} || die "./configure failed"
94 @@ -117,6 +118,7 @@
95 }
96
97 src_compile() {
98 + export VARTEXFONTS="${T}"/fonts
99 cd "${BUILDDIR}"
100 # parallel build fails
101 emake -j1 || die "emake failed"
102 @@ -126,7 +128,7 @@
103 pushd "${BUILDDIR}"
104 make DESTDIR="${D}" prefix=/usr install-bin || die
105 doman clisp.1
106 - dodoc SUMMARY README* NEWS MAGIC.add ANNOUNCE clisp.dvi clisp.html
107 + dodoc SUMMARY README* NEWS MAGIC.add ANNOUNCE
108 chmod a+x "${D}"/usr/$(get_libdir)/clisp-${PV/_*/}/clisp-link
109 # stripping them removes common symbols (defined but uninitialised variables)
110 # which are then needed to build modules...