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: xca-0.9.3-r2.ebuild ChangeLog
Date: Fri, 29 Aug 2014 21:01:40
Message-Id: 20140829210137.1D3374328@oystercatcher.gentoo.org
1 alonbl 14/08/29 21:01:37
2
3 Modified: ChangeLog
4 Added: xca-0.9.3-r2.ebuild
5 Log:
6 Fix openssl issue, bug#520948, thanks to wmatusiak@×××××.com
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
9
10 Revision Changes Path
11 1.43 app-crypt/xca/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/xca/ChangeLog?rev=1.43&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/xca/ChangeLog?rev=1.43&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/xca/ChangeLog?r1=1.42&r2=1.43
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v
20 retrieving revision 1.42
21 retrieving revision 1.43
22 diff -u -r1.42 -r1.43
23 --- ChangeLog 4 Jul 2013 12:18:48 -0000 1.42
24 +++ ChangeLog 29 Aug 2014 21:01:37 -0000 1.43
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-crypt/xca
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.42 2013/07/04 12:18:48 ago Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.43 2014/08/29 21:01:37 alonbl Exp $
31 +
32 +*xca-0.9.3-r2 (29 Aug 2014)
33 +
34 + 29 Aug 2014; Alon Bar-Lev <alonbl@g.o> +files/xca-0.9.3-openssl.patch,
35 + +xca-0.9.3-r2.ebuild:
36 + Fix openssl issue, bug#520948, thanks to wmatusiak@×××××.com
37
38 04 Jul 2013; Agostino Sarubbo <ago@g.o> xca-0.9.3-r1.ebuild:
39 Stable for x86, wrt bug #470302
40
41
42
43 1.1 app-crypt/xca/xca-0.9.3-r2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/xca/xca-0.9.3-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/xca/xca-0.9.3-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xca-0.9.3-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/xca-0.9.3-r2.ebuild,v 1.1 2014/08/29 21:01:37 alonbl Exp $
53
54 EAPI="5"
55
56 inherit eutils toolchain-funcs
57
58 DESCRIPTION="A GUI to OpenSSL, RSA public keys, certificates, signing requests and revokation lists"
59 HOMEPAGE="http://www.hohnstaedt.de/xca.html"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
65 IUSE="doc bindist"
66
67 RDEPEND=">=dev-libs/openssl-0.9.8[bindist=]
68 dev-qt/qtgui:4"
69 DEPEND="${RDEPEND}
70 doc? ( app-text/linuxdoc-tools )"
71
72 src_prepare() {
73 # http://sourceforge.net/tracker/index.php?func=detail&aid=1800298&group_id=62274&atid=500028
74 epatch "${FILESDIR}"/${PN}-0.9.0-qt_detection.patch
75 epatch "${FILESDIR}"/${PN}-0.9.1-ldflags.patch
76 epatch "${FILESDIR}"/${P}-desktop.patch
77 epatch "${FILESDIR}"/${P}-openssl.patch
78 }
79
80 src_configure() {
81 local LINUXDOC
82 use doc || LINUXDOC='touch $@ && true'
83
84 QTDIR="${EPREFIX}/usr" \
85 STRIP="true" \
86 LINUXDOC="${LINUXDOC}" \
87 CC="$(tc-getCXX)" \
88 LD="$(tc-getLD)" \
89 CFLAGS="${CXXFLAGS}" \
90 LDFLAGS="${LDFLAGS}" \
91 prefix="${EPREFIX}/usr" \
92 docdir="${EPREFIX}/usr/share/doc/${PF}" \
93 ./configure || die "configure failed"
94 }
95
96 src_install() {
97 emake destdir="${D}" mandir="share/man" install
98
99 dodoc AUTHORS
100
101 insinto /etc/xca
102 doins misc/*.txt
103 }