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.8.6.ebuild ChangeLog
Date: Wed, 30 Jul 2014 17:35:55
Message-Id: 20140730173546.4F4132004E@flycatcher.gentoo.org
1 blueness 14/07/30 17:35:45
2
3 Modified: ChangeLog
4 Added: elfix-0.8.6.ebuild
5 Log:
6 Version bump, builds fix-gnustack contingent on --enable-ptpax
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.84 sys-apps/elfix/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.84&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.84&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.83&r2=1.84
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
20 retrieving revision 1.83
21 retrieving revision 1.84
22 diff -u -r1.83 -r1.84
23 --- ChangeLog 7 Jun 2014 14:36:12 -0000 1.83
24 +++ ChangeLog 30 Jul 2014 17:35:45 -0000 1.84
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/elfix
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v 1.83 2014/06/07 14:36:12 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v 1.84 2014/07/30 17:35:45 blueness Exp $
30 +
31 +*elfix-0.8.6 (30 Jul 2014)
32 +
33 + 30 Jul 2014; Anthony G. Basile <blueness@g.o> +elfix-0.8.6.ebuild:
34 + Version bump, builds fix-gnustack contingent on --enable-ptpax
35
36 *elfix-0.8.5 (07 Jun 2014)
37
38
39
40
41 1.1 sys-apps/elfix/elfix-0.8.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.8.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.8.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: elfix-0.8.6.ebuild
47 ===================================================================
48 # Copyright 1999-2014 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.8.6.ebuild,v 1.1 2014/07/30 17:35:45 blueness Exp $
51
52 EAPI="5"
53
54 DESCRIPTION="A suite of tools to work with ELF objects on Hardened Gentoo."
55 HOMEPAGE="http://www.gentoo.org/proj/en/hardened/pax-quickstart.xml
56 http://dev.gentoo.org/~blueness/elfix/"
57 SRC_URI="http://dev.gentoo.org/~blueness/elfix/${P}.tar.gz"
58
59 LICENSE="GPL-3"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="+ptpax +xtpax"
63
64 REQUIRED_USE="|| ( ptpax xtpax )"
65
66 # These only work with a properly configured PaX kernel
67 RESTRICT="test"
68
69 DEPEND="~dev-python/pypax-${PV}[ptpax=,xtpax=]
70 ptpax? ( dev-libs/elfutils )
71 xtpax? ( sys-apps/attr )"
72
73 RDEPEND="${DEPEND}"
74
75 src_configure() {
76 rm -f "${S}/scripts/setup.py"
77 econf --disable-tests \
78 $(use_enable ptpax) \
79 $(use_enable xtpax)
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" install
84 dodoc AUTHORS ChangeLog INSTALL README THANKS TODO
85 }