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: libffi-3.0.8.ebuild ChangeLog
Date: Sat, 03 Oct 2009 16:38:26
Message-Id: E1Mu7cm-0003by-MC@stork.gentoo.org
1 ssuominen 09/10/03 16:38:24
2
3 Modified: libffi-3.0.8.ebuild ChangeLog
4 Log:
5 Move dev-libs/libffi back to EAPI="0" because dev-lang/python is consuming it.
6 (Portage version: 2.2_rc42/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.20 dev-libs/libffi/libffi-3.0.8.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/libffi-3.0.8.ebuild?rev=1.20&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/libffi-3.0.8.ebuild?rev=1.20&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/libffi-3.0.8.ebuild?r1=1.19&r2=1.20
14
15 Index: libffi-3.0.8.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libffi/libffi-3.0.8.ebuild,v
18 retrieving revision 1.19
19 retrieving revision 1.20
20 diff -u -r1.19 -r1.20
21 --- libffi-3.0.8.ebuild 2 Oct 2009 19:53:34 -0000 1.19
22 +++ libffi-3.0.8.ebuild 3 Oct 2009 16:38:24 -0000 1.20
23 @@ -1,8 +1,7 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/libffi-3.0.8.ebuild,v 1.19 2009/10/02 19:53:34 ssuominen Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/libffi-3.0.8.ebuild,v 1.20 2009/10/03 16:38:24 ssuominen Exp $
28
29 -EAPI=2
30 inherit autotools eutils
31
32 DESCRIPTION="a portable, high level programming interface to various calling conventions."
33 @@ -18,17 +17,20 @@
34 DEPEND="!<dev-libs/g-wrap-1.9.11
35 test? ( dev-util/dejagnu )"
36
37 -src_prepare() {
38 +src_unpack() {
39 + unpack ${A}
40 + cd "${S}"
41 epatch "${FILESDIR}"/${P}-fbsd.patch \
42 "${FILESDIR}"/${P}-autoconf-2.64.patch
43 eautoreconf
44 }
45
46 -src_configure() {
47 +src_compile() {
48 econf \
49 --disable-dependency-tracking \
50 $(use_enable static-libs static) \
51 $(use_enable debug)
52 + emake || die
53 }
54
55 src_install() {
56 @@ -37,9 +39,5 @@
57 }
58
59 pkg_postinst() {
60 - if has_version sys-devel/gcc[libffi]; then
61 - ewarn "Please unset USE flag libffi in sys-devel/gcc. There is no"
62 - ewarn "file collision but your package might link to wrong library."
63 - ebeep
64 - fi
65 + ewarn "If you have sys-devel/gcc built with USE libffi, unset it immediately."
66 }
67
68
69
70 1.78 dev-libs/libffi/ChangeLog
71
72 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/ChangeLog?rev=1.78&view=markup
73 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/ChangeLog?rev=1.78&content-type=text/plain
74 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/ChangeLog?r1=1.77&r2=1.78
75
76 Index: ChangeLog
77 ===================================================================
78 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v
79 retrieving revision 1.77
80 retrieving revision 1.78
81 diff -u -r1.77 -r1.78
82 --- ChangeLog 2 Oct 2009 19:53:34 -0000 1.77
83 +++ ChangeLog 3 Oct 2009 16:38:24 -0000 1.78
84 @@ -1,6 +1,10 @@
85 # ChangeLog for dev-libs/libffi
86 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
87 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v 1.77 2009/10/02 19:53:34 ssuominen Exp $
88 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v 1.78 2009/10/03 16:38:24 ssuominen Exp $
89 +
90 + 03 Oct 2009; Samuli Suominen <ssuominen@g.o> libffi-3.0.8.ebuild:
91 + Move dev-libs/libffi back to EAPI="0" because dev-lang/python is consuming
92 + it.
93
94 02 Oct 2009; Samuli Suominen <ssuominen@g.o> libffi-3.0.8.ebuild,
95 +files/libffi-3.0.8-autoconf-2.64.patch: