From 3cd3fa3e139cf893ec5037398b851a519337bcbb Mon Sep 17 00:00:00 2001 From: Alon Bar-Lev Date: Sun, 30 Dec 2018 22:51:10 +0200 Subject: app-crypt/tpm2-tools: initial add Closes: https://bugs.gentoo.org/show_bug.cgi?id=634304 Thanks: Alex Guzman Thanks: Sebastian Hamann Signed-off-by: Alon Bar-Lev Package-Manager: Portage-2.3.51, Repoman-2.3.11 --- app-crypt/tpm2-tools/Manifest | 1 + app-crypt/tpm2-tools/metadata.xml | 11 +++++++++++ app-crypt/tpm2-tools/tpm2-tools-3.1.3.ebuild | 27 +++++++++++++++++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 app-crypt/tpm2-tools/Manifest create mode 100644 app-crypt/tpm2-tools/metadata.xml create mode 100644 app-crypt/tpm2-tools/tpm2-tools-3.1.3.ebuild diff --git a/app-crypt/tpm2-tools/Manifest b/app-crypt/tpm2-tools/Manifest new file mode 100644 index 000000000000..7b96fcbbc309 --- /dev/null +++ b/app-crypt/tpm2-tools/Manifest @@ -0,0 +1 @@ +DIST tpm2-tools-3.1.3.tar.gz 544098 BLAKE2B 4c22ae98ed444b7d5b5f99e6a7d4cc37fcf9d46979669a2225b6f2abf8ccaaff203ccc8c816169be215c6160ce2480e4c9a0197040764013ab362dd060c29bec SHA512 37edf59e47168c42ffc66e948722753334ae3e00f3e258d9e801dffd259a763a1bf4f63b3feecf7728b4dade69ca5da15d631e1a606f68e10f7d314a1a757bdc diff --git a/app-crypt/tpm2-tools/metadata.xml b/app-crypt/tpm2-tools/metadata.xml new file mode 100644 index 000000000000..a1035736860b --- /dev/null +++ b/app-crypt/tpm2-tools/metadata.xml @@ -0,0 +1,11 @@ + + + + + crypto@gentoo.org + Crypto + + + tpm2-software/tpm2-tools + + diff --git a/app-crypt/tpm2-tools/tpm2-tools-3.1.3.ebuild b/app-crypt/tpm2-tools/tpm2-tools-3.1.3.ebuild new file mode 100644 index 000000000000..a23c0b4d9a6a --- /dev/null +++ b/app-crypt/tpm2-tools/tpm2-tools-3.1.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Tools for the TPM 2.0 TSS" +HOMEPAGE="https://github.com/tpm2-software/tpm2-tools" +SRC_URI="https://github.com/tpm2-software/${PN}/releases/download/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="libressl test" + +RDEPEND=">=app-crypt/tpm2-tss-2.0 + net-misc/curl + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= )" +DEPEND="${RDEPEND} + test? ( dev-util/cmocka )" +BDEPEND="virtual/pkgconfig" + +src_configure() { + econf \ + --disable-hardening \ + $(use_enable test unit) +} -- cgit v1.2.3-65-gdbad