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.5.1.ebuild ChangeLog elfix-0.5.0.ebuild
Date: Fri, 27 Jul 2012 22:55:38
Message-Id: 20120727225529.690162004B@flycatcher.gentoo.org
1 blueness 12/07/27 22:55:29
2
3 Modified: ChangeLog
4 Added: elfix-0.5.1.ebuild
5 Removed: elfix-0.5.0.ebuild
6 Log:
7 Switch from yasm to gcc for assembler to support all arches
8
9 (Portage version: 2.1.10.65/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.21 sys-apps/elfix/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.21&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?rev=1.21&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/ChangeLog?r1=1.20&r2=1.21
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-apps/elfix/ChangeLog,v
21 retrieving revision 1.20
22 retrieving revision 1.21
23 diff -u -r1.20 -r1.21
24 --- ChangeLog 27 Jul 2012 15:10:00 -0000 1.20
25 +++ ChangeLog 27 Jul 2012 22:55:29 -0000 1.21
26 @@ -1,5 +1,12 @@
27
28
29 +*elfix-0.5.1 (27 Jul 2012)
30 +
31 + 27 Jul 2012; Anthony G. Basile <blueness@g.o> -elfix-0.5.0.ebuild,
32 + +elfix-0.5.1.ebuild:
33 + Switch from yasm to gcc for assembler to support all arches
34 + Drop dev-lib/libelf because ELF_C_RDWR isn't enough to update phdr
35 +
36 27 Jul 2012; Anthony G. Basile <blueness@g.o> elfix-0.5.0.ebuild:
37 Test requiring yasm only works on amd64/x86
38
39
40
41
42 1.1 sys-apps/elfix/elfix-0.5.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.5.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/elfix/elfix-0.5.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: elfix-0.5.1.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/elfix/elfix-0.5.1.ebuild,v 1.1 2012/07/27 22:55:29 blueness Exp $
52
53 EAPI="4"
54
55 DESCRIPTION="Tools to work with ELF binaries and libraries on Hardened Gentoo."
56 HOMEPAGE="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="~amd64 ~x86"
62 IUSE="test xtpax"
63
64 DEPEND="
65 dev-libs/elfutils
66 =dev-python/pypax-0.5*[xtpax=]
67 xtpax? ( sys-apps/attr )"
68
69 RDEPEND="${DEPEND}"
70
71 src_configure() {
72 rm -f "${S}/scripts/setup.py"
73 econf $(use_enable test tests)
74 }
75
76 src_install() {
77 emake DESTDIR="${D}" install
78 dodoc AUTHORS ChangeLog INSTALL README THANKS TODO
79 }