Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: lxqt-base/lxqt-config/
Date: Sat, 02 Nov 2019 22:41:19
Message-Id: 1572734459.6f5210f4ebcb659835a0aa48d78c78044f303caa.asturm@gentoo
1 commit: 6f5210f4ebcb659835a0aa48d78c78044f303caa
2 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 2 21:17:31 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 2 22:40:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f5210f4
7
8 lxqt-base/lxqt-config: drop 0.14.1 (r0)
9
10 Package-Manager: Portage-2.3.78, Repoman-2.3.17
11 Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 lxqt-base/lxqt-config/lxqt-config-0.14.1.ebuild | 73 -------------------------
15 1 file changed, 73 deletions(-)
16
17 diff --git a/lxqt-base/lxqt-config/lxqt-config-0.14.1.ebuild b/lxqt-base/lxqt-config/lxqt-config-0.14.1.ebuild
18 deleted file mode 100644
19 index 9ca987137e5..00000000000
20 --- a/lxqt-base/lxqt-config/lxqt-config-0.14.1.ebuild
21 +++ /dev/null
22 @@ -1,73 +0,0 @@
23 -# Copyright 1999-2019 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=7
27 -
28 -inherit cmake-utils xdg-utils
29 -
30 -DESCRIPTION="LXQt system configuration control center"
31 -HOMEPAGE="https://lxqt.org/"
32 -
33 -if [[ ${PV} = *9999* ]]; then
34 - inherit git-r3
35 - EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
36 -else
37 - SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
38 - KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
39 -fi
40 -
41 -LICENSE="GPL-2 GPL-2+ GPL-3 LGPL-2 LGPL-2+ LGPL-2.1+ WTFPL-2"
42 -SLOT="0"
43 -IUSE="+monitor +touchpad"
44 -
45 -BDEPEND="
46 - dev-qt/linguist-tools:5
47 - >=dev-util/lxqt-build-tools-0.6.0
48 -"
49 -DEPEND="
50 - >=dev-libs/libqtxdg-3.3.1
51 - dev-qt/qtcore:5
52 - dev-qt/qtdbus:5
53 - dev-qt/qtgui:5
54 - dev-qt/qtwidgets:5
55 - dev-qt/qtx11extras:5
56 - dev-qt/qtxml:5
57 - kde-frameworks/kwindowsystem:5
58 - =lxqt-base/liblxqt-$(ver_cut 1-2)*
59 - sys-libs/zlib:=
60 - x11-apps/setxkbmap
61 - x11-libs/libxcb:=
62 - x11-libs/libX11
63 - x11-libs/libXcursor
64 - x11-libs/libXfixes
65 - monitor? ( kde-plasma/libkscreen:5= )
66 - touchpad? (
67 - virtual/libudev
68 - x11-drivers/xf86-input-libinput
69 - x11-libs/libXext
70 - )
71 -"
72 -RDEPEND="${DEPEND}
73 - !lxqt-base/lxqt-l10n
74 -"
75 -
76 -src_configure() {
77 - local mycmakeargs=(
78 - -DWITH_MONITOR="$(usex monitor)"
79 - -DWITH_TOUCHPAD="$(usex touchpad)"
80 - )
81 - cmake-utils_src_configure
82 -}
83 -
84 -src_install() {
85 - cmake-utils_src_install
86 - doman man/*.1 liblxqt-config-cursor/man/*.1 lxqt-config-appearance/man/*.1
87 -}
88 -
89 -pkg_postinst() {
90 - xdg_icon_cache_update
91 -}
92 -
93 -pkg_postrm() {
94 - xdg_icon_cache_update
95 -}