diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-11-04 08:28:57 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-11-04 08:28:57 +0000 |
commit | 0eb65b57fac3df97cc065a3cedd4dce1908322a9 (patch) | |
tree | 6af08d5a79ea8739d8684586555fcb843614f5c8 /app-misc | |
parent | Depend on xz-utils for stage building. (diff) | |
download | gentoo-2-0eb65b57fac3df97cc065a3cedd4dce1908322a9.tar.gz gentoo-2-0eb65b57fac3df97cc065a3cedd4dce1908322a9.tar.bz2 gentoo-2-0eb65b57fac3df97cc065a3cedd4dce1908322a9.zip |
Version bump.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/pax-utils/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/pax-utils/pax-utils-0.5.ebuild | 30 |
2 files changed, 36 insertions, 2 deletions
diff --git a/app-misc/pax-utils/ChangeLog b/app-misc/pax-utils/ChangeLog index 0646a6bbd031..13143bd569ac 100644 --- a/app-misc/pax-utils/ChangeLog +++ b/app-misc/pax-utils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/pax-utils # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v 1.142 2012/07/10 18:05:58 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v 1.143 2012/11/04 08:28:57 vapier Exp $ + +*pax-utils-0.5 (04 Nov 2012) + + 04 Nov 2012; Mike Frysinger <vapier@gentoo.org> +pax-utils-0.5.ebuild: + Version bump. 10 Jul 2012; Brent Baude <ranger@gentoo.org> pax-utils-0.4.ebuild: Marking pax-utils-0.4 ppc for bug 420919 @@ -575,4 +580,3 @@ 11 Nov 2004; <solar@gentoo.org> +metadata.xml, pax-utils-0.0.4.ebuild: marking pax-utils stable on x86/mips - diff --git a/app-misc/pax-utils/pax-utils-0.5.ebuild b/app-misc/pax-utils/pax-utils-0.5.ebuild new file mode 100644 index 000000000000..38afbc2ef07b --- /dev/null +++ b/app-misc/pax-utils/pax-utils-0.5.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/pax-utils-0.5.ebuild,v 1.1 2012/11/04 08:28:57 vapier Exp $ + +inherit eutils toolchain-funcs unpacker + +DESCRIPTION="ELF related utils for ELF 32/64 binaries that can check files for security relevant properties" +HOMEPAGE="http://hardened.gentoo.org/pax-utils.xml" +SRC_URI="mirror://gentoo/pax-utils-${PV}.tar.xz + http://dev.gentoo.org/~solar/pax/pax-utils-${PV}.tar.xz + http://dev.gentoo.org/~vapier/dist/pax-utils-${PV}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +IUSE="caps" +#RESTRICT="mirror" + +RDEPEND="caps? ( sys-libs/libcap )" +DEPEND="${RDEPEND} + app-arch/xz-utils" + +src_compile() { + emake CC="$(tc-getCC)" USE_CAP=$(usex caps) || die +} + +src_install() { + emake DESTDIR="${D}" PKGDOCDIR='$(DOCDIR)'/${PF} install || die + prepalldocs +} |