diff options
author | Ned Ludd <solar@gentoo.org> | 2005-05-04 00:58:08 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2005-05-04 00:58:08 +0000 |
commit | 9ef9db84f35736434e84df175fb989e45f25b7ae (patch) | |
tree | ab2d88547ca2d57e53c1b2ee951b35ba41699069 /sys-apps/paxctl | |
parent | amd64 love (diff) | |
download | gentoo-2-9ef9db84f35736434e84df175fb989e45f25b7ae.tar.gz gentoo-2-9ef9db84f35736434e84df175fb989e45f25b7ae.tar.bz2 gentoo-2-9ef9db84f35736434e84df175fb989e45f25b7ae.zip |
- new paxctl release. new version includes ability to reuse/rename existing unneeded program header into PT_PAX_FLAGS
(Portage version: 2.0.51.21)
Diffstat (limited to 'sys-apps/paxctl')
-rw-r--r-- | sys-apps/paxctl/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/paxctl/Manifest | 4 | ||||
-rw-r--r-- | sys-apps/paxctl/files/digest-paxctl-0.3 | 1 | ||||
-rw-r--r-- | sys-apps/paxctl/paxctl-0.3.ebuild | 26 |
4 files changed, 37 insertions, 2 deletions
diff --git a/sys-apps/paxctl/ChangeLog b/sys-apps/paxctl/ChangeLog index 4590763552d7..bccfee182a1f 100644 --- a/sys-apps/paxctl/ChangeLog +++ b/sys-apps/paxctl/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/paxctl # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/paxctl/ChangeLog,v 1.8 2005/04/01 16:59:08 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/paxctl/ChangeLog,v 1.9 2005/05/04 00:58:08 solar Exp $ + +*paxctl-0.3 (03 May 2005) + + 03 May 2005; <solar@gentoo.org> +paxctl-0.3.ebuild: + - new paxctl release. new version includes ability to reuse/rename existing + unneeded program header into PT_PAX_FLAGS 01 Apr 2005; Aron Griffis <agriffis@gentoo.org> paxctl-0.2.ebuild: stable on ia64 diff --git a/sys-apps/paxctl/Manifest b/sys-apps/paxctl/Manifest index eac997412ce1..00f2bed6cb81 100644 --- a/sys-apps/paxctl/Manifest +++ b/sys-apps/paxctl/Manifest @@ -1,4 +1,6 @@ MD5 9af9b79a175a826ed1ddbf58c2746fc0 paxctl-0.2.ebuild 727 -MD5 91c637c493652144bd7caec7e252cd2e ChangeLog 1644 +MD5 716173ead4b522fcb89eff4f05b16ffe ChangeLog 1848 MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 +MD5 66c6e33c318169cfbf4f66bd9210b679 paxctl-0.3.ebuild 730 MD5 7cd8adc34a7c0e7b400dcd24793ff4cf files/digest-paxctl-0.2 60 +MD5 a0ea6419bb80b6a3650accc386c91847 files/digest-paxctl-0.3 60 diff --git a/sys-apps/paxctl/files/digest-paxctl-0.3 b/sys-apps/paxctl/files/digest-paxctl-0.3 new file mode 100644 index 000000000000..defc9e4e4a79 --- /dev/null +++ b/sys-apps/paxctl/files/digest-paxctl-0.3 @@ -0,0 +1 @@ +MD5 a1ebfd41b8323f3af2263317b3911806 paxctl-0.3.tar.gz 5382 diff --git a/sys-apps/paxctl/paxctl-0.3.ebuild b/sys-apps/paxctl/paxctl-0.3.ebuild new file mode 100644 index 000000000000..9ca025df44b3 --- /dev/null +++ b/sys-apps/paxctl/paxctl-0.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/paxctl/paxctl-0.3.ebuild,v 1.1 2005/05/04 00:58:08 solar Exp $ + +inherit flag-o-matic + +DESCRIPTION="Manages various PaX related program header flags for Elf32, Elf64, binaries." +SRC_URI="http://pax.grsecurity.net/paxctl-${PV}.tar.gz" +HOMEPAGE="http://pax.grsecurity.net" +KEYWORDS="~x86 ~amd64 ~sparc ~ppc ~hppa ~ia64 ~mips ~ppc64" +IUSE="" +LICENSE="GPL-2" +SLOT="0" + +DEPEND="virtual/libc >=sys-devel/binutils-2.14.90.0.8-r1" + +#S=${WORKDIR}/${P} + +src_compile() { + emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" +} + +src_install() { + einstall DESTDIR="${D}" + dodoc README ChangeLog +} |