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-scheme/guile: ChangeLog guile-1.8.3-r25.ebuild
Date: Fri, 07 Dec 2007 13:36:16
Message-Id: E1J0dND-0003oa-5Y@stork.gentoo.org
1 hkbst 07/12/07 13:36:11
2
3 Modified: ChangeLog
4 Added: guile-1.8.3-r25.ebuild
5 Log:
6 add guile that installs to prefix=/ for einit
7 (Portage version: 2.1.4_rc7)
8
9 Revision Changes Path
10 1.32 dev-scheme/guile/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/guile/ChangeLog?rev=1.32&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/guile/ChangeLog?rev=1.32&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/guile/ChangeLog?r1=1.31&r2=1.32
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/guile/ChangeLog,v
19 retrieving revision 1.31
20 retrieving revision 1.32
21 diff -u -r1.31 -r1.32
22 --- ChangeLog 13 Nov 2007 17:58:53 -0000 1.31
23 +++ ChangeLog 7 Dec 2007 13:36:10 -0000 1.32
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-scheme/guile
26 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/guile/ChangeLog,v 1.31 2007/11/13 17:58:53 drac Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/guile/ChangeLog,v 1.32 2007/12/07 13:36:10 hkbst Exp $
29 +
30 +*guile-1.8.3-r25 (07 Dec 2007)
31 +
32 + 07 Dec 2007; Marijn Schouten <hkBst@g.o> +guile-1.8.3-r25.ebuild:
33 + add guile that installs to prefix=/ for einit
34
35 13 Nov 2007; Samuli Suominen <drac@g.o> guile-1.8.2.ebuild:
36 amd64 stable wrt #182995
37
38
39
40 1.1 dev-scheme/guile/guile-1.8.3-r25.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/guile/guile-1.8.3-r25.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/guile/guile-1.8.3-r25.ebuild?rev=1.1&content-type=text/plain
44
45 Index: guile-1.8.3-r25.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-scheme/guile/guile-1.8.3-r25.ebuild,v 1.1 2007/12/07 13:36:10 hkbst Exp $
50
51 inherit eutils autotools flag-o-matic multilib
52
53 DESCRIPTION="Scheme interpreter"
54 HOMEPAGE="http://www.gnu.org/software/guile/"
55 SRC_URI="mirror://gnu/guile/${P}.tar.gz"
56
57 LICENSE="GPL-2"
58 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
59
60 DEPEND=">=dev-libs/gmp-4.1 >=sys-devel/libtool-1.5.6 sys-devel/gettext"
61
62 # Guile seems to contain some slotting support, /usr/share/guile/ is slotted,
63 # but there are lots of collisions. Most in /usr/share/libguile. Therefore
64 # I'm slotting this in the same slot as guile-1.6* for now.
65 SLOT="12"
66 MAJOR="1.8"
67
68 IUSE="networking regex discouraged deprecated elisp nls debug-freelist debug-malloc debug threads"
69
70 src_unpack() {
71 unpack ${A}; cd "${S}"
72
73 epatch "${FILESDIR}"/fix-reader-cr.diff
74
75 sed "s_sleep 999_sleep 1_" -i test-suite/tests/popen.test
76 }
77
78 src_compile() {
79 # see bug #178499
80 filter-flags -ftree-vectorize
81
82 #will fail for me if posix is disabled or without modules -- hkBst
83 econf --prefix=/ --libdir=/usr/$(get_libdir) \
84 --disable-error-on-warning \
85 --disable-static \
86 --enable-posix \
87 $(use_enable networking) \
88 $(use_enable regex) \
89 $(use deprecated || use_enable discouraged) \
90 $(use_enable deprecated) \
91 $(use_enable elisp) \
92 $(use_enable nls) \
93 --disable-rpath \
94 $(use_enable debug-freelist) \
95 $(use_enable debug-malloc) \
96 $(use_enable debug guile-debug) \
97 $(use_with threads) \
98 --with-modules
99
100 emake || die "make failed"
101 }
102
103 src_install() {
104 emake DESTDIR="${D}" install || die
105 # einstall || die "install failed"
106
107 dodoc AUTHORS ChangeLog GUILE-VERSION HACKING NEWS README SNAPSHOTS THANKS
108
109 # texmacs needs this, closing bug #23493
110 dodir /etc/env.d
111 echo "GUILE_LOAD_PATH=\"/usr/share/guile/${MAJOR}\"" > "${D}"/etc/env.d/50guile
112 }
113
114
115
116 --
117 gentoo-commits@g.o mailing list