Gentoo Archives: gentoo-commits

From: "Alon Bar-Lev (alonbl)" <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/xca: ChangeLog xca-0.6.4.ebuild
Date: Sat, 22 Sep 2007 18:28:57
Message-Id: E1IZ9b0-000215-37@stork.gentoo.org
1 alonbl 07/09/22 18:20:50
2
3 Modified: ChangeLog
4 Added: xca-0.6.4.ebuild
5 Log:
6 Version bump, bug#192938
7 (Portage version: 2.1.3.9)
8
9 Revision Changes Path
10 1.12 app-crypt/xca/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/xca/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/xca/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/xca/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 2 Apr 2007 11:09:42 -0000 1.11
23 +++ ChangeLog 22 Sep 2007 18:20:49 -0000 1.12
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-crypt/xca
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.11 2007/04/02 11:09:42 alonbl Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.12 2007/09/22 18:20:49 alonbl Exp $
29 +
30 +*xca-0.6.4 (22 Sep 2007)
31 +
32 + 22 Sep 2007; Alon Bar-Lev <alonbl@g.o>
33 + +files/xca-0.6.4-build.patch, +xca-0.6.4.ebuild:
34 + Version bump, bug#192938
35
36 *xca-0.6.0 (02 Apr 2007)
37
38
39
40
41 1.1 app-crypt/xca/xca-0.6.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/xca/xca-0.6.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/xca/xca-0.6.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xca-0.6.4.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/xca-0.6.4.ebuild,v 1.1 2007/09/22 18:20:49 alonbl Exp $
51
52 inherit eutils
53
54 DESCRIPTION="A graphical user interface to OpenSSL, RSA public keys, certificates, signing requests and revokation lists"
55 HOMEPAGE="http://www.hohnstaedt.de/xca.html"
56 SRC_URI="mirror://sourceforge/xca/${P}.tar.gz"
57
58 LICENSE="BSD"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~x86"
61 IUSE="doc"
62
63 RDEPEND=">=dev-libs/openssl-0.9.8
64 =x11-libs/qt-4*"
65 DEPEND="${RDEPEND}
66 doc? ( app-text/linuxdoc-tools )"
67
68 # Upstream:
69 # http://sourceforge.net/tracker/index.php?func=detail&aid=1800298&group_id=62274&atid=500028
70 #
71 # 1. Qt detection.
72 # 2. doc hacks.
73
74 src_unpack() {
75 unpack ${A}
76 cd "${S}"
77 epatch "${FILESDIR}/${P}-build.patch"
78 }
79
80 src_compile() {
81 local LINUXDOC
82 use doc || LINUXDOC='touch $@ && true'
83
84 QTDIR=/usr \
85 STRIP="true" \
86 LINUXDOC="${LINUXDOC}" \
87 CC="$(tc-getCC)" \
88 LD="$(tc-getLD)" \
89 prefix=/usr \
90 ./configure || die "configure failed"
91 emake || die "emake failed"
92 }
93
94 src_install() {
95 emake destdir="${D}" mandir="share/man" install || die "install failed"
96
97 dodoc README CREDITS AUTHORS COPYRIGHT
98
99 insinto /etc/xca
100 doins misc/*.txt
101 }
102
103
104
105 --
106 gentoo-commits@g.o mailing list