diff options
Diffstat (limited to 'app-crypt/trousers/trousers-0.1.11-r1.ebuild')
-rw-r--r-- | app-crypt/trousers/trousers-0.1.11-r1.ebuild | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/app-crypt/trousers/trousers-0.1.11-r1.ebuild b/app-crypt/trousers/trousers-0.1.11-r1.ebuild deleted file mode 100644 index 0bff90a7275c..000000000000 --- a/app-crypt/trousers/trousers-0.1.11-r1.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/trousers/trousers-0.1.11-r1.ebuild,v 1.3 2005/08/23 21:46:35 dragonheart Exp $ - -inherit eutils linux-info - -DESCRIPTION="An open-source TCG Software Stack (TSS) v1.1 implementation" -HOMEPAGE="http://trousers.sf.net" -SRC_URI="mirror://sourceforge/trousers/${P}.tar.gz" -LICENSE="CPL-1.0" -SLOT="0" -KEYWORDS="~x86" -IUSE="doc" - -RDEPEND="virtual/libc - >=dev-libs/glib-2 - dev-libs/atk - x11-libs/pango - >=x11-libs/gtk+-2 - >=dev-libs/openssl-0.9.7" - -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -pkg_setup() { - # Check for driver (not sure it can be an rdep, because ot depends on the - # version of virtual/linux-sources... Is that supported by portage?) - linux-info_pkg_setup - local tpm_kernel_version tpm_kernel_present tpm_module - kernel_is ge 2 6 12 && tpm_kernel_version="yes" - linux_chkconfig_present TCG_TPM && tpm_kernel_present="yes" - has_version app-crypt/tpm-module && tpm_module="yes" - if [ -n "${tpm_kernel_present}" ] ; then - einfo "Good, you seem to have in-kernel TPM support." - elif [ -n "${tpm_module}" ] ; then - einfo "Good, you seem to have TPM support with the external module." - if [ -n "${tpm_kernel_version}" ] ; then - einfo - einfo "Note that since you have a >=2.6.12 kernel, you could use" - einfo "the in-kernel driver instead (CONFIG_TCG_TPM)." - fi - elif [ -n "${tpm_kernel_version}" ] ; then - eerror - eerror "To use this package, you will have to activate TPM support" - eerror "in your kernel configuration. That's at least CONFIG_TCG_TPM," - eerror "plus probably a chip specific driver (like CONFIG_TCG_ATMEL)." - eerror - else - eerror - eerror "To use this package, you should install a TPM driver." - eerror "You can have the following options:" - eerror " - install app-crypt/tpm-module" - eerror " - install app-crypt/tpm-emulator" - eerror " - switch to a >=2.6.12 kernel and compile the kernel module" - eerror - fi - - # New user/group for the daemon - enewgroup tss - enewuser tss -1 -1 /var/lib/tpm tss -} - -src_unpack() { - unpack ${A} - sed -i -e 's:@localstatedir@/tpm:@localstatedir@/lib/tpm:' \ - "${S}/dist/tcsd.conf.in" -} - -src_install() { - keepdir /var/lib/tpm - make DESTDIR=${D} install || die - dodoc AUTHORS ChangeLog NICETOHAVES README TODO - if use doc ; then - insinto /usr/share/doc/${PF} - doins doc/* - fi - newinitd "${FILESDIR}/tcsd.initd" tcsd - newconfd "${FILESDIR}/tcsd.confd" tcsd - into /etc/udev/rules.d/ - echo 'KERNEL="tpm*", OWNER="tss", GROUP="tss", MODE="0600"' > ${D}/etc/udev/rules.d/30-tpm.rules -} |