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-config/
Date: Mon, 26 Sep 2016 22:51:23
Message-Id: 1474930261.d541a6ed472f6f374372404629d0925ab4574c23.mrueg@gentoo
1 commit: d541a6ed472f6f374372404629d0925ab4574c23
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 26 22:51:01 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 26 22:51:01 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d541a6ed
7
8 lxqt-base/lxqt-config: Version bump to 0.11.0
9
10 Package-Manager: portage-2.3.1
11
12 lxqt-base/lxqt-config/Manifest | 1 +
13 lxqt-base/lxqt-config/lxqt-config-0.11.0.ebuild | 55 +++++++++++++++++++++++++
14 2 files changed, 56 insertions(+)
15
16 diff --git a/lxqt-base/lxqt-config/Manifest b/lxqt-base/lxqt-config/Manifest
17 index 07caa06..d075fed 100644
18 --- a/lxqt-base/lxqt-config/Manifest
19 +++ b/lxqt-base/lxqt-config/Manifest
20 @@ -1 +1,2 @@
21 DIST lxqt-config-0.10.0.tar.xz 154568 SHA256 4567be4653f2f1f9ff156126250a08d7b480f627fa1410484d49f65ba5dab9b4 SHA512 1865d6eb133ee294192e30a3e658b76335012b049543b499ebe5b9f01e2158fff65078a68f044b1b08f22c43edb87e7938844a700a723acfce053d75956c29a3 WHIRLPOOL d1098d5048b99555554dd6430206f8136257b2b55252073dd634be6062248f8fd2e8d11088ac2a6a7fd6b25422d5e2cecf0e54b3649f8762dfb97131d2810e06
22 +DIST lxqt-config-0.11.0.tar.xz 197112 SHA256 e254994caf0535bf6f9da659dc4410b63b5b5cfabea0b961bfb8c00e3c393d38 SHA512 20a573ba6cb83ef19b58a31180924e527496f4eb5d5f9bcf1eb37e3883b8b46ea02f08be9fe42a06f12508ffa2a9af5225d3fe00856ee7807704a99adf654795 WHIRLPOOL 9d47aa2d371b0c41312f53c64d08506693e1fdb78f365c224ffefe6ed12ac5a656d23c28af849f3d89443bfa9091396083c1ad1c49ddad2b8b8281a622caf64a
23
24 diff --git a/lxqt-base/lxqt-config/lxqt-config-0.11.0.ebuild b/lxqt-base/lxqt-config/lxqt-config-0.11.0.ebuild
25 new file mode 100644
26 index 00000000..a2b2c20
27 --- /dev/null
28 +++ b/lxqt-base/lxqt-config/lxqt-config-0.11.0.ebuild
29 @@ -0,0 +1,55 @@
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 configuration control center"
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 +CDEPEND="
52 + >=dev-libs/libqtxdg-1.0.0
53 + dev-qt/qtconcurrent:5
54 + dev-qt/qtcore:5
55 + dev-qt/qtdbus:5
56 + dev-qt/qtgui:5
57 + dev-qt/qtwidgets:5
58 + dev-qt/qtx11extras:5
59 + dev-qt/qtxml:5
60 + kde-frameworks/kwindowsystem:5
61 + kde-plasma/libkscreen:5=
62 + ~lxqt-base/liblxqt-${PV}
63 + sys-libs/zlib
64 + x11-libs/libICE
65 + x11-libs/libSM
66 + x11-libs/libxcb:=
67 + x11-libs/libX11
68 + x11-libs/libXcursor
69 + x11-libs/libXext
70 + x11-libs/libXfixes"
71 +DEPEND="${CDEPEND}
72 + dev-qt/linguist-tools:5"
73 +RDEPEND="${CDEPEND}
74 + x11-apps/setxkbmap"
75 +
76 +src_configure() {
77 + local mycmakeargs=( -DPULL_TRANSLATIONS=OFF )
78 + cmake-utils_src_configure
79 +}
80 +
81 +src_install(){
82 + cmake-utils_src_install
83 + doman man/*.1 liblxqt-config-cursor/man/*.1 lxqt-config-appearance/man/*.1
84 +}