diff options
author | 2015-02-10 17:12:42 +0000 | |
---|---|---|
committer | 2015-02-10 17:12:42 +0000 | |
commit | afd8f73c3e163ee8f088f78d5a43fe555ded507d (patch) | |
tree | ab6ebb639af46a913fde3975dbc1647f38ab5feb /lxqt-base | |
parent | LXQt 0.9.0 version bump (diff) | |
download | gentoo-2-afd8f73c3e163ee8f088f78d5a43fe555ded507d.tar.gz gentoo-2-afd8f73c3e163ee8f088f78d5a43fe555ded507d.tar.bz2 gentoo-2-afd8f73c3e163ee8f088f78d5a43fe555ded507d.zip |
LXQt 0.9.0 version bump
(Portage version: 2.2.16/cvs/Linux x86_64, signed Manifest commit with key 0x4FDF9CFD2FAC514E!)
Diffstat (limited to 'lxqt-base')
-rw-r--r-- | lxqt-base/lxqt-policykit/ChangeLog | 7 | ||||
-rw-r--r-- | lxqt-base/lxqt-policykit/lxqt-policykit-0.9.0.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/lxqt-base/lxqt-policykit/ChangeLog b/lxqt-base/lxqt-policykit/ChangeLog index d96c806f7259..875b3a30010e 100644 --- a/lxqt-base/lxqt-policykit/ChangeLog +++ b/lxqt-base/lxqt-policykit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for lxqt-base/lxqt-policykit # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-policykit/ChangeLog,v 1.7 2015/01/30 16:32:20 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-policykit/ChangeLog,v 1.8 2015/02/10 17:12:42 yngwin Exp $ + +*lxqt-policykit-0.9.0 (10 Feb 2015) + + 10 Feb 2015; Ben de Groot <yngwin@gentoo.org> +lxqt-policykit-0.9.0.ebuild: + LXQt 0.9.0 version bump 30 Jan 2015; Michael Palimaka <kensington@gentoo.org> lxqt-policykit-0.7.0-r1.ebuild, lxqt-policykit-0.8.0.ebuild: diff --git a/lxqt-base/lxqt-policykit/lxqt-policykit-0.9.0.ebuild b/lxqt-base/lxqt-policykit/lxqt-policykit-0.9.0.ebuild new file mode 100644 index 000000000000..e06175e9cb00 --- /dev/null +++ b/lxqt-base/lxqt-policykit/lxqt-policykit-0.9.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-policykit/lxqt-policykit-0.9.0.ebuild,v 1.1 2015/02/10 17:12:42 yngwin Exp $ + +EAPI=5 +inherit cmake-utils + +DESCRIPTION="LXQt PolKit authentication agent" +HOMEPAGE="http://lxqt.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git" +else + SRC_URI="http://downloads.lxqt.org/lxqt/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-2 LGPL-2.1+" +SLOT="0" + +RDEPEND=" + dev-libs/glib:2 + dev-qt/linguist-tools:5 + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + dev-qt/qtx11extras:5 + dev-qt/qtxml:5 + ~lxqt-base/liblxqt-${PV} + >=dev-libs/libqtxdg-1.0.0 + sys-auth/polkit-qt[qt5(-)]" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_install(){ + cmake-utils_src_install + doman man/*.1 +} |