Gentoo Archives: gentoo-commits

From: "Dane Smith (c1pher)" <c1pher@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/tpm-tools: tpm-tools-1.3.5.ebuild ChangeLog
Date: Tue, 30 Nov 2010 13:21:16
Message-Id: 20101130132106.7C14C20054@flycatcher.gentoo.org
1 c1pher 10/11/30 13:21:06
2
3 Modified: ChangeLog
4 Added: tpm-tools-1.3.5.ebuild
5 Log:
6 Version bump for tpm-tools wrt bug 329457.
7
8 (Portage version: 2.2.0_alpha4/cvs/Linux i686)
9
10 Revision Changes Path
11 1.11 app-crypt/tpm-tools/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/tpm-tools/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/tpm-tools/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/tpm-tools/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/tpm-tools/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 10 May 2009 23:11:27 -0000 1.10
24 +++ ChangeLog 30 Nov 2010 13:21:06 -0000 1.11
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-crypt/tpm-tools
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-tools/ChangeLog,v 1.10 2009/05/10 23:11:27 robbat2 Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-tools/ChangeLog,v 1.11 2010/11/30 13:21:06 c1pher Exp $
31 +
32 +*tpm-tools-1.3.5 (30 Nov 2010)
33 +
34 + 30 Nov 2010; Dane Smith <c1pher@g.o> +tpm-tools-1.3.5.ebuild:
35 + Version bump to 1.3.5 wrt bug 329457.
36 + *Moved to EAPI 2.
37 + *A few small QA fixes.
38
39 10 May 2009; Robin H. Johnson <robbat2@g.o> tpm-tools-1.3.1.ebuild:
40 Working on this for ~amd64.
41
42
43
44 1.1 app-crypt/tpm-tools/tpm-tools-1.3.5.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/tpm-tools/tpm-tools-1.3.5.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/tpm-tools/tpm-tools-1.3.5.ebuild?rev=1.1&content-type=text/plain
48
49 Index: tpm-tools-1.3.5.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-tools/tpm-tools-1.3.5.ebuild,v 1.1 2010/11/30 13:21:06 c1pher Exp $
54
55 EAPI="2"
56 inherit autotools
57
58 DESCRIPTION="TrouSerS' support tools for the Trusted Platform Modules"
59 HOMEPAGE="http://trousers.sf.net"
60 SRC_URI="mirror://sourceforge/trousers/${P}.tar.gz"
61 LICENSE="CPL-1.0"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="nls"
65
66 COMMON_DEPEND=">=app-crypt/trousers-0.3.0"
67 RDEPEND="${COMMON_DEPEND}
68 nls? ( virtual/libintl )"
69 # TODO: add optionnal opencryptoki support
70 DEPEND="${COMMON_DEPEND}
71 nls? ( sys-devel/gettext )"
72
73 src_prepare() {
74 sed -i -e "s/-Werror //" configure.in || die "Sed failed"
75 eautoreconf
76 }
77
78 src_configure() {
79 econf $(use_enable nls)
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" install || die "emake install failed"
84 dodoc README || die
85 }