Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/xca: ChangeLog xca-0.8.1.ebuild
Date: Thu, 29 Apr 2010 20:52:42
Message-Id: 20100429202127.C93AB2C059@corvid.gentoo.org
1 arfrever 10/04/29 20:21:27
2
3 Modified: ChangeLog
4 Added: xca-0.8.1.ebuild
5 Log:
6 Version bump (bug #317293).
7 (Portage version: HEAD/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.23 app-crypt/xca/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/xca/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/xca/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/xca/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 8 Nov 2009 20:20:03 -0000 1.22
23 +++ ChangeLog 29 Apr 2010 20:21:27 -0000 1.23
24 @@ -1,6 +1,13 @@
25 # ChangeLog for app-crypt/xca
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.22 2009/11/08 20:20:03 nixnut Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.23 2010/04/29 20:21:27 arfrever Exp $
30 +
31 +*xca-0.8.1 (29 Apr 2010)
32 +
33 + 29 Apr 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + -xca-0.6.4.ebuild, -files/xca-0.6.4-openssl.patch, +xca-0.8.1.ebuild,
35 + +files/xca-0.8.1-qt_detection.patch:
36 + Version bump (bug #317293).
37
38 08 Nov 2009; nixnut <nixnut@g.o> xca-0.7.0.ebuild:
39 ppc stable #291526
40
41
42
43 1.1 app-crypt/xca/xca-0.8.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/xca/xca-0.8.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/xca/xca-0.8.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xca-0.8.1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 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.8.1.ebuild,v 1.1 2010/04/29 20:21:27 arfrever Exp $
53
54 EAPI="3"
55
56 inherit eutils flag-o-matic toolchain-funcs
57
58 DESCRIPTION="A graphical user interface to OpenSSL, RSA public keys, certificates, signing requests and revokation lists"
59 HOMEPAGE="http://www.hohnstaedt.de/xca.html"
60 SRC_URI="mirror://sourceforge/xca/${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 IUSE="doc"
66
67 RDEPEND=">=dev-libs/openssl-0.9.8
68 x11-libs/qt-gui: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}/${P}-qt_detection.patch"
75
76 sed -e 's/$(LD) $(LDFLAGS)/$(LD) $(RAW_LDFLAGS)/' -i Makefile Rules.mak || die "sed failed"
77 }
78
79 src_configure() {
80 local LINUXDOC
81 use doc || LINUXDOC='touch $@ && true'
82
83 QTDIR=/usr \
84 STRIP="true" \
85 LINUXDOC="${LINUXDOC}" \
86 CC="$(tc-getCC)" \
87 LD="$(tc-getLD)" \
88 CFLAGS="${CXXFLAGS}" \
89 prefix=/usr \
90 docdir=/usr/share/doc/${PF} \
91 ./configure || die "configure failed"
92 }
93
94 src_compile() {
95 emake RAW_LDFLAGS="$(raw-ldflags)" || die "emake failed"
96 }
97
98 src_install() {
99 emake destdir="${D}" mandir="share/man" install || die "emake install failed"
100
101 dodoc AUTHORS
102
103 insinto /etc/xca
104 doins misc/*.txt
105 }