Gentoo Archives: gentoo-commits

From: "Akinori Hattori (hattya)" <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-scheme/gauche: ChangeLog gauche-0.9.ebuild
Date: Fri, 25 Dec 2009 13:23:14
Message-Id: E1NOA8N-0002md-LC@stork.gentoo.org
1 hattya 09/12/25 13:23:11
2
3 Modified: ChangeLog
4 Added: gauche-0.9.ebuild
5 Log:
6 new upstream release.
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.22 dev-scheme/gauche/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gauche/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gauche/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gauche/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/gauche/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 25 Dec 2009 13:20:42 -0000 1.21
23 +++ ChangeLog 25 Dec 2009 13:23:11 -0000 1.22
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-scheme/gauche
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/gauche/ChangeLog,v 1.21 2009/12/25 13:20:42 hattya Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/gauche/ChangeLog,v 1.22 2009/12/25 13:23:11 hattya Exp $
29 +
30 +*gauche-0.9 (25 Dec 2009)
31 +
32 + 25 Dec 2009; Akinori Hattori <hattya@g.o> +gauche-0.9.ebuild:
33 + new upstream release.
34
35 25 Dec 2009; Akinori Hattori <hattya@g.o> gauche-0.8.14.ebuild:
36 stable on x86.
37
38
39
40 1.1 dev-scheme/gauche/gauche-0.9.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gauche/gauche-0.9.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gauche/gauche-0.9.ebuild?rev=1.1&content-type=text/plain
44
45 Index: gauche-0.9.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-scheme/gauche/gauche-0.9.ebuild,v 1.1 2009/12/25 13:23:11 hattya Exp $
50
51 inherit autotools eutils flag-o-matic
52
53 IUSE="ipv6"
54
55 MY_P="${P/g/G}"
56
57 DESCRIPTION="A Unix system friendly Scheme Interpreter"
58 HOMEPAGE="http://gauche.sf.net/"
59 SRC_URI="mirror://sourceforge/gauche/${MY_P}.tgz"
60
61 LICENSE="BSD"
62 KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
63 SLOT="0"
64 S="${WORKDIR}/${MY_P}"
65
66 DEPEND="sys-libs/gdbm"
67
68 src_unpack() {
69
70 unpack ${A}
71 cd "${S}"
72
73 epatch "${FILESDIR}"/${PN}-gauche.m4.diff
74 epatch "${FILESDIR}"/${PN}-runpath.diff
75 eautoconf
76
77 }
78
79 src_compile() {
80
81 strip-flags
82
83 econf \
84 `use_enable ipv6` \
85 --enable-multibyte=utf8 \
86 --with-slib=/usr/share/slib \
87 || die
88 emake -j1 || die
89
90 }
91
92 src_test() {
93
94 emake -j1 -s check || die
95
96 }
97
98 src_install() {
99
100 emake DESTDIR="${D}" install-pkg install-doc || die
101 dodoc AUTHORS ChangeLog HACKING README
102
103 }