Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: lxqt-base/lxqt-policykit/
Date: Mon, 26 Sep 2016 23:21:25
Message-Id: 1474932068.5e85967b69d1d4c5c518771ba1dfd827259d4790.mrueg@gentoo
1 commit: 5e85967b69d1d4c5c518771ba1dfd827259d4790
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 26 23:21:08 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 26 23:21:08 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e85967b
7
8 lxqt-base/lxqt-policykit: Version bump to 0.11.0
9
10 Package-Manager: portage-2.3.1
11
12 lxqt-base/lxqt-policykit/Manifest | 1 +
13 .../lxqt-policykit/lxqt-policykit-0.11.0.ebuild | 45 ++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/lxqt-base/lxqt-policykit/Manifest b/lxqt-base/lxqt-policykit/Manifest
17 index 203a2d6..2265fb9 100644
18 --- a/lxqt-base/lxqt-policykit/Manifest
19 +++ b/lxqt-base/lxqt-policykit/Manifest
20 @@ -1 +1,2 @@
21 DIST lxqt-policykit-0.10.0.tar.xz 14500 SHA256 c8a1843d30697030ecdcf6d328351f954c0349633106d389e2d2e678176c28ce SHA512 f7c7c623fc6bde8555982cee56757166c3ef49a54af2d757b47d4e0a68025b8bd9fba623010d0bd6c67f3b92d3e7d245f066caaed98bbee9eda4b0f76d9f5a48 WHIRLPOOL c586311adcb06ae535390c32395e3819f64e516aca779f3125d6ace5626988c8874d51a53ae869ce927a6f485c865a6d2f3ea5eb3f044f3cf81241a06951f241
22 +DIST lxqt-policykit-0.11.0.tar.xz 31336 SHA256 d67620385b5ebe3784edc08be7b627fab8748d7cdd870f5cb2405a06f72469fc SHA512 f4c8a154e30df18118444d8caf09bd242aafb17309bba77f1153a6b3db74291d35fe10ffba716293203095bcaa70195414e6b10773f8fe3b48829ab72820e5ae WHIRLPOOL db0b767cdac2f5f1dcec4a5252593d73772d089f449414eba8f7b6e079b96bd25834e4a1a32cb82518b8fca6aa83559b014ce8907f5a84cee0a2545124085623
23
24 diff --git a/lxqt-base/lxqt-policykit/lxqt-policykit-0.11.0.ebuild b/lxqt-base/lxqt-policykit/lxqt-policykit-0.11.0.ebuild
25 new file mode 100644
26 index 00000000..54ca16a
27 --- /dev/null
28 +++ b/lxqt-base/lxqt-policykit/lxqt-policykit-0.11.0.ebuild
29 @@ -0,0 +1,45 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +inherit cmake-utils
36 +
37 +DESCRIPTION="LXQt PolKit authentication agent"
38 +HOMEPAGE="http://lxqt.org/"
39 +
40 +if [[ ${PV} = *9999* ]]; then
41 + inherit git-r3
42 + EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git"
43 +else
44 + SRC_URI="https://downloads.lxqt.org/lxqt/${PV}/${P}.tar.xz"
45 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
46 +fi
47 +
48 +LICENSE="GPL-2 LGPL-2.1+"
49 +SLOT="0"
50 +
51 +RDEPEND="
52 + dev-libs/glib:2
53 + dev-qt/qtcore:5
54 + dev-qt/qtdbus:5
55 + dev-qt/qtgui:5
56 + dev-qt/qtwidgets:5
57 + dev-qt/qtx11extras:5
58 + dev-qt/qtxml:5
59 + ~lxqt-base/liblxqt-${PV}
60 + >=dev-libs/libqtxdg-1.0.0
61 + sys-auth/polkit-qt[qt5(-)]"
62 +DEPEND="${RDEPEND}
63 + dev-qt/linguist-tools:5
64 + virtual/pkgconfig"
65 +
66 +src_configure() {
67 + local mycmakeargs=( -DPULL_TRANSLATIONS=OFF )
68 + cmake-utils_src_configure
69 +}
70 +
71 +src_install(){
72 + cmake-utils_src_install
73 + doman man/*.1
74 +}