diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-04-05 18:13:19 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-04-05 18:13:19 +0000 |
commit | 79c3183676997c78866761b43566041dd5f62503 (patch) | |
tree | fcc66e6fceac016e6432a60411e6ac75392a2405 /app-crypt/tpm-tools | |
parent | arm/sh stable wrt #232054 (diff) | |
download | gentoo-2-79c3183676997c78866761b43566041dd5f62503.tar.gz gentoo-2-79c3183676997c78866761b43566041dd5f62503.tar.bz2 gentoo-2-79c3183676997c78866761b43566041dd5f62503.zip |
Don't use -Werror (bug #260871).
(Portage version: 13290-svn/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt/tpm-tools')
-rw-r--r-- | app-crypt/tpm-tools/ChangeLog | 8 | ||||
-rw-r--r-- | app-crypt/tpm-tools/tpm-tools-1.3.1.ebuild | 18 |
2 files changed, 20 insertions, 6 deletions
diff --git a/app-crypt/tpm-tools/ChangeLog b/app-crypt/tpm-tools/ChangeLog index d89f5db24eaa..4cc17aadb281 100644 --- a/app-crypt/tpm-tools/ChangeLog +++ b/app-crypt/tpm-tools/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-crypt/tpm-tools -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-tools/ChangeLog,v 1.8 2008/06/07 20:51:32 flameeyes Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-tools/ChangeLog,v 1.9 2009/04/05 18:13:19 arfrever Exp $ + + 05 Apr 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + tpm-tools-1.3.1.ebuild: + Don't use -Werror (bug #260871). 07 Jun 2008; Diego Pettenò <flameeyes@gentoo.org> tpm-tools-1.3.1.ebuild: Fix typo in dependencies (missing RDEPEND), and remove autotools diff --git a/app-crypt/tpm-tools/tpm-tools-1.3.1.ebuild b/app-crypt/tpm-tools/tpm-tools-1.3.1.ebuild index a5b2ce7bfce4..22743c86820e 100644 --- a/app-crypt/tpm-tools/tpm-tools-1.3.1.ebuild +++ b/app-crypt/tpm-tools/tpm-tools-1.3.1.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 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.1.ebuild,v 1.2 2008/06/07 20:51:32 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-tools/tpm-tools-1.3.1.ebuild,v 1.3 2009/04/05 18:13:19 arfrever Exp $ + +inherit autotools DESCRIPTION="TrouSerS' support tools for the Trusted Platform Modules" HOMEPAGE="http://trousers.sf.net" @@ -17,12 +19,20 @@ RDEPEND="${COMMON_DEPEND} DEPEND="${COMMON_DEPEND} nls? ( sys-devel/gettext )" +src_unpack() { + unpack ${A} + cd "${S}" + + sed -e "s/-Werror //" -i configure.in + eautoreconf +} + src_compile() { - econf $(use_enable nls) || die "econf failed" + econf $(use_enable nls) emake || die "emake failed" } src_install() { - emake DESTDIR="${D}" install || die "make install failed" + emake DESTDIR="${D}" install || die "emake install failed" dodoc README } |