diff options
author | 2015-05-09 10:36:08 +0000 | |
---|---|---|
committer | 2015-05-09 10:36:08 +0000 | |
commit | 4804b0ba080b09b0cb8ae9e2b3538c40875894b1 (patch) | |
tree | 4da93a7743f5d5556821e4d19dd4611ba1fe4aa5 /kde-frameworks/kauth | |
parent | Sync kde5-functions.eclass with overlay. (diff) | |
download | gentoo-2-4804b0ba080b09b0cb8ae9e2b3538c40875894b1.tar.gz gentoo-2-4804b0ba080b09b0cb8ae9e2b3538c40875894b1.tar.bz2 gentoo-2-4804b0ba080b09b0cb8ae9e2b3538c40875894b1.zip |
Version bump.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'kde-frameworks/kauth')
-rw-r--r-- | kde-frameworks/kauth/ChangeLog | 7 | ||||
-rw-r--r-- | kde-frameworks/kauth/kauth-5.10.0.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/kde-frameworks/kauth/ChangeLog b/kde-frameworks/kauth/ChangeLog index 8b4f4ec19781..7b67dfd6baaa 100644 --- a/kde-frameworks/kauth/ChangeLog +++ b/kde-frameworks/kauth/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-frameworks/kauth # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-frameworks/kauth/ChangeLog,v 1.11 2015/04/11 17:09:48 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-frameworks/kauth/ChangeLog,v 1.12 2015/05/09 10:36:05 mrueg Exp $ + +*kauth-5.10.0 (09 May 2015) + + 09 May 2015; Manuel Rüger <mrueg@gentoo.org> +kauth-5.10.0.ebuild: + Version bump. *kauth-5.9.0 (11 Apr 2015) diff --git a/kde-frameworks/kauth/kauth-5.10.0.ebuild b/kde-frameworks/kauth/kauth-5.10.0.ebuild new file mode 100644 index 000000000000..f0e6a9a4725f --- /dev/null +++ b/kde-frameworks/kauth/kauth-5.10.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-frameworks/kauth/kauth-5.10.0.ebuild,v 1.1 2015/05/09 10:36:05 mrueg Exp $ + +EAPI=5 + +VIRTUALX_REQUIRED="test" +inherit kde5 + +DESCRIPTION="Framework to let applications perform actions as a privileged user" +LICENSE="LGPL-2.1+" +KEYWORDS="~amd64 ~x86" +IUSE="nls +policykit" + +RDEPEND=" + $(add_frameworks_dep kcoreaddons) + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + policykit? ( sys-auth/polkit-qt[qt5] ) +" +DEPEND="${RDEPEND} + nls? ( dev-qt/linguist-tools:5 ) +" +#PDEPEND="policykit? ( kde-plasma/polkit-kde-agent )" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package policykit PolkitQt-1) + ) + + kde5_src_configure +} |