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-libs/libffi: ChangeLog libffi-3.0.6.ebuild
Date: Tue, 02 Sep 2008 15:08:55
Message-Id: E1KaXUx-0000r3-Ut@stork.gentoo.org
1 hkbst 08/09/02 15:08:51
2
3 Modified: ChangeLog
4 Added: libffi-3.0.6.ebuild
5 Log:
6 bump
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo-r1 x86_64)
8
9 Revision Changes Path
10 1.56 dev-libs/libffi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/ChangeLog?rev=1.56&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/ChangeLog?rev=1.56&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/ChangeLog?r1=1.55&r2=1.56
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v
19 retrieving revision 1.55
20 retrieving revision 1.56
21 diff -u -r1.55 -r1.56
22 --- ChangeLog 29 Jun 2008 12:49:08 -0000 1.55
23 +++ ChangeLog 2 Sep 2008 15:08:51 -0000 1.56
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/libffi
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v 1.55 2008/06/29 12:49:08 hkbst Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v 1.56 2008/09/02 15:08:51 hkbst Exp $
29 +
30 +*libffi-3.0.6 (02 Sep 2008)
31 +
32 + 02 Sep 2008; Marijn Schouten <hkBst@g.o> +libffi-3.0.6.ebuild:
33 + bump
34
35 29 Jun 2008; Marijn Schouten <hkBst@g.o> libffi-3.0.5.ebuild:
36 don't patch anymore, move warning to pkg_setup
37
38
39
40 1.1 dev-libs/libffi/libffi-3.0.6.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/libffi-3.0.6.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libffi/libffi-3.0.6.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libffi-3.0.6.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/libffi-3.0.6.ebuild,v 1.1 2008/09/02 15:08:51 hkbst Exp $
50
51 inherit eutils
52
53 DESCRIPTION="a portable, high level programming interface to various calling conventions."
54 HOMEPAGE="http://sourceware.org/libffi"
55 SRC_URI="ftp://sourceware.org/pub/${PN}/${P}.tar.gz"
56
57 LICENSE="MIT"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86"
60 IUSE="debug test"
61
62 DEPEND="test? ( dev-util/dejagnu )"
63 RDEPEND=""
64
65 pkg_setup() {
66 ewarn "This package provides a separate libffi which may conflict with the"
67 ewarn "one provided by sys-devel/gcc when it is built with libffi use flag on."
68 ebeep
69 }
70
71 src_compile() {
72 econf --disable-dependency-tracking \
73 $(use_enable debug) || die "econf failed."
74 emake || die "emake failed."
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" install || die "emake install failed."
79 dodoc ChangeLog* README TODO
80 }