Gentoo Archives: gentoo-commits

From: "Dirkjan Ochtman (djc)" <djc@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/easy-rsa: easy-rsa-2.2.0-r1.ebuild ChangeLog
Date: Wed, 22 May 2013 10:46:12
Message-Id: 20130522104606.22D9C2171D@flycatcher.gentoo.org
1 djc 13/05/22 10:46:06
2
3 Modified: ChangeLog
4 Added: easy-rsa-2.2.0-r1.ebuild
5 Log:
6 Don't install license files as docs (bug 470888).
7
8 (Portage version: 2.1.12.1/cvs/Linux x86_64, signed Manifest commit with key 6B065BFB)
9
10 Revision Changes Path
11 1.7 app-crypt/easy-rsa/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/easy-rsa/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/easy-rsa/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/easy-rsa/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/easy-rsa/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 21 May 2013 15:26:53 -0000 1.6
24 +++ ChangeLog 22 May 2013 10:46:05 -0000 1.7
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-crypt/easy-rsa
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/easy-rsa/ChangeLog,v 1.6 2013/05/21 15:26:53 djc Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/easy-rsa/ChangeLog,v 1.7 2013/05/22 10:46:05 djc Exp $
30 +
31 +*easy-rsa-2.2.0-r1 (22 May 2013)
32 +
33 + 22 May 2013; Dirkjan Ochtman <djc@g.o> +easy-rsa-2.2.0-r1.ebuild,
34 + +files/no-licenses.patch:
35 + Don't install license files as docs (bug 470888).
36
37 21 May 2013; Dirkjan Ochtman <djc@g.o> easy-rsa-2.2.0.ebuild:
38 Clean up eclasses (fixes bug 470888).
39
40
41
42 1.1 app-crypt/easy-rsa/easy-rsa-2.2.0-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/easy-rsa/easy-rsa-2.2.0-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/easy-rsa/easy-rsa-2.2.0-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: easy-rsa-2.2.0-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-crypt/easy-rsa/easy-rsa-2.2.0-r1.ebuild,v 1.1 2013/05/22 10:46:05 djc Exp $
52
53 EAPI=4
54
55 inherit eutils
56
57 DESCRIPTION="Small RSA key management package, based on OpenSSL."
58 HOMEPAGE="http://openvpn.net/"
59 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86"
60 SRC_URI="http://swupdate.openvpn.net/community/releases/${P}_master.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 IUSE=""
65
66 DEPEND=">=dev-libs/openssl-0.9.6"
67 RDEPEND="${DEPEND}
68 !<net-misc/openvpn-2.3"
69
70 S="${WORKDIR}/${P}_master"
71
72 src_prepare() {
73 epatch "${FILESDIR}/${PN}-2.0.0-pkcs11.patch"
74 epatch "${FILESDIR}/no-licenses.patch"
75 }
76
77 src_configure() {
78 econf --docdir="${EPREFIX}/usr/share/doc/${PF}"
79 }
80
81 src_install() {
82 emake DESTDIR="${D}" install
83 doenvd "${FILESDIR}/65easy-rsa" # config-protect easy-rsa
84 }