# 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.3.0.ebuild,v 1.1 2007/11/10 13:11:48 alonbl Exp $ 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=">=app-crypt/trousers-0.3.0" # TODO: add optionnal opencryptoki support DEPEND="${RDEPEND}" src_unpack() { unpack ${A} cd "${S}" 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 }