diff options
author | Daniel Black <dragonheart@gentoo.org> | 2005-02-03 11:16:08 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2005-02-03 11:16:08 +0000 |
commit | f711a7f8be5fc47048f192989999e526d4416614 (patch) | |
tree | 90b30eed3c66cbaa0bf069e8571aa4afb2b981cc /app-crypt | |
parent | Marked stable. Still won't work with CDT, but I'll work on that. (diff) | |
download | gentoo-2-f711a7f8be5fc47048f192989999e526d4416614.tar.gz gentoo-2-f711a7f8be5fc47048f192989999e526d4416614.tar.bz2 gentoo-2-f711a7f8be5fc47048f192989999e526d4416614.zip |
Added as per bug #35574
(Portage version: 2.0.51-r15)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/tpm-module/ChangeLog | 11 | ||||
-rw-r--r-- | app-crypt/tpm-module/Manifest | 2 | ||||
-rw-r--r-- | app-crypt/tpm-module/files/digest-tpm-module-2.0 | 1 | ||||
-rw-r--r-- | app-crypt/tpm-module/metadata.xml | 10 | ||||
-rw-r--r-- | app-crypt/tpm-module/tpm-module-2.0.ebuild | 28 |
5 files changed, 52 insertions, 0 deletions
diff --git a/app-crypt/tpm-module/ChangeLog b/app-crypt/tpm-module/ChangeLog new file mode 100644 index 000000000000..49237c617551 --- /dev/null +++ b/app-crypt/tpm-module/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-crypt/tpm-module +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-module/ChangeLog,v 1.1 2005/02/03 11:16:08 dragonheart Exp $ + +*tpm-module-2.0 (03 Feb 2005) + + 03 Feb 2005; Daniel Black <dragonheart@gentoo.org> +metadata.xml, + +tpm-module-2.0.ebuild: + Added as per bug #35574. Thanks to Henrik Brix Andersen + <brix@NOHATEMAIL.gentoo.org> + diff --git a/app-crypt/tpm-module/Manifest b/app-crypt/tpm-module/Manifest new file mode 100644 index 000000000000..ef5c8de8d8da --- /dev/null +++ b/app-crypt/tpm-module/Manifest @@ -0,0 +1,2 @@ +MD5 fc2bd52c40d10865f4c595289bddfb8c tpm-module-2.0.ebuild 513 +MD5 95e1fe65a5cd55c3dd7954669f46f8bd files/digest-tpm-module-2.0 59 diff --git a/app-crypt/tpm-module/files/digest-tpm-module-2.0 b/app-crypt/tpm-module/files/digest-tpm-module-2.0 new file mode 100644 index 000000000000..ed3659b9c169 --- /dev/null +++ b/app-crypt/tpm-module/files/digest-tpm-module-2.0 @@ -0,0 +1 @@ +MD5 287fd479fb24882702bcfd8b0405b327 TPM-2.0.tar.gz 134437 diff --git a/app-crypt/tpm-module/metadata.xml b/app-crypt/tpm-module/metadata.xml new file mode 100644 index 000000000000..6acf5d98e734 --- /dev/null +++ b/app-crypt/tpm-module/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>crypto</herd> +<maintainer> + <email>dragonheart@gentoo.org</email> + <name>Daniel Black</name> +</maintainer> +<longdescription>Library to manipulate TPM</longdescription> +</pkgmetadata> diff --git a/app-crypt/tpm-module/tpm-module-2.0.ebuild b/app-crypt/tpm-module/tpm-module-2.0.ebuild new file mode 100644 index 000000000000..ffd869c9470d --- /dev/null +++ b/app-crypt/tpm-module/tpm-module-2.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-module/tpm-module-2.0.ebuild,v 1.1 2005/02/03 11:16:08 dragonheart Exp $ + +inherit linux-mod + +MY_P=tpm-${PV} +S=${WORKDIR}/${MY_P} + +DESCRIPTION="Driver for TPM chips" + +HOMEPAGE="http://www.research.ibm.com/gsal/tcpa/" +SRC_URI="http://www.research.ibm.com/gsal/tcpa/TPM-${PV}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~x86" + +IUSE="" + +BUILD_PARAMS="KDIR=${KV_DIR}" +BUILD_TARGETS="default" +MODULE_NAMES="tpm(crypto:)" + +src_unpack() { + unpack ${A} + + convert_to_m ${S}/Makefile +} |