diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2012-04-03 22:08:27 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2012-04-03 22:08:27 +0000 |
commit | dbd661d40b9c405fc092eb415dc79693ec8f48e5 (patch) | |
tree | 2b6e28e7b286bf9551b0cb61893dbc54f5604f41 /sys-apps/paxctl | |
parent | Stable for amd64, wrt bug #408177 (diff) | |
download | gentoo-2-dbd661d40b9c405fc092eb415dc79693ec8f48e5.tar.gz gentoo-2-dbd661d40b9c405fc092eb415dc79693ec8f48e5.tar.bz2 gentoo-2-dbd661d40b9c405fc092eb415dc79693ec8f48e5.zip |
Upstream corrected version, bug #410685, and switch to EAPI=4, bug #410711
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/paxctl')
-rw-r--r-- | sys-apps/paxctl/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/paxctl/paxctl-0.7-r1.ebuild | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/sys-apps/paxctl/ChangeLog b/sys-apps/paxctl/ChangeLog index b50b3f346d6b..f7bfeeb4eb80 100644 --- a/sys-apps/paxctl/ChangeLog +++ b/sys-apps/paxctl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/paxctl # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/paxctl/ChangeLog,v 1.34 2012/04/03 21:54:41 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/paxctl/ChangeLog,v 1.35 2012/04/03 22:08:27 blueness Exp $ + +*paxctl-0.7-r1 (03 Apr 2012) + + 03 Apr 2012; Anthony G. Basile <blueness@gentoo.org> +paxctl-0.7-r1.ebuild: + Upstream corrected version, bug #410685, and switch to EAPI=4, bug #410711 03 Apr 2012; Agostino Sarubbo <ago@gentoo.org> paxctl-0.7.ebuild: Stable for amd64, wrt bug #410685 diff --git a/sys-apps/paxctl/paxctl-0.7-r1.ebuild b/sys-apps/paxctl/paxctl-0.7-r1.ebuild new file mode 100644 index 000000000000..5f3a47c28303 --- /dev/null +++ b/sys-apps/paxctl/paxctl-0.7-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/paxctl/paxctl-0.7-r1.ebuild,v 1.1 2012/04/03 22:08:27 blueness Exp $ + +EAPI="4" + +inherit toolchain-funcs + +DESCRIPTION="Manages various PaX related program header flags for Elf32, Elf64, binaries." +SRC_URI="http://pax.grsecurity.net/${P}.tar.bz2" +HOMEPAGE="http://pax.grsecurity.net" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" +LICENSE="GPL-2" +SLOT="0" + +DEPEND=">=sys-devel/binutils-2.14.90.0.8-r1" +RDEPEND="" + +DOCS=( README ChangeLog ) + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" +} |