Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/keynote: ChangeLog keynote-2.3-r2.ebuild
Date: Thu, 05 Jan 2012 13:10:09
Message-Id: 20120105130958.5C50C2004C@flycatcher.gentoo.org
1 xmw 12/01/05 13:09:58
2
3 Modified: ChangeLog
4 Added: keynote-2.3-r2.ebuild
5 Log:
6 Adding parallel-make patch by xarthisius (bug 298669)
7
8 (Portage version: 2.1.10.41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.13 app-crypt/keynote/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/keynote/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/keynote/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/keynote/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/keynote/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 20 Sep 2010 22:36:24 -0000 1.12
24 +++ ChangeLog 5 Jan 2012 13:09:58 -0000 1.13
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-crypt/keynote
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/ChangeLog,v 1.12 2010/09/20 22:36:24 jer Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/ChangeLog,v 1.13 2012/01/05 13:09:58 xmw Exp $
31 +
32 +*keynote-2.3-r2 (05 Jan 2012)
33 +
34 + 05 Jan 2012; Michael Weber <xmw@g.o> +keynote-2.3-r2.ebuild,
35 + +files/keynote-2.3-parallel-build.patch:
36 + Adding parallel-make patch by xarthisius (bug 298669)
37
38 *keynote-2.3-r1 (20 Sep 2010)
39
40
41
42
43 1.1 app-crypt/keynote/keynote-2.3-r2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/keynote/keynote-2.3-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/keynote/keynote-2.3-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: keynote-2.3-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/keynote-2.3-r2.ebuild,v 1.1 2012/01/05 13:09:58 xmw Exp $
53
54 EAPI="2"
55
56 inherit eutils toolchain-funcs
57
58 DESCRIPTION="The KeyNote Trust-Management System"
59 HOMEPAGE="http://www1.cs.columbia.edu/~angelos/keynote.html"
60 SRC_URI="http://www1.cs.columbia.edu/~angelos/Code/${P}.tar.gz"
61
62 LICENSE="as-is"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="ssl"
66
67 DEPEND="ssl? ( dev-libs/openssl )"
68 RDEPEND="${DEPEND}"
69
70 src_prepare() {
71 cp -av Makefile.in{,.orig}
72 epatch "${FILESDIR}"/${P}-make.patch
73 epatch "${FILESDIR}"/$P-parallel-build.patch
74 }
75
76 src_configure() {
77 tc-export AR CC RANLIB
78 econf
79 }
80
81 src_compile() {
82 if use ssl; then
83 emake || die
84 else
85 emake nocrypto || die
86 fi
87 }
88
89 src_install() {
90 dobin keynote || die
91
92 dolib.a libkeynote.a
93
94 insinto /usr/include
95 doins keynote.h
96
97 doman man/keynote.[1345]
98 dodoc README HOWTO.add.crypto TODO
99 }