Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/elfix: elfix-0.2.2.ebuild ChangeLog elfix-0.2.1.ebuild
Date: Mon, 03 Oct 2011 16:36:13
Message-Id: 20111003163603.796C22004B@flycatcher.gentoo.org
1 blueness 11/10/03 16:36:03
2
3 Modified: ChangeLog
4 Added: elfix-0.2.2.ebuild
5 Removed: elfix-0.2.1.ebuild
6 Log:
7 Bump, fix FEATURES=test
8
9 (Portage version: 2.1.10.11/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.6 sys-apps/elfix/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.6&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.6&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.5&r2=1.6
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
21 retrieving revision 1.5
22 retrieving revision 1.6
23 diff -u -r1.5 -r1.6
24 --- ChangeLog 27 Sep 2011 18:55:06 -0000 1.5
25 +++ ChangeLog 3 Oct 2011 16:36:03 -0000 1.6
26 @@ -1,5 +1,11 @@
27
28
29 +*elfix-0.2.2 (03 Oct 2011)
30 +
31 + 03 Oct 2011; Anthony G. Basile <blueness@g.o> -elfix-0.2.1.ebuild,
32 + +elfix-0.2.2.ebuild:
33 + Bump, fix FEATURES="test"
34 +
35 *elfix-0.2.1 (27 Sep 2011)
36
37 27 Sep 2011; Anthony G. Basile <blueness@g.o> -elfix-0.2.0.ebuild,
38
39
40
41 1.1 sys-apps/elfix/elfix-0.2.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.2.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.2.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: elfix-0.2.2.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.2.2.ebuild,v 1.1 2011/10/03 16:36:02 blueness Exp $
51
52 EAPI=4
53
54 DESCRIPTION="Tools to fix ELF binaries to work on Hardened Gentoo"
55 HOMEPAGE="http://dev.gentoo.org/~blueness/elfix/"
56 SRC_URI="http://dev.gentoo.org/~blueness/elfix/${P}.tar.gz"
57
58 LICENSE="GPL-3"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE="test"
62
63 DEPEND="dev-libs/elfutils
64 test? ( dev-lang/yasm )"
65 RDEPEND="${DEPEND}"
66
67 src_configure() {
68 econf $(use_enable test tests)
69 }
70
71 src_install() {
72 emake DESTDIR="${D}" install
73 dodoc AUTHORS ChangeLog INSTALL README THANKS TODO
74 }