Gentoo Archives: gentoo-commits

From: "Timo Gurr (tgurr)" <tgurr@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/keepassx: ChangeLog keepassx-0.4.0.ebuild keepassx-0.4.0_beta1.ebuild keepassx-0.2.2-r1.ebuild
Date: Tue, 31 Mar 2009 02:17:46
Message-Id: E1LoTXs-0005XM-I2@stork.gentoo.org
1 tgurr 09/03/31 02:17:44
2
3 Modified: ChangeLog
4 Added: keepassx-0.4.0.ebuild
5 Removed: keepassx-0.4.0_beta1.ebuild
6 keepassx-0.2.2-r1.ebuild
7 Log:
8 Version bump, fixing bug #261480 and bug #264062.
9 (Portage version: 2.2_rc28/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.38 app-admin/keepassx/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/keepassx/ChangeLog?rev=1.38&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/keepassx/ChangeLog?rev=1.38&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/keepassx/ChangeLog?r1=1.37&r2=1.38
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-admin/keepassx/ChangeLog,v
21 retrieving revision 1.37
22 retrieving revision 1.38
23 diff -u -r1.37 -r1.38
24 --- ChangeLog 28 Feb 2009 19:44:44 -0000 1.37
25 +++ ChangeLog 31 Mar 2009 02:17:44 -0000 1.38
26 @@ -1,6 +1,13 @@
27 # ChangeLog for app-admin/keepassx
28 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-admin/keepassx/ChangeLog,v 1.37 2009/02/28 19:44:44 tgurr Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-admin/keepassx/ChangeLog,v 1.38 2009/03/31 02:17:44 tgurr Exp $
31 +
32 +*keepassx-0.4.0 (31 Mar 2009)
33 +
34 + 31 Mar 2009; Timo Gurr <tgurr@g.o> -files/keepassx.desktop,
35 + -keepassx-0.2.2-r1.ebuild, -keepassx-0.4.0_beta1.ebuild,
36 + +keepassx-0.4.0.ebuild:
37 + Version bump, fixing bug #261480 and bug #264062.
38
39 *keepassx-0.4.0_beta1 (28 Feb 2009)
40
41
42
43
44 1.1 app-admin/keepassx/keepassx-0.4.0.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/keepassx/keepassx-0.4.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/keepassx/keepassx-0.4.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: keepassx-0.4.0.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-admin/keepassx/keepassx-0.4.0.ebuild,v 1.1 2009/03/31 02:17:44 tgurr Exp $
54
55 EAPI="2"
56
57 inherit eutils qt4
58
59 DESCRIPTION="Qt password manager compatible with its Win32 and Pocket PC versions."
60 HOMEPAGE="http://keepassx.sourceforge.net/"
61 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86"
66 IUSE="debug pch"
67
68 DEPEND="x11-libs/qt-core:4[qt3support]
69 x11-libs/qt-gui:4[qt3support]
70 x11-libs/qt-xmlpatterns:4"
71 RDEPEND="${DEPEND}"
72
73 src_configure() {
74 local conf_add
75 use debug && conf_add="${conf_add} debug" || conf_add="${conf_add} release"
76 use pch && conf_add="${conf_add} PRECOMPILED=1" || conf_add="${conf_add} PRECOMPILED=0"
77
78 eqmake4 ${PN}.pro -recursive \
79 PREFIX="${D}/usr" \
80 CONFIG+="${conf_add}" \
81 || die "eqmake4 failed."
82 }
83
84 src_compile() {
85 # workaround compile failure due to distcc, bug #214327
86 PATH=${PATH/\/usr\/lib\/distcc\/bin:}
87 emake || die "emake failed"
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die "emake install failed"
92 dodoc changelog || die "dodoc failed"
93 }