diff options
author | 2017-03-15 20:27:26 +0200 | |
---|---|---|
committer | 2017-03-15 20:27:26 +0200 | |
commit | 6754d3ce6adfc42aa7c7c8a3fd1982e1f9a3780e (patch) | |
tree | fa648d03b41c948d7ef605981ae9e6ee31a7f9d0 /app-crypt/tpm-tools/tpm-tools-1.3.8-r1.ebuild | |
parent | app-crypt/mhash: cleanup (diff) | |
download | gentoo-6754d3ce6adfc42aa7c7c8a3fd1982e1f9a3780e.tar.gz gentoo-6754d3ce6adfc42aa7c7c8a3fd1982e1f9a3780e.tar.bz2 gentoo-6754d3ce6adfc42aa7c7c8a3fd1982e1f9a3780e.zip |
app-crypt/tpm-tools: cleanup
Bug: 611492
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'app-crypt/tpm-tools/tpm-tools-1.3.8-r1.ebuild')
-rw-r--r-- | app-crypt/tpm-tools/tpm-tools-1.3.8-r1.ebuild | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/app-crypt/tpm-tools/tpm-tools-1.3.8-r1.ebuild b/app-crypt/tpm-tools/tpm-tools-1.3.8-r1.ebuild deleted file mode 100644 index e5e76501c9f7..000000000000 --- a/app-crypt/tpm-tools/tpm-tools-1.3.8-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -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 ~arm64 ~m68k ~s390 ~sh ~x86" -IUSE="libressl nls pkcs11 debug" - -COMMON_DEPEND=" - >=app-crypt/trousers-0.3.0 - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - 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}/${P}-gold.patch" - epatch "${FILESDIR}/${P}-build.patch" - - eautoreconf -} - -src_configure() { - local myconf - # don't use --enable-pkcs11-support, configure is a mess. - use pkcs11 || myconf+=" --disable-pkcs11-support" - - append-cppflags $(usex debug -DDEBUG -DNDEBUG) - - econf \ - $(use_enable nls) \ - ${myconf} -} - -src_install() { - default - rm -f "${ED}"/usr/lib*/libtpm_unseal.la -} |