diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-04-08 17:32:56 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-04-08 17:33:41 +0200 |
commit | 772d5a9a522abd8a460b5be807bf568635a9abf0 (patch) | |
tree | ecf9649a57c723b7b09a2921555ba446a029701b /kde-frameworks/kauth | |
parent | media-gfx/gimp: Sync 9999, move to https (diff) | |
download | gentoo-772d5a9a522abd8a460b5be807bf568635a9abf0.tar.gz gentoo-772d5a9a522abd8a460b5be807bf568635a9abf0.tar.bz2 gentoo-772d5a9a522abd8a460b5be807bf568635a9abf0.zip |
kde-frameworks: Add KDE Frameworks 5.33.0 release
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'kde-frameworks/kauth')
-rw-r--r-- | kde-frameworks/kauth/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/kauth/kauth-5.33.0.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/kde-frameworks/kauth/Manifest b/kde-frameworks/kauth/Manifest index 9e07f4c97fca..89d294dde9a6 100644 --- a/kde-frameworks/kauth/Manifest +++ b/kde-frameworks/kauth/Manifest @@ -1,2 +1,3 @@ DIST kauth-5.29.0.tar.xz 2551192 SHA256 f2c51dfb42196fe5d604883c9f28bda7fd3f40d308144f521f4090a941c2091d SHA512 96729a2f34fe34786c798bfd86577e781da717485da8ec2502423937eed51750eedd120390b95f2e409ad1159fab72c3b05bdb720ae20685992786cd5cc95c7c WHIRLPOOL d76b40236edafd03c241a2d138b35db461ee8e38cc2bd0c6e2a43d00112bd00651f1a3f8bfb87abf4e1c5dbf68e6b6fc69b40340a01eb759121b8351b4933a1f DIST kauth-5.32.0.tar.xz 83424 SHA256 b8326b4ca3a43169f70c08186bd1230777c1caa5857e7e5770d6f0644dc06d02 SHA512 03d2a9522cbc010bf1301ddd1640fd6124a27b35ba7f8a70fbabfe60bc146dab2c8ed625515c7c7c1a42a79e54750bc6d8139bbb11a9b877276b17ec84aeabe3 WHIRLPOOL 0bbd6214fcf90e846400b94a6be39c0678bdebe0d4e08304dbfbd15d8649da2ad220ae412c56c5c849d6b39800afb8c6e69cafcd45ba025fa59b9ba3c8bf90fa +DIST kauth-5.33.0.tar.xz 84036 SHA256 c7a77c00cc4f09d8cea32d953718db5b841ed2454e8e6df04035b1270927d1d1 SHA512 7961815949828c2b0c40fba3a5ebb8a7dac5a29f8f88311a6051559ae4147621d376517dc77267979f6deb3042515e52c60d45925cd4ea9a8bbbec434e9e1652 WHIRLPOOL c89863197bde7d6052b01c67a5b59b96885d3a610a52e08622e9c37f921d9652971d1f60cc5c1f5cded0a8e2b2e07f190626d0f36b8a190ebe316f66ed387447 diff --git a/kde-frameworks/kauth/kauth-5.33.0.ebuild b/kde-frameworks/kauth/kauth-5.33.0.ebuild new file mode 100644 index 000000000000..fbd559a21c37 --- /dev/null +++ b/kde-frameworks/kauth/kauth-5.33.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2017 Gentoo Foundation +# 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 ~x86" +IUSE="nls +policykit" + +# drop qtgui subslot operator when QT_MINIMAL >= 5.7.0 +RDEPEND=" + $(add_frameworks_dep kcoreaddons) + $(add_qt_dep qtdbus '' '' '5=') + $(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 +} |