Gentoo Archives: gentoo-commits

From: "Christoph Mende (angelos)" <angelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/keynote: ChangeLog keynote-2.3.ebuild
Date: Tue, 30 Dec 2008 18:12:31
Message-Id: E1LHj4v-0001ci-Dm@stork.gentoo.org
1 angelos 08/12/30 18:12:29
2
3 Modified: ChangeLog keynote-2.3.ebuild
4 Log:
5 QA: Respect CFLAGS and AR/CC/RANLIB
6 (Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
7
8 Revision Changes Path
9 1.9 app-crypt/keynote/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/keynote/ChangeLog?rev=1.9&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/keynote/ChangeLog?rev=1.9&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/keynote/ChangeLog?r1=1.8&r2=1.9
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-crypt/keynote/ChangeLog,v
18 retrieving revision 1.8
19 retrieving revision 1.9
20 diff -u -r1.8 -r1.9
21 --- ChangeLog 13 May 2007 18:05:41 -0000 1.8
22 +++ ChangeLog 30 Dec 2008 18:12:29 -0000 1.9
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-crypt/keynote
25 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/ChangeLog,v 1.8 2007/05/13 18:05:41 bangert Exp $
27 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/ChangeLog,v 1.9 2008/12/30 18:12:29 angelos Exp $
29 +
30 + 30 Dec 2008; Christoph Mende <angelos@g.o> keynote-2.3.ebuild:
31 + QA: Respect CFLAGS and AR/CC/RANLIB
32
33 13 May 2007; Thilo Bangert <bangert@g.o> metadata.xml:
34 add herd
35
36
37
38 1.9 app-crypt/keynote/keynote-2.3.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/keynote/keynote-2.3.ebuild?rev=1.9&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/keynote/keynote-2.3.ebuild?rev=1.9&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/keynote/keynote-2.3.ebuild?r1=1.8&r2=1.9
43
44 Index: keynote-2.3.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-crypt/keynote/keynote-2.3.ebuild,v
47 retrieving revision 1.8
48 retrieving revision 1.9
49 diff -u -r1.8 -r1.9
50 --- keynote-2.3.ebuild 19 Aug 2005 04:01:54 -0000 1.8
51 +++ keynote-2.3.ebuild 30 Dec 2008 18:12:29 -0000 1.9
52 @@ -1,6 +1,8 @@
53 -# Copyright 1999-2005 Gentoo Foundation
54 +# Copyright 1999-2008 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/keynote-2.3.ebuild,v 1.8 2005/08/19 04:01:54 metalgod Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/keynote-2.3.ebuild,v 1.9 2008/12/30 18:12:29 angelos Exp $
58 +
59 +inherit toolchain-funcs
60
61 DESCRIPTION="The KeyNote Trust-Management System"
62 HOMEPAGE="http://www1.cs.columbia.edu/~angelos/keynote.html"
63 @@ -11,11 +13,19 @@
64 KEYWORDS="~amd64 x86"
65 IUSE="ssl"
66
67 -DEPEND="virtual/libc
68 - ssl? ( dev-libs/openssl )"
69 +DEPEND="ssl? ( dev-libs/openssl )"
70 +
71 +src_unpack() {
72 + unpack ${A}
73 + cd "${S}"
74 +
75 + sed -i -e "/^CFLAGS/s/-O2/${CFLAGS}/" \
76 + -e "/^AR/d" Makefile.in || "sed failed"
77 +}
78
79 src_compile() {
80 - econf || die
81 + tc-export AR CC RANLIB
82 + econf
83 if use ssl; then
84 make || die
85 else