Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:master commit in: app-admin/keepassx/
Date: Fri, 29 Aug 2014 02:26:21
Message-Id: 1409279151.22ea2ab593c4d676306753681f1dde71531429ed.pesa@gentoo
1 commit: 22ea2ab593c4d676306753681f1dde71531429ed
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 29 02:25:51 2014 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 29 02:25:51 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=22ea2ab5
7
8 [app-admin/keepassx] Switch to git-r3; cleanup.
9
10 Package-Manager: portage-2.2.12
11
12 ---
13 app-admin/keepassx/keepassx-9999.ebuild | 16 ++++++++--------
14 1 file changed, 8 insertions(+), 8 deletions(-)
15
16 diff --git a/app-admin/keepassx/keepassx-9999.ebuild b/app-admin/keepassx/keepassx-9999.ebuild
17 index 7274d70..027a705 100644
18 --- a/app-admin/keepassx/keepassx-9999.ebuild
19 +++ b/app-admin/keepassx/keepassx-9999.ebuild
20 @@ -4,13 +4,14 @@
21
22 EAPI=5
23
24 -inherit qt4-r2 cmake-utils git-2
25 +inherit cmake-utils git-r3
26
27 -DESCRIPTION="Qt password manager compatible with its Win32 and Pocket PC versions."
28 +DESCRIPTION="Qt password manager compatible with its Win32 and Pocket PC versions"
29 HOMEPAGE="http://keepassx.sourceforge.net/"
30 -EGIT_REPO_URI="git://keepassx.org/${PN}.git
31 - https://github.com/${PN}/${PN}
32 -"
33 +EGIT_REPO_URI=(
34 + "git://keepassx.org/${PN}.git"
35 + "https://github.com/${PN}/${PN}"
36 +)
37
38 LICENSE="LGPL-2.1 GPL-2 GPL-3"
39 SLOT="0"
40 @@ -18,19 +19,18 @@ KEYWORDS=""
41 IUSE="debug test"
42
43 RDEPEND="dev-libs/libgcrypt:=
44 - sys-libs/zlib
45 dev-qt/qtcore:4[qt3support]
46 dev-qt/qtgui:4[qt3support]
47 + sys-libs/zlib
48 "
49 DEPEND="${RDEPEND}
50 test? ( dev-qt/qttest:4 )
51 "
52
53 src_configure() {
54 - mycmakeargs=(
55 + local mycmakeargs=(
56 $(cmake-utils_use_with test TESTS)
57 -DWITH_GUI_TESTS=OFF
58 )
59 -
60 cmake-utils_src_configure
61 }