Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libffi: ChangeLog libffi-3.0.9_rc3.ebuild libffi-3.0.9_rc1.ebuild libffi-3.0.9_rc2.ebuild
Date: Fri, 30 Oct 2009 12:57:12
Message-Id: E1N3r2V-0007W5-0k@stork.gentoo.org
1 ssuominen 09/10/30 12:57:11
2
3 Modified: ChangeLog
4 Added: libffi-3.0.9_rc3.ebuild
5 Removed: libffi-3.0.9_rc1.ebuild libffi-3.0.9_rc2.ebuild
6 Log:
7 Version bump.
8 (Portage version: 2.2_rc46/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.85 dev-libs/libffi/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/ChangeLog?rev=1.85&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/ChangeLog?rev=1.85&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/ChangeLog?r1=1.84&r2=1.85
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v
20 retrieving revision 1.84
21 retrieving revision 1.85
22 diff -u -r1.84 -r1.85
23 --- ChangeLog 27 Oct 2009 17:46:55 -0000 1.84
24 +++ ChangeLog 30 Oct 2009 12:57:10 -0000 1.85
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/libffi
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v 1.84 2009/10/27 17:46:55 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v 1.85 2009/10/30 12:57:10 ssuominen Exp $
30 +
31 +*libffi-3.0.9_rc3 (30 Oct 2009)
32 +
33 + 30 Oct 2009; Samuli Suominen <ssuominen@g.o>
34 + +libffi-3.0.9_rc3.ebuild:
35 + Version bump.
36
37 *libffi-3.0.9_rc2 (27 Oct 2009)
38
39
40
41
42 1.1 dev-libs/libffi/libffi-3.0.9_rc3.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/libffi-3.0.9_rc3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/libffi-3.0.9_rc3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libffi-3.0.9_rc3.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/libffi-3.0.9_rc3.ebuild,v 1.1 2009/10/30 12:57:10 ssuominen Exp $
52
53 inherit libtool
54
55 DESCRIPTION="a portable, high level programming interface to various calling conventions."
56 HOMEPAGE="http://sourceware.org/libffi"
57 SRC_URI="ftp://sources.redhat.com/pub/${PN}/${P/_}.tar.gz"
58
59 LICENSE="MIT"
60 SLOT="0"
61 KEYWORDS=""
62 IUSE="debug static-libs test"
63
64 RDEPEND=""
65 DEPEND="test? ( dev-util/dejagnu )"
66
67 S=${WORKDIR}/${P/_}
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 elibtoolize
73 }
74
75 src_compile() {
76 econf \
77 --disable-dependency-tracking \
78 $(use_enable static-libs static) \
79 $(use_enable debug)
80 emake || die
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" install || die
85 dodoc ChangeLog* README
86 }