diff options
Diffstat (limited to 'sys-auth')
-rw-r--r-- | sys-auth/polkit-qt/polkit-qt-0.200.0.ebuild (renamed from sys-auth/polkit-qt/polkit-qt-0.113.0-r11.ebuild) | 4 | ||||
-rw-r--r-- | sys-auth/polkit-qt5/Manifest | 2 | ||||
-rw-r--r-- | sys-auth/polkit-qt5/polkit-qt5-0.200.0.ebuild (renamed from sys-auth/polkit-qt5/polkit-qt5-0.113.0-r5.ebuild) | 2 | ||||
-rw-r--r-- | sys-auth/polkit-qt6/Manifest | 1 | ||||
-rw-r--r-- | sys-auth/polkit-qt6/polkit-qt6-0.200.0.ebuild | 39 |
5 files changed, 46 insertions, 2 deletions
diff --git a/sys-auth/polkit-qt/polkit-qt-0.113.0-r11.ebuild b/sys-auth/polkit-qt/polkit-qt-0.200.0.ebuild index 3d8c37d0..466173d9 100644 --- a/sys-auth/polkit-qt/polkit-qt-0.113.0-r11.ebuild +++ b/sys-auth/polkit-qt/polkit-qt-0.200.0.ebuild @@ -12,9 +12,11 @@ SRC_URI="" LICENSE="LGPL-2" SLOT="0" KEYWORDS="amd64" -IUSE="+qt5" +IUSE="+qt5 qt6" +REQUIRED_USE="|| ( qt5 qt6 )" RDEPEND=" qt5? ( ~sys-auth/polkit-qt5-${PV} ) + qt6? ( ~sys-auth/polkit-qt6-${PV} ) " DEPEND="" diff --git a/sys-auth/polkit-qt5/Manifest b/sys-auth/polkit-qt5/Manifest index 8b9fe5d7..ec3b9ccc 100644 --- a/sys-auth/polkit-qt5/Manifest +++ b/sys-auth/polkit-qt5/Manifest @@ -1 +1 @@ -DIST polkit-qt-1-0.113.0.tar.xz 64652 BLAKE2B 52d8c5c8009e2595c70db5b6a6349e4524d6d9cbec12c5a535f25d737da1d16e77fadf3572eebbede7a5ed583c818e878119b416d69a076e03bb37d2f7da7b41 SHA512 deea5d75f547eaa0279c664ec9608b65f464db97fd5fdea27437f8ed4ec033de2b9f91d967deacb28bf0a1e54f131f997acb862cc3e1f8dfcb1f6c337e719b38 +DIST polkit-qt-1-0.200.0.tar.xz 58216 BLAKE2B 4edd1577178d4b61889f3da3699f36e0b3251c38b111c0c219ad9c9585ff32845034c068a5c382c29baa1d9cd8d723378422dafb4ea8734766da1b8032025826 SHA512 a09214043fa874234086a5de4d27153368dbe775dd6d573dd2531f2f2be79eb22bf73bbfb2a3a839c20c0347762e7af86b73ba38a05b2dcd43e59526e29c008d diff --git a/sys-auth/polkit-qt5/polkit-qt5-0.113.0-r5.ebuild b/sys-auth/polkit-qt5/polkit-qt5-0.200.0.ebuild index 3e1c0fd1..6e1d53ff 100644 --- a/sys-auth/polkit-qt5/polkit-qt5-0.113.0-r5.ebuild +++ b/sys-auth/polkit-qt5/polkit-qt5-0.200.0.ebuild @@ -28,12 +28,14 @@ RDEPEND=" >=sys-auth/polkit-0.103 " DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" DOCS=( AUTHORS README README.porting TODO ) src_configure() { local mycmakeargs=( -DBUILD_EXAMPLES=OFF + -DQT_MAJOR_VERSION=5 ) cmake_src_configure diff --git a/sys-auth/polkit-qt6/Manifest b/sys-auth/polkit-qt6/Manifest new file mode 100644 index 00000000..ec3b9ccc --- /dev/null +++ b/sys-auth/polkit-qt6/Manifest @@ -0,0 +1 @@ +DIST polkit-qt-1-0.200.0.tar.xz 58216 BLAKE2B 4edd1577178d4b61889f3da3699f36e0b3251c38b111c0c219ad9c9585ff32845034c068a5c382c29baa1d9cd8d723378422dafb4ea8734766da1b8032025826 SHA512 a09214043fa874234086a5de4d27153368dbe775dd6d573dd2531f2f2be79eb22bf73bbfb2a3a839c20c0347762e7af86b73ba38a05b2dcd43e59526e29c008d diff --git a/sys-auth/polkit-qt6/polkit-qt6-0.200.0.ebuild b/sys-auth/polkit-qt6/polkit-qt6-0.200.0.ebuild new file mode 100644 index 00000000..fd67071a --- /dev/null +++ b/sys-auth/polkit-qt6/polkit-qt6-0.200.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KDE_ORG_NAME="polkit-qt-1" +inherit cmake kde.org + +DESCRIPTION="Qt wrapper around polkit-1 client libraries" +HOMEPAGE="https://api.kde.org/kdesupport-api/polkit-qt-1-apidocs/" + +if [[ ${KDE_BUILD_TYPE} = release ]]; then + SRC_URI="mirror://kde/stable/${KDE_ORG_NAME}/${KDE_ORG_NAME}-${PV}.tar.xz" + KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86" + S="${WORKDIR}/${KDE_ORG_NAME}-${PV}" +fi + +LICENSE="LGPL-2" +SLOT="0" +IUSE="debug" + +RDEPEND=" + dev-libs/glib:2 + dev-qt/qtbase:6[dbus,gui,widgets] + >=sys-auth/polkit-0.103 +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +DOCS=( AUTHORS README README.porting TODO ) + +src_configure() { + local mycmakeargs=( + -DBUILD_EXAMPLES=OFF + -DQT_MAJOR_VERSION=6 + ) + + cmake_src_configure +} |