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.5.ebuild ChangeLog
Date: Sat, 07 Jun 2014 14:36:18
Message-Id: 20140607143613.300EA2004E@flycatcher.gentoo.org
1 blueness 14/06/07 14:36:13
2
3 Modified: ChangeLog
4 Added: elfix-0.8.5.ebuild
5 Log:
6 Version bump, adds compat with BSD and musl
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.83 sys-apps/elfix/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.83&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.83&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.82&r2=1.83
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
20 retrieving revision 1.82
21 retrieving revision 1.83
22 diff -u -r1.82 -r1.83
23 --- ChangeLog 26 Jan 2014 12:12:26 -0000 1.82
24 +++ ChangeLog 7 Jun 2014 14:36:12 -0000 1.83
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.82 2014/01/26 12:12:26 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v 1.83 2014/06/07 14:36:12 blueness Exp $
30 +
31 +*elfix-0.8.5 (07 Jun 2014)
32 +
33 + 07 Jun 2014; Anthony G. Basile <blueness@g.o> +elfix-0.8.5.ebuild:
34 + Version bump, adds compat with BSD and musl
35
36 26 Jan 2014; Agostino Sarubbo <ago@g.o> elfix-0.8.4.ebuild:
37 Stable for sparc, wrt bug #495624
38
39
40
41 1.1 sys-apps/elfix/elfix-0.8.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.8.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.8.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: elfix-0.8.5.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.5.ebuild,v 1.1 2014/06/07 14:36:12 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 }