Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: lxqt-base/lxqt-config/
Date: Sat, 28 Nov 2015 17:36:09
Message-Id: 1448525979.ed63a8806ccb686f5a87c0d4ac44f22ca12e4e49.monsieurp@gentoo
1 commit: ed63a8806ccb686f5a87c0d4ac44f22ca12e4e49
2 Author: Paolo Pedroni <PPed72 <AT> users <DOT> noreply <DOT> github <DOT> com>
3 AuthorDate: Tue Nov 24 11:07:22 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 26 08:19:39 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed63a880
7
8 lxqt-base/lxqt-config: Version bump to 0.10.0
9
10 Thanks to Alpha Bravo <aos <AT> ungwana.de> in bug #564718
11
12 lxqt-base/lxqt-config/lxqt-config-0.10.0.ebuild | 49 +++++++++++++++++++++++++
13 1 file changed, 49 insertions(+)
14
15 diff --git a/lxqt-base/lxqt-config/lxqt-config-0.10.0.ebuild b/lxqt-base/lxqt-config/lxqt-config-0.10.0.ebuild
16 new file mode 100644
17 index 0000000..7ed870f
18 --- /dev/null
19 +++ b/lxqt-base/lxqt-config/lxqt-config-0.10.0.ebuild
20 @@ -0,0 +1,49 @@
21 +# Copyright 1999-2015 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +inherit cmake-utils
27 +
28 +DESCRIPTION="LXQt system configuration control center"
29 +HOMEPAGE="http://lxqt.org/"
30 +
31 +if [[ ${PV} = *9999* ]]; then
32 + inherit git-r3
33 + EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git"
34 +else
35 + SRC_URI="https://downloads.lxqt.org/lxqt/${PV}/${P}.tar.xz"
36 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
37 +fi
38 +
39 +LICENSE="GPL-2 LGPL-2.1+"
40 +SLOT="0"
41 +
42 +DEPEND="
43 + >=dev-libs/libqtxdg-1.0.0
44 + dev-qt/linguist-tools:5
45 + dev-qt/qtconcurrent:5
46 + dev-qt/qtcore:5
47 + dev-qt/qtdbus:5
48 + dev-qt/qtgui:5
49 + dev-qt/qtwidgets:5
50 + dev-qt/qtx11extras:5
51 + dev-qt/qtxml:5
52 + kde-frameworks/kwindowsystem:5
53 + kde-plasma/libkscreen
54 + ~lxqt-base/liblxqt-${PV}
55 + sys-libs/zlib
56 + x11-libs/libICE
57 + x11-libs/libSM
58 + x11-libs/libxcb:=
59 + x11-libs/libX11
60 + x11-libs/libXcursor
61 + x11-libs/libXext
62 + x11-libs/libXfixes"
63 +RDEPEND="${DEPEND}
64 + x11-apps/setxkbmap"
65 +
66 +src_install(){
67 + cmake-utils_src_install
68 + doman man/*.1 liblxqt-config-cursor/man/*.1 lxqt-config-appearance/man/*.1
69 +}