diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-05-17 13:53:07 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-05-17 13:53:07 +0000 |
commit | 974bab16215ac84f8c91a9e888c256a44d511d5d (patch) | |
tree | 58fabaf3405878901aef6eea2075e318f5c3e262 /app-crypt | |
parent | Remove old. (diff) | |
download | gentoo-2-974bab16215ac84f8c91a9e888c256a44d511d5d.tar.gz gentoo-2-974bab16215ac84f8c91a9e888c256a44d511d5d.tar.bz2 gentoo-2-974bab16215ac84f8c91a9e888c256a44d511d5d.zip |
Remove old.
(Portage version: 2.2.19/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/tpm-tools/ChangeLog | 8 | ||||
-rw-r--r-- | app-crypt/tpm-tools/tpm-tools-1.3.5-r1.ebuild | 46 | ||||
-rw-r--r-- | app-crypt/tpm-tools/tpm-tools-1.3.5.ebuild | 35 |
3 files changed, 6 insertions, 83 deletions
diff --git a/app-crypt/tpm-tools/ChangeLog b/app-crypt/tpm-tools/ChangeLog index 47b7608c64c8..f387ebbceba0 100644 --- a/app-crypt/tpm-tools/ChangeLog +++ b/app-crypt/tpm-tools/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-crypt/tpm-tools -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-tools/ChangeLog,v 1.25 2014/08/14 16:59:01 phajdan.jr Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-tools/ChangeLog,v 1.26 2015/05/17 13:53:07 mrueg Exp $ + + 17 May 2015; Manuel Rüger <mrueg@gentoo.org> -tpm-tools-1.3.5-r1.ebuild, + -tpm-tools-1.3.5.ebuild: + Remove old. 14 Aug 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> tpm-tools-1.3.8.ebuild: x86 stable wrt bug #510204 diff --git a/app-crypt/tpm-tools/tpm-tools-1.3.5-r1.ebuild b/app-crypt/tpm-tools/tpm-tools-1.3.5-r1.ebuild deleted file mode 100644 index 294902c181b9..000000000000 --- a/app-crypt/tpm-tools/tpm-tools-1.3.5-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-tools/tpm-tools-1.3.5-r1.ebuild,v 1.5 2014/08/03 15:25:02 tgall Exp $ - -EAPI=4 -inherit autotools eutils flag-o-matic - -DESCRIPTION="TrouSerS' support tools for the Trusted Platform Modules" -HOMEPAGE="http://trousers.sourceforge.net" -SRC_URI="mirror://sourceforge/trousers/${P}.tar.gz" - -LICENSE="CPL-1.0" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="nls pkcs11 debug" - -COMMON_DEPEND=" - >=app-crypt/trousers-0.3.0 - dev-libs/openssl - pkcs11? ( dev-libs/opencryptoki ) - " -RDEPEND="${COMMON_DEPEND} - nls? ( virtual/libintl )" -DEPEND="${COMMON_DEPEND} - nls? ( sys-devel/gettext )" - -src_prepare() { - sed -i -r \ - -e '/CFLAGS/s/ -(Werror|m64)//' \ - configure.in || die - epatch "${FILESDIR}"/${PN}-1.3.1-gold.patch - - eautoreconf -} - -src_configure() { - local myconf - # don't use --enable-pkcs11-support, configure is a mess. - use pkcs11 || myconf+=" --disable-pkcs11-support" - - append-flags $(usex debug -DDEBUG -DNDEBUG) - - econf \ - $(use_enable nls) \ - ${myconf} -} diff --git a/app-crypt/tpm-tools/tpm-tools-1.3.5.ebuild b/app-crypt/tpm-tools/tpm-tools-1.3.5.ebuild deleted file mode 100644 index 1bec001c256b..000000000000 --- a/app-crypt/tpm-tools/tpm-tools-1.3.5.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-tools/tpm-tools-1.3.5.ebuild,v 1.4 2011/03/31 22:19:40 flameeyes Exp $ - -EAPI="2" -inherit autotools - -DESCRIPTION="TrouSerS' support tools for the Trusted Platform Modules" -HOMEPAGE="http://trousers.sourceforge.net" -SRC_URI="mirror://sourceforge/trousers/${P}.tar.gz" -LICENSE="CPL-1.0" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="nls" - -COMMON_DEPEND=">=app-crypt/trousers-0.3.0" -RDEPEND="${COMMON_DEPEND} - nls? ( virtual/libintl )" -DEPEND="${COMMON_DEPEND} - nls? ( sys-devel/gettext )" - -src_prepare() { - sed -i -e "s/-Werror //" configure.in || die "Sed failed" - eautoreconf -} - -src_configure() { - econf $(use_enable nls) \ - --disable-pkcs11-support -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc README || die -} |