diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-12-08 23:50:47 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-12-09 17:49:59 +0100 |
commit | 92ce08d47d7105b5d7a8c7140798a277b9b844ea (patch) | |
tree | 41bca5c9474de6cec35e12d8490260764da53970 /kde-frameworks/kauth | |
parent | kde5-functions: Raise QT_MINIMAL to 5.11.1 (diff) | |
download | gentoo-92ce08d47d7105b5d7a8c7140798a277b9b844ea.tar.gz gentoo-92ce08d47d7105b5d7a8c7140798a277b9b844ea.tar.bz2 gentoo-92ce08d47d7105b5d7a8c7140798a277b9b844ea.zip |
kde-frameworks: Add KDE Frameworks 5.53.0
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/kauth')
-rw-r--r-- | kde-frameworks/kauth/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/kauth/kauth-5.53.0.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/kde-frameworks/kauth/Manifest b/kde-frameworks/kauth/Manifest index 65a97e58844f..f13c025e2129 100644 --- a/kde-frameworks/kauth/Manifest +++ b/kde-frameworks/kauth/Manifest @@ -1 +1,2 @@ DIST kauth-5.52.0.tar.xz 84716 BLAKE2B 142725f21bb2bbbd985a22f580088dfc8fc399db96295d3b24a65dcb2bac89d9ff0dadef87bcea798f85e858df0f013cc4e849295a537ac2fac7cede92b0f30b SHA512 62b9da8e867f4256b9210ef210cc5d7230064c8c7096f0765061f2e3010cce64abd6d7324daf5a48e952b8bfe38fb5efecd7448e0ec16968dbf27c913dcc8b14 +DIST kauth-5.53.0.tar.xz 84728 BLAKE2B 41d654d2cb4cfd3daca4271d875e430b6a1160a4a8778aae59a16552b92892265d1c18101bccf0f55b7b46d93e87226482963b0233e90783f2f7586af9b79ab4 SHA512 f4b99b0282ff3caafeaf304739ce5c52268c01245e6ea7582a32a85b4afa0addac141a58c9fa66304165dc91269950474ea79623ae934ca673dcec34d3da0629 diff --git a/kde-frameworks/kauth/kauth-5.53.0.ebuild b/kde-frameworks/kauth/kauth-5.53.0.ebuild new file mode 100644 index 000000000000..da916e906553 --- /dev/null +++ b/kde-frameworks/kauth/kauth-5.53.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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" + +RDEPEND=" + $(add_frameworks_dep kcoreaddons) + $(add_qt_dep qtdbus) + $(add_qt_dep qtgui) + $(add_qt_dep qtwidgets) + policykit? ( sys-auth/polkit-qt[qt5(+)] ) +" +DEPEND="${RDEPEND} + nls? ( $(add_qt_dep linguist-tools) ) +" +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 +} |