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-admin/
Date: Tue, 27 Sep 2016 00:31:16
Message-Id: 1474936253.48af2857b1396846bd6f1859b9aedd9fb741ea1e.mrueg@gentoo
1 commit: 48af2857b1396846bd6f1859b9aedd9fb741ea1e
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 27 00:30:53 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 27 00:30:53 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48af2857
7
8 lxqt-base/lxqt-admin: Version bump to 0.11.0
9
10 Package-Manager: portage-2.3.1
11
12 lxqt-base/lxqt-admin/Manifest | 1 +
13 lxqt-base/lxqt-admin/lxqt-admin-0.11.0.ebuild | 39 +++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/lxqt-base/lxqt-admin/Manifest b/lxqt-base/lxqt-admin/Manifest
17 index feb115d..450fcc9 100644
18 --- a/lxqt-base/lxqt-admin/Manifest
19 +++ b/lxqt-base/lxqt-admin/Manifest
20 @@ -1 +1,2 @@
21 DIST lxqt-admin-0.10.0.tar.xz 29364 SHA256 46a5dd35e4bb560643647dfc9439f4a6ba1cdb3fd73af639cb3aca364cd3a895 SHA512 a39e32c647f4d81e594dc1aa8c3792b62909b6209c7ae0452a26b21b1b5e733aa79d5d4489fd72e701e54d41b96be6fea683e991777179425c76516210f0d684 WHIRLPOOL 0f6b72875bfcdee552ad239392956ba314e95833445d0b8229b6abecf77e33d737eb3057d4d620f4bbc16f9641b587f880bbf2e1b0b7d67b106fd42789eadb6d
22 +DIST lxqt-admin-0.11.0.tar.xz 114720 SHA256 34eb3a5cd93d10b1440b0a098b21d5bc512f76dc03ab36dfd78c57e9cb9da6a2 SHA512 cbbd83892c0c181eb996de198f6c5d3b00d0c6a5e185b816ac1237bd5930da0aa8cd272696571bb91d70054e89ea96f4dd9b3aa34dff7534286ff3e529757792 WHIRLPOOL 452e71b07afcb536ba0fe0cb3649a10b28422f9e23338bc18607645b9e0687f27047486870c4cb1891e853504dbcf04fba4428fc3d1f8cf02c40a3217d8f4f53
23
24 diff --git a/lxqt-base/lxqt-admin/lxqt-admin-0.11.0.ebuild b/lxqt-base/lxqt-admin/lxqt-admin-0.11.0.ebuild
25 new file mode 100644
26 index 00000000..c55c32b
27 --- /dev/null
28 +++ b/lxqt-base/lxqt-admin/lxqt-admin-0.11.0.ebuild
29 @@ -0,0 +1,39 @@
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 system administration tool"
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="LGPL-2.1+"
49 +SLOT="0"
50 +
51 +DEPEND="dev-libs/glib:2
52 + >=dev-libs/libqtxdg-1.0.0
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 + kde-frameworks/kwindowsystem:5
61 + x11-libs/libX11
62 +"
63 +RDEPEND="${DEPEND}"
64 +
65 +src_configure() {
66 + local mycmakeargs=( -DPULL_TRANSLATIONS=OFF )
67 + cmake-utils_src_configure
68 +}