Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/polkit-qt/
Date: Thu, 22 Mar 2018 12:22:23
Message-Id: 1521721004.11b0c540fe09a099d51ed0a63273d91a2c587e21.asturm@gentoo
1 commit: 11b0c540fe09a099d51ed0a63273d91a2c587e21
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 22 12:07:35 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 22 12:16:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11b0c540
7
8 sys-auth/polkit-qt: Drop USE=qt4 and multibuild
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 .../polkit-qt-0.112.0_p20160416-r2.ebuild | 41 ++++++++++++++++++++++
13 1 file changed, 41 insertions(+)
14
15 diff --git a/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r2.ebuild b/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r2.ebuild
16 new file mode 100644
17 index 00000000000..e909e08a5bf
18 --- /dev/null
19 +++ b/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r2.ebuild
20 @@ -0,0 +1,41 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +MY_P="${P/qt/qt-1}"
27 +inherit cmake-utils
28 +
29 +DESCRIPTION="PolicyKit Qt API wrapper library"
30 +HOMEPAGE="https://api.kde.org/kdesupport-api/polkit-qt-1-apidocs/"
31 +SRC_URI="https://dev.gentoo.org/~kensington/distfiles/${MY_P}.tar.xz"
32 +
33 +LICENSE="LGPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
36 +IUSE="debug examples"
37 +
38 +RDEPEND="
39 + dev-libs/glib:2
40 + dev-qt/qtcore:5
41 + dev-qt/qtdbus:5
42 + dev-qt/qtgui:5
43 + dev-qt/qtwidgets:5
44 + >=sys-auth/polkit-0.103
45 + examples? ( dev-qt/qtxml:5 )
46 +"
47 +DEPEND="${RDEPEND}"
48 +
49 +DOCS=( AUTHORS README README.porting TODO )
50 +
51 +S=${WORKDIR}/${MY_P}
52 +
53 +src_configure() {
54 + local mycmakeargs=(
55 + -DBUILD_EXAMPLES=$(usex examples)
56 + -DUSE_QT4=OFF
57 + -DUSE_QT5=ON
58 + )
59 +
60 + cmake-utils_src_configure
61 +}