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/stklos: ChangeLog stklos-0.96.ebuild
Date: Wed, 28 Nov 2007 17:59:36
Message-Id: E1IxRC3-0002K4-04@stork.gentoo.org
1 hkbst 07/11/28 17:59:26
2
3 Modified: ChangeLog
4 Added: stklos-0.96.ebuild
5 Log:
6 bump + fix bug 199528
7 (Portage version: 2.1.4_rc4)
8
9 Revision Changes Path
10 1.5 dev-scheme/stklos/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/stklos/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/stklos/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/stklos/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/stklos/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 8 Jun 2007 11:48:39 -0000 1.4
23 +++ ChangeLog 28 Nov 2007 17:59:26 -0000 1.5
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-scheme/stklos
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/stklos/ChangeLog,v 1.4 2007/06/08 11:48:39 hkbst Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/stklos/ChangeLog,v 1.5 2007/11/28 17:59:26 hkbst Exp $
29 +
30 +*stklos-0.96 (28 Nov 2007)
31 +
32 + 28 Nov 2007; Marijn Schouten <hkBst@g.o> +files/multilib.patch,
33 + +stklos-0.96.ebuild:
34 + bump + fix bug 199528
35
36 *stklos-0.95 (08 Jun 2007)
37
38
39
40
41 1.1 dev-scheme/stklos/stklos-0.96.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/stklos/stklos-0.96.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/stklos/stklos-0.96.ebuild?rev=1.1&content-type=text/plain
45
46 Index: stklos-0.96.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-scheme/stklos/stklos-0.96.ebuild,v 1.1 2007/11/28 17:59:26 hkbst Exp $
51
52 inherit eutils
53
54 DESCRIPTION="fast and light Scheme implementation"
55 HOMEPAGE="http://www.stklos.org"
56 SRC_URI="http://www.stklos.org/download/${P}.tar.gz"
57 LICENSE="GPL-2"
58
59 SLOT="0"
60 KEYWORDS="~amd64"
61 IUSE="threads ldap gtk gnome"
62 DEPEND="dev-libs/gmp dev-libs/libpcre dev-libs/boehm-gc
63 ldap? ( net-nds/openldap )
64 gtk? ( x11-libs/gtk+ )"
65 # gnome? ( )" # someone using gnome should figure out what package will enable gnome support
66 #silex and ``The Dominique Boucher LALR Package'' may also be deps, not in tree though
67 RDEPEND="${DEPEND}"
68
69 pkg_setup() {
70 if use threads; then
71 built_with_use dev-libs/boehm-gc threads || die "boehm-gc must be built with threads use flag"
72 fi
73 }
74
75 src_unpack() {
76 unpack ${A}; cd "${S}"
77
78 cp cinvoke/Makefile.templ cinvoke/Makefile.templ.old
79 sed "s:\[PREFIX\]:\$\(DESTDIR\)\[PREFIX\]:g" -i cinvoke/Makefile.templ
80 diff -u cinvoke/Makefile.templ.old cinvoke/Makefile.templ
81
82 epatch "${FILESDIR}"/multilib.patch
83 }
84
85 src_compile() {
86 #anyone interested in lurc threads? not in tree though
87 econf $(use_enable threads threads pthreads) $(use_enable ldap) $(use_enable gtk) $(use_enable gnome) \
88 --without-gmp-light --without-provided-gc --without-provided-regexp
89
90 emake || die "emake failed"
91 }
92
93 src_install() {
94 emake DESTDIR="${D}" install || die "Install failed"
95 }
96
97
98
99 --
100 gentoo-commits@g.o mailing list