summaryrefslogtreecommitdiff
path: root/kde-frameworks/kauth
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-03-02 16:59:17 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2019-03-02 16:59:17 +0100
commit179b38573e3f7385503cb193bccbb6a39a7a19b7 (patch)
treefd4732bf2144e5670519e24a0d14186353e55bf2 /kde-frameworks/kauth
parent6f1072f315912fb13f9d6103a985ce26b6759a03 (diff)
downloadkde-179b38573e3f7385503cb193bccbb6a39a7a19b7.tar.gz
kde-179b38573e3f7385503cb193bccbb6a39a7a19b7.tar.bz2
kde-179b38573e3f7385503cb193bccbb6a39a7a19b7.zip
kde-frameworks: Add KDE Frameworks 5.56.0
Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/kauth')
-rw-r--r--kde-frameworks/kauth/Manifest1
-rw-r--r--kde-frameworks/kauth/kauth-5.56.0.ebuild42
2 files changed, 43 insertions, 0 deletions
diff --git a/kde-frameworks/kauth/Manifest b/kde-frameworks/kauth/Manifest
new file mode 100644
index 00000000000..bb5658fe943
--- /dev/null
+++ b/kde-frameworks/kauth/Manifest
@@ -0,0 +1 @@
+DIST kauth-5.56.0.tar.xz 85156 BLAKE2B fe664999dffb22edee4c5093ee596a841b006e2c13d0a0edbba661b9fce6227544e1edbef632019ee4c27a9264c092c51c61ac1629474884159b3b218f36e7cc SHA512 ed19c6984178e4840541074deb2f239fc0c6e6aed810e1f52d3c5814083be00467699e32bec97422cd109b39190fbde976bd1d7da697a786408bc57e97c479d6
diff --git a/kde-frameworks/kauth/kauth-5.56.0.ebuild b/kde-frameworks/kauth/kauth-5.56.0.ebuild
new file mode 100644
index 00000000000..396d6cb72e1
--- /dev/null
+++ b/kde-frameworks/kauth/kauth-5.56.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+VIRTUALX_REQUIRED="test"
+inherit kde5
+
+DESCRIPTION="Framework to let applications perform actions as a privileged user"
+LICENSE="LGPL-2.1+"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="nls +policykit"
+
+BDEPEND="
+ nls? ( $(add_qt_dep linguist-tools) )
+"
+DEPEND="
+ $(add_frameworks_dep kcoreaddons)
+ $(add_qt_dep qtdbus)
+ $(add_qt_dep qtgui)
+ $(add_qt_dep qtwidgets)
+ policykit? ( sys-auth/polkit-qt[qt5(+)] )
+"
+RDEPEND="${DEPEND}"
+PDEPEND="policykit? ( kde-plasma/polkit-kde-agent )"
+
+src_configure() {
+ local mycmakeargs=(
+ $(cmake-utils_use_find_package policykit PolkitQt5-1)
+ )
+
+ kde5_src_configure
+}
+
+src_test() {
+ # KAuthHelperTest test fails, bug 654842
+ local myctestargs=(
+ -E "(KAuthHelperTest)"
+ )
+
+ kde5_src_test
+}