diff options
author | Ned Ludd <solar@gentoo.org> | 2008-01-17 06:57:36 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2008-01-17 06:57:36 +0000 |
commit | 47ca87afadbe6ffb3cfe42b902ad6363b209f6a5 (patch) | |
tree | 4d4fe2cbc9c1a3e94c8fd60a5e697db02d7b5414 /app-misc | |
parent | Version bump. New upstream. (diff) | |
download | gentoo-2-47ca87afadbe6ffb3cfe42b902ad6363b209f6a5.tar.gz gentoo-2-47ca87afadbe6ffb3cfe42b902ad6363b209f6a5.tar.bz2 gentoo-2-47ca87afadbe6ffb3cfe42b902ad6363b209f6a5.zip |
- Mainly a maintenance release. endianness fix. minor new features and updated docs
(Portage version: 2.1.3.9)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/pax-utils/ChangeLog | 10 | ||||
-rw-r--r-- | app-misc/pax-utils/files/digest-pax-utils-0.1.17 | 3 | ||||
-rw-r--r-- | app-misc/pax-utils/pax-utils-0.1.17.ebuild | 29 |
3 files changed, 40 insertions, 2 deletions
diff --git a/app-misc/pax-utils/ChangeLog b/app-misc/pax-utils/ChangeLog index f5509c180f23..6692159cef62 100644 --- a/app-misc/pax-utils/ChangeLog +++ b/app-misc/pax-utils/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-misc/pax-utils -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v 1.92 2007/10/14 17:31:29 solar Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v 1.93 2008/01/17 06:57:36 solar Exp $ + +*pax-utils-0.1.17 (17 Jan 2008) + + 17 Jan 2008; <solar@gentoo.org> +pax-utils-0.1.17.ebuild: + - Mainly a maintenance release. endianness fix. minor new features and + updated docs 14 Oct 2007; <solar@gentoo.org> pax-utils-0.1.16.ebuild: - amd64/hppa/ppc/ppc64 stable diff --git a/app-misc/pax-utils/files/digest-pax-utils-0.1.17 b/app-misc/pax-utils/files/digest-pax-utils-0.1.17 new file mode 100644 index 000000000000..03ad0d45b77e --- /dev/null +++ b/app-misc/pax-utils/files/digest-pax-utils-0.1.17 @@ -0,0 +1,3 @@ +MD5 5553b42fae6d26e8f7543406efd05f24 pax-utils-0.1.17.tar.bz2 66059 +RMD160 90d4871d667d64180291d7024dd6210d8512f6e8 pax-utils-0.1.17.tar.bz2 66059 +SHA256 e6deefd60824e285a2b67df2ed0f8a1a64feec9256fb81152d1683986db0202b pax-utils-0.1.17.tar.bz2 66059 diff --git a/app-misc/pax-utils/pax-utils-0.1.17.ebuild b/app-misc/pax-utils/pax-utils-0.1.17.ebuild new file mode 100644 index 000000000000..e66ec19da72b --- /dev/null +++ b/app-misc/pax-utils/pax-utils-0.1.17.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2008 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.1.17.ebuild,v 1.1 2008/01/17 06:57:36 solar Exp $ + +inherit flag-o-matic toolchain-funcs eutils + +DESCRIPTION="Various ELF related utils for ELF32, ELF64 binaries useful tools that can check files for security relevant properties" +HOMEPAGE="http://hardened.gentoo.org/pax-utils.xml" +SRC_URI="mirror://gentoo/pax-utils-${PV}.tar.bz2 + http://dev.gentoo.org/~solar/pax/pax-utils-${PV}.tar.bz2 + http://dev.gentoo.org/~vapier/dist/pax-utils-${PV}.tar.bz2" +#SRC_URI="http://wh0rd.org/pax-utils-${PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="caps" +#RESTRICT="mirror" + +DEPEND="caps? ( sys-libs/libcap )" + +src_compile() { + emake CC=$(tc-getCC) USE_CAP=$(use caps && echo yes) || die +} + +src_install() { + emake DESTDIR="${D}" install || die + cp lddtree.sh ${D}/usr/bin/ ; #|| die "dont care" +} |