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.1.ebuild ChangeLog elfix-0.2.0.ebuild
Date: Tue, 27 Sep 2011 18:55:18
Message-Id: 20110927185506.88CF220036@flycatcher.gentoo.org
1 blueness 11/09/27 18:55:06
2
3 Modified: ChangeLog
4 Added: elfix-0.2.1.ebuild
5 Removed: elfix-0.2.0.ebuild
6 Log:
7 Improves control of setting PT_PAX flags
8
9 (Portage version: 2.1.10.11/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.5 sys-apps/elfix/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.5&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.5&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.4&r2=1.5
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
21 retrieving revision 1.4
22 retrieving revision 1.5
23 diff -u -r1.4 -r1.5
24 --- ChangeLog 18 Sep 2011 23:48:48 -0000 1.4
25 +++ ChangeLog 27 Sep 2011 18:55:06 -0000 1.5
26 @@ -1,5 +1,11 @@
27
28
29 +*elfix-0.2.1 (27 Sep 2011)
30 +
31 + 27 Sep 2011; Anthony G. Basile <blueness@g.o> -elfix-0.2.0.ebuild,
32 + +elfix-0.2.1.ebuild:
33 + Improves control of setting PT_PAX flags
34 +
35 *elfix-0.2.0 (18 Sep 2011)
36
37 18 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.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: elfix-0.2.1.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.1.ebuild,v 1.1 2011/09/27 18:55:06 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 }