Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/qca: qca-2.0.2.ebuild ChangeLog
Date: Sat, 02 May 2009 09:25:22
Message-Id: E1M0BTE-0004NV-Jq@stork.gentoo.org
1 hwoarang 09/05/02 09:25:20
2
3 Modified: ChangeLog
4 Added: qca-2.0.2.ebuild
5 Log:
6 Version bump, thanks to Davide Pesavento. Fixes bug #268090
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.61 app-crypt/qca/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/qca/ChangeLog?rev=1.61&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/qca/ChangeLog?rev=1.61&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/qca/ChangeLog?r1=1.60&r2=1.61
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-crypt/qca/ChangeLog,v
19 retrieving revision 1.60
20 retrieving revision 1.61
21 diff -u -r1.60 -r1.61
22 --- ChangeLog 26 Apr 2009 15:32:25 -0000 1.60
23 +++ ChangeLog 2 May 2009 09:25:20 -0000 1.61
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-crypt/qca
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/ChangeLog,v 1.60 2009/04/26 15:32:25 yngwin Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/ChangeLog,v 1.61 2009/05/02 09:25:20 hwoarang Exp $
29 +
30 +*qca-2.0.2 (02 May 2009)
31 +
32 + 02 May 2009; Markos Chandras <hwoarang@g.o> +qca-2.0.2.ebuild:
33 + Version bump, thanks to Davide Pesavento <davidepesa@×××××.com> for the
34 + initial ebuild. Fixes bug #268090
35
36 26 Apr 2009; Ben de Groot <yngwin@g.o> qca-2.0.0-r2, qca-2.0.1-r1:
37 Fix qt dep, move 2.0.1 to eapi-2 with use dep
38
39
40
41 1.1 app-crypt/qca/qca-2.0.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/qca/qca-2.0.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/qca/qca-2.0.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: qca-2.0.2.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/qca-2.0.2.ebuild,v 1.1 2009/05/02 09:25:20 hwoarang Exp $
51
52 EAPI="2"
53
54 inherit eutils multilib qt4
55
56 DESCRIPTION="Qt Cryptographic Architecture (QCA)"
57 HOMEPAGE="http://delta.affinix.com/qca/"
58 SRC_URI="http://delta.affinix.com/download/${PN}/${PV%.*}/${P}.tar.bz2"
59
60 LICENSE="LGPL-2"
61 SLOT="2"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
63 IUSE="debug doc examples"
64 RESTRICT="test"
65
66 DEPEND="!<app-crypt/qca-1.0-r3
67 x11-libs/qt-core:4[debug=]"
68 RDEPEND="${DEPEND}"
69
70 #src_prepare() {
71 # epatch "${FILESDIR}"/${P}-pcfilespath.patch
72 #}
73
74 src_configure() {
75 _libdir=$(get_libdir)
76
77 ./configure \
78 --prefix=/usr \
79 --qtdir=/usr \
80 --includedir="/usr/include/qca2" \
81 --libdir="/usr/${_libdir}/qca2" \
82 --no-separate-debug-info \
83 --disable-tests \
84 --$(use debug && echo debug || echo release) \
85 || die "configure failed"
86
87 eqmake4
88 }
89
90 src_install() {
91 emake INSTALL_ROOT="${D}" install || die "emake install failed"
92 dodoc README TODO || die "dodoc failed"
93
94 cat <<-EOF > "${WORKDIR}"/44qca2
95 LDPATH=/usr/${_libdir}/qca2
96 EOF
97 doenvd "${WORKDIR}"/44qca2 || die
98
99 if use doc; then
100 dohtml "${S}"/apidocs/html/* || die "Failed to install documentation"
101 fi
102
103 if use examples; then
104 insinto /usr/share/doc/${PF}/
105 doins -r "${S}"/examples || die "Failed to install examples"
106 fi
107 }