diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2007-01-06 18:00:39 +0000 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2007-01-06 18:00:39 +0000 |
commit | e671d4603a57136c20333259fc303966a78dbebe (patch) | |
tree | d1f3bc8893fd8506bbf3d0234d4e45ccb97a69fd /app-crypt/tpm-tools | |
parent | Stable on Alpha. (diff) | |
download | gentoo-2-e671d4603a57136c20333259fc303966a78dbebe.tar.gz gentoo-2-e671d4603a57136c20333259fc303966a78dbebe.tar.bz2 gentoo-2-e671d4603a57136c20333259fc303966a78dbebe.zip |
Version bump
(Portage version: 2.1.1-r2)
Diffstat (limited to 'app-crypt/tpm-tools')
-rw-r--r-- | app-crypt/tpm-tools/ChangeLog | 9 | ||||
-rw-r--r-- | app-crypt/tpm-tools/files/digest-tpm-tools-1.2.5 | 3 | ||||
-rw-r--r-- | app-crypt/tpm-tools/tpm-tools-1.2.5.ebuild | 51 |
3 files changed, 61 insertions, 2 deletions
diff --git a/app-crypt/tpm-tools/ChangeLog b/app-crypt/tpm-tools/ChangeLog index d10773a42806..387a4ff968b1 100644 --- a/app-crypt/tpm-tools/ChangeLog +++ b/app-crypt/tpm-tools/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-crypt/tpm-tools -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-tools/ChangeLog,v 1.3 2006/05/06 22:28:05 dragonheart Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-tools/ChangeLog,v 1.4 2007/01/06 18:00:39 alonbl Exp $ + +*tpm-tools-1.2.5 (06 Jan 2007) + + 06 Jan 2007; Alon Bar-Lev <alonbl@gentoo.org> +tpm-tools-1.2.5.ebuild: + Version bump *tpm-tools-1.2.3 (06 May 2006) diff --git a/app-crypt/tpm-tools/files/digest-tpm-tools-1.2.5 b/app-crypt/tpm-tools/files/digest-tpm-tools-1.2.5 new file mode 100644 index 000000000000..04fa42fb292d --- /dev/null +++ b/app-crypt/tpm-tools/files/digest-tpm-tools-1.2.5 @@ -0,0 +1,3 @@ +MD5 1f1065321c01ad5c438b48535ed4e9a1 tpm-tools-1.2.5.tar.gz 845913 +RMD160 a6b32d0eea6fd9761485aa550db742e388aa657b tpm-tools-1.2.5.tar.gz 845913 +SHA256 9e54cd4e98ed18d373fda0a92e3ebc2789b99d7b0a42cfbc56ffc878cdb263c6 tpm-tools-1.2.5.tar.gz 845913 diff --git a/app-crypt/tpm-tools/tpm-tools-1.2.5.ebuild b/app-crypt/tpm-tools/tpm-tools-1.2.5.ebuild new file mode 100644 index 000000000000..ceb4ff75b964 --- /dev/null +++ b/app-crypt/tpm-tools/tpm-tools-1.2.5.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2007 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.2.5.ebuild,v 1.1 2007/01/06 18:00:39 alonbl Exp $ + +WANT_AUTOCONF="latest" +WANT_AUTOMAKE="latest" + +inherit autotools + +DESCRIPTION="TrouSerS' support tools for the Trusted Platform Modules" +HOMEPAGE="http://trousers.sf.net" +SRC_URI="mirror://sourceforge/trousers/${P}.tar.gz" +LICENSE="CPL-1.0" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +RDEPEND="virtual/libc + >=dev-libs/openssl-0.9.7 + >=app-crypt/trousers-0.2.8" +# TODO: add optionnal opencryptoki support + +DEPEND="${RDEPEND} + sys-devel/autoconf" + +src_unpack() { + unpack ${A} + cd "${S}" + + # workaround econf "updating config.sub" sandbox violation + ## (bug #96242 for instance): + #touch config.sub + + # no translation so far -> no need to gettextize it + # (makes compilation a bit simpler...): + sed -i '/^gettextize/d' ./bootstrap.sh + sed -i '/\<po\>/d' Makefile.am + sed -i -e '/AM_GNU_GETTEXT/d' -e '\:po/Makefile.in:d' configure.in + + eautoreconf +} + +src_compile() { + econf --disable-nls || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc README +} |