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_rc1.ebuild
Date: Mon, 05 Oct 2009 17:26:56
Message-Id: E1MurKo-0001Sl-5O@stork.gentoo.org
1 ssuominen 09/10/05 17:26:54
2
3 Modified: ChangeLog
4 Added: libffi-3.0.9_rc1.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc43/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.79 dev-libs/libffi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/ChangeLog?rev=1.79&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/ChangeLog?rev=1.79&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/ChangeLog?r1=1.78&r2=1.79
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v
19 retrieving revision 1.78
20 retrieving revision 1.79
21 diff -u -r1.78 -r1.79
22 --- ChangeLog 3 Oct 2009 16:38:24 -0000 1.78
23 +++ ChangeLog 5 Oct 2009 17:26:53 -0000 1.79
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-libs/libffi
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v 1.78 2009/10/03 16:38:24 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v 1.79 2009/10/05 17:26:53 ssuominen Exp $
29 +
30 +*libffi-3.0.9_rc1 (05 Oct 2009)
31 +
32 + 05 Oct 2009; Samuli Suominen <ssuominen@g.o>
33 + +libffi-3.0.9_rc1.ebuild:
34 + Version bump.
35
36 03 Oct 2009; Samuli Suominen <ssuominen@g.o> libffi-3.0.8.ebuild:
37 Move dev-libs/libffi back to EAPI="0" because dev-lang/python is consuming
38
39
40
41 1.1 dev-libs/libffi/libffi-3.0.9_rc1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/libffi-3.0.9_rc1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/libffi-3.0.9_rc1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libffi-3.0.9_rc1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/libffi-3.0.9_rc1.ebuild,v 1.1 2009/10/05 17:26:53 ssuominen Exp $
51
52 inherit autotools eutils
53
54 DESCRIPTION="a portable, high level programming interface to various calling conventions."
55 HOMEPAGE="http://sourceware.org/libffi"
56 SRC_URI="ftp://sources.redhat.com/pub/${PN}/${P/_}.tar.gz"
57
58 LICENSE="MIT"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
61 IUSE="debug static-libs test"
62
63 RDEPEND=""
64 DEPEND="!<dev-libs/g-wrap-1.9.11
65 test? ( dev-util/dejagnu )"
66
67 S=${WORKDIR}/${P/_}
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 epatch "${FILESDIR}"/${PN}-3.0.8-autoconf-2.64.patch
73 eautoreconf
74 }
75
76 src_compile() {
77 econf \
78 --disable-dependency-tracking \
79 $(use_enable static-libs static) \
80 $(use_enable debug)
81 emake || die
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die
86 dodoc ChangeLog* README
87 }
88
89 pkg_postinst() {
90 ewarn "If you have sys-devel/gcc built with USE libffi, unset it immediately."
91 }