diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2019-05-13 07:16:48 +0300 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2019-05-13 07:16:48 +0300 |
commit | f2e386cff1df54fe2d0ecdea5f4a0a3c1f05e779 (patch) | |
tree | 05c0de2e91891127203287bfe147ca8273c7da0b /app-crypt/tpm-tools | |
parent | app-crypt/gpa: cleanup old (diff) | |
download | gentoo-f2e386cff1df54fe2d0ecdea5f4a0a3c1f05e779.tar.gz gentoo-f2e386cff1df54fe2d0ecdea5f4a0a3c1f05e779.tar.bz2 gentoo-f2e386cff1df54fe2d0ecdea5f4a0a3c1f05e779.zip |
app-crypt/tpm-tools: cleanup old
Signed-off-by: Alon Bar-Lev <alonbl@gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Diffstat (limited to 'app-crypt/tpm-tools')
-rw-r--r-- | app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild b/app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild deleted file mode 100644 index 3be16cf93ed1..000000000000 --- a/app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic - -DESCRIPTION="TrouSerS' support tools for the Trusted Platform Modules" -HOMEPAGE="http://trousers.sourceforge.net" -SRC_URI="mirror://sourceforge/trousers/${PN}/${P}.tar.gz" - -LICENSE="CPL-1.0" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~m68k ~s390 ~sh x86" -IUSE="libressl nls pkcs11 debug" - -DEPEND=">=app-crypt/trousers-0.3.0 - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - pkcs11? ( dev-libs/opencryptoki )" -RDEPEND="${DEPEND}" -BDEPEND="nls? ( sys-devel/gettext )" - -S="${WORKDIR}" - -src_prepare() { - default - - sed -i -r \ - -e '/CFLAGS/s/ -m64//' \ - configure.ac || die - - eautoreconf -} - -src_configure() { - append-cppflags $(usex debug -DDEBUG -DNDEBUG) - - econf \ - $(use_enable nls) \ - $(use pkcs11 || echo --disable-pkcs11-support) -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -} |