Gentoo Archives: gentoo-commits

From: Jimi Huotari <chiitoo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:master commit in: lxqt-base/lxqt-runner/, lxqt-base/lxqt-meta/, lxqt-base/lxqt-sudo/, ...
Date: Mon, 18 Feb 2019 23:29:59
Message-Id: 1550532314.52686c46afd601da0e7b74b9d96a0e84b3b81dec.chiitoo@gentoo
1 commit: 52686c46afd601da0e7b74b9d96a0e84b3b81dec
2 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 18 22:27:10 2019 +0000
4 Commit: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 18 23:25:14 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=52686c46
7
8 lxqt-base: add 0.14.0 for testing
9
10 Bug: https://bugs.gentoo.org/676798
11 Package-Manager: Portage-2.3.61, Repoman-2.3.12
12 Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>
13
14 lxqt-base/liblxqt/Manifest | 1 +
15 lxqt-base/liblxqt/liblxqt-0.14.0.ebuild | 41 ++++++++
16 lxqt-base/lxqt-about/Manifest | 1 +
17 lxqt-base/lxqt-about/lxqt-about-0.14.0.ebuild | 31 ++++++
18 lxqt-base/lxqt-admin/Manifest | 1 +
19 lxqt-base/lxqt-admin/lxqt-admin-0.14.0.ebuild | 32 ++++++
20 lxqt-base/lxqt-config/Manifest | 1 +
21 lxqt-base/lxqt-config/lxqt-config-0.14.0.ebuild | 72 ++++++++++++++
22 lxqt-base/lxqt-globalkeys/Manifest | 1 +
23 .../lxqt-globalkeys/lxqt-globalkeys-0.14.0.ebuild | 39 ++++++++
24 lxqt-base/lxqt-meta/lxqt-meta-0.14.0.ebuild | 55 +++++++++++
25 lxqt-base/lxqt-notificationd/Manifest | 1 +
26 .../lxqt-notificationd-0.14.0.ebuild | 36 +++++++
27 lxqt-base/lxqt-openssh-askpass/Manifest | 1 +
28 .../lxqt-openssh-askpass-0.14.0.ebuild | 41 ++++++++
29 lxqt-base/lxqt-panel/Manifest | 1 +
30 lxqt-base/lxqt-panel/lxqt-panel-0.14.0.ebuild | 110 +++++++++++++++++++++
31 lxqt-base/lxqt-policykit/Manifest | 1 +
32 .../lxqt-policykit/lxqt-policykit-0.14.0.ebuild | 42 ++++++++
33 lxqt-base/lxqt-powermanagement/Manifest | 1 +
34 .../lxqt-powermanagement-0.14.0.ebuild | 41 ++++++++
35 lxqt-base/lxqt-qtplugin/Manifest | 1 +
36 .../lxqt-qtplugin/lxqt-qtplugin-0.14.0.ebuild | 36 +++++++
37 lxqt-base/lxqt-runner/Manifest | 1 +
38 lxqt-base/lxqt-runner/lxqt-runner-0.14.0.ebuild | 47 +++++++++
39 lxqt-base/lxqt-session/Manifest | 1 +
40 lxqt-base/lxqt-session/lxqt-session-0.14.0.ebuild | 60 +++++++++++
41 lxqt-base/lxqt-sudo/Manifest | 1 +
42 lxqt-base/lxqt-sudo/lxqt-sudo-0.14.0.ebuild | 31 ++++++
43 29 files changed, 728 insertions(+)
44
45 diff --git a/lxqt-base/liblxqt/Manifest b/lxqt-base/liblxqt/Manifest
46 new file mode 100644
47 index 00000000..939ee047
48 --- /dev/null
49 +++ b/lxqt-base/liblxqt/Manifest
50 @@ -0,0 +1 @@
51 +DIST liblxqt-0.14.0.tar.xz 81424 BLAKE2B cf2be9d774d27a7c8bf11f73d42c51dea0df2f6f3a316802059f0342f4ba15c791162195f1f6c038c4fd19c22852f17eaeeb8814b2644b84dd7cfdfcd9c63026 SHA512 ed4009ae7a0f556c84131083946a62a8a91d66c12a75902e2841b7a8388cd93cd493e42674bbf34fe5d20f8d86685ad2ad197c0b2222d7a08558bc8a2946ca86
52
53 diff --git a/lxqt-base/liblxqt/liblxqt-0.14.0.ebuild b/lxqt-base/liblxqt/liblxqt-0.14.0.ebuild
54 new file mode 100644
55 index 00000000..1716d11d
56 --- /dev/null
57 +++ b/lxqt-base/liblxqt/liblxqt-0.14.0.ebuild
58 @@ -0,0 +1,41 @@
59 +# Copyright 1999-2019 Gentoo Authors
60 +# Distributed under the terms of the GNU General Public License v2
61 +
62 +EAPI=7
63 +
64 +inherit cmake-utils
65 +
66 +DESCRIPTION="Common base library for the LXQt desktop environment"
67 +HOMEPAGE="https://lxqt.org/"
68 +
69 +if [[ ${PV} = *9999* ]]; then
70 + inherit git-r3
71 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
72 +else
73 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
74 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
75 +fi
76 +
77 +LICENSE="LGPL-2.1+ BSD"
78 +SLOT="0/$(ver_cut 1-2)"
79 +
80 +BDEPEND="
81 + dev-qt/linguist-tools:5
82 + >=dev-util/lxqt-build-tools-0.6.0
83 +"
84 +RDEPEND="
85 + >=dev-libs/libqtxdg-3.3.0
86 + dev-qt/qtcore:5
87 + dev-qt/qtdbus:5
88 + dev-qt/qtgui:5
89 + dev-qt/qtwidgets:5
90 + dev-qt/qtx11extras:5
91 + dev-qt/qtxml:5
92 + kde-frameworks/kwindowsystem:5[X]
93 + x11-libs/libX11
94 + x11-libs/libXScrnSaver
95 + !lxqt-base/lxqt-l10n
96 +"
97 +DEPEND="${RDEPEND}
98 + sys-auth/polkit-qt
99 +"
100
101 diff --git a/lxqt-base/lxqt-about/Manifest b/lxqt-base/lxqt-about/Manifest
102 new file mode 100644
103 index 00000000..9289dc8a
104 --- /dev/null
105 +++ b/lxqt-base/lxqt-about/Manifest
106 @@ -0,0 +1 @@
107 +DIST lxqt-about-0.14.0.tar.xz 35908 BLAKE2B c01cfa387f255954309ec4d9f71ed59428a0139a2de7cc06b015fc8b23ae79e6386fcc49d494c6106850c82b0a2e57afbb3203b2604488779ce6ed219a95be28 SHA512 a2dac75f34c91b24de0d6783cb8441caa81a4918a92901b29056fcc7aeb91a6f3209874ab278f801e5359b3894b5e359d7e743126187e7e0383d470680acb010
108
109 diff --git a/lxqt-base/lxqt-about/lxqt-about-0.14.0.ebuild b/lxqt-base/lxqt-about/lxqt-about-0.14.0.ebuild
110 new file mode 100644
111 index 00000000..024038f6
112 --- /dev/null
113 +++ b/lxqt-base/lxqt-about/lxqt-about-0.14.0.ebuild
114 @@ -0,0 +1,31 @@
115 +# Copyright 1999-2019 Gentoo Authors
116 +# Distributed under the terms of the GNU General Public License v2
117 +
118 +EAPI=7
119 +
120 +inherit cmake-utils
121 +
122 +DESCRIPTION="LXQt about dialog"
123 +HOMEPAGE="https://lxqt.org/"
124 +
125 +if [[ ${PV} = *9999* ]]; then
126 + inherit git-r3
127 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
128 +else
129 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
130 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
131 +fi
132 +
133 +LICENSE="LGPL-2.1+"
134 +SLOT="0"
135 +
136 +BDEPEND=">=dev-util/lxqt-build-tools-0.6.0"
137 +RDEPEND="
138 + >=dev-libs/libqtxdg-3.3.0
139 + dev-qt/qtcore:5
140 + dev-qt/qtgui:5
141 + dev-qt/qtwidgets:5
142 + =lxqt-base/liblxqt-$(ver_cut 1-2)*
143 + !lxqt-base/lxqt-l10n
144 +"
145 +DEPEND="${RDEPEND}"
146
147 diff --git a/lxqt-base/lxqt-admin/Manifest b/lxqt-base/lxqt-admin/Manifest
148 new file mode 100644
149 index 00000000..69675098
150 --- /dev/null
151 +++ b/lxqt-base/lxqt-admin/Manifest
152 @@ -0,0 +1 @@
153 +DIST lxqt-admin-0.14.0.tar.xz 139916 BLAKE2B 86f0d4668316571074920c9ba9b5e806a7e0a3685a8be9bf9cb03c139f10f70ed3277d41fe999b5d2aedafc2c777e6b98ff60bbe891c2fa467493cdd1f582dd0 SHA512 d5fcf91d3af94294f586e11bd43da03a6834314099a1d258b11153a8b86c4a87908eaeb68e5cb0b2cfa111bd6f82681680ac8f82298bbf781ffc1dd6e15ae392
154
155 diff --git a/lxqt-base/lxqt-admin/lxqt-admin-0.14.0.ebuild b/lxqt-base/lxqt-admin/lxqt-admin-0.14.0.ebuild
156 new file mode 100644
157 index 00000000..6675bd34
158 --- /dev/null
159 +++ b/lxqt-base/lxqt-admin/lxqt-admin-0.14.0.ebuild
160 @@ -0,0 +1,32 @@
161 +# Copyright 1999-2019 Gentoo Authors
162 +# Distributed under the terms of the GNU General Public License v2
163 +
164 +EAPI=7
165 +
166 +inherit cmake-utils
167 +
168 +DESCRIPTION="LXQt system administration tool"
169 +HOMEPAGE="https://lxqt.org/"
170 +
171 +if [[ ${PV} = *9999* ]]; then
172 + inherit git-r3
173 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
174 +else
175 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
176 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
177 +fi
178 +
179 +LICENSE="LGPL-2.1+"
180 +SLOT="0"
181 +
182 +BDEPEND=">=dev-util/lxqt-build-tools-0.6.0"
183 +RDEPEND="
184 + dev-qt/qtcore:5
185 + dev-qt/qtdbus:5
186 + dev-qt/qtgui:5
187 + dev-qt/qtwidgets:5
188 + =lxqt-base/liblxqt-$(ver_cut 1-2)*
189 + kde-frameworks/kwindowsystem:5
190 + !lxqt-base/lxqt-l10n
191 +"
192 +DEPEND="${RDEPEND}"
193
194 diff --git a/lxqt-base/lxqt-config/Manifest b/lxqt-base/lxqt-config/Manifest
195 new file mode 100644
196 index 00000000..88d94d05
197 --- /dev/null
198 +++ b/lxqt-base/lxqt-config/Manifest
199 @@ -0,0 +1 @@
200 +DIST lxqt-config-0.14.0.tar.xz 290464 BLAKE2B 687b905a74c70ec25b319d446f9009d9cd69ba8308d72ee4b503c243bba065c8b7cf0fef3facad42e2f65ce906e84e569647c6828d8ce0238acf535f73127789 SHA512 6b2139a4fc33940f0821c335b3ff316065133eec867256586643fabeb7e96c61be70932d16f6ec4b440e99d058b31394ddc4013a059b492925135aa6eae20650
201
202 diff --git a/lxqt-base/lxqt-config/lxqt-config-0.14.0.ebuild b/lxqt-base/lxqt-config/lxqt-config-0.14.0.ebuild
203 new file mode 100644
204 index 00000000..00ac0c9d
205 --- /dev/null
206 +++ b/lxqt-base/lxqt-config/lxqt-config-0.14.0.ebuild
207 @@ -0,0 +1,72 @@
208 +# Copyright 1999-2019 Gentoo Authors
209 +# Distributed under the terms of the GNU General Public License v2
210 +
211 +EAPI=7
212 +
213 +inherit cmake-utils gnome2-utils
214 +
215 +DESCRIPTION="LXQt system configuration control center"
216 +HOMEPAGE="https://lxqt.org/"
217 +
218 +if [[ ${PV} = *9999* ]]; then
219 + inherit git-r3
220 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
221 +else
222 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
223 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
224 +fi
225 +
226 +LICENSE="GPL-2 GPL-2+ GPL-3 LGPL-2 LGPL-2+ LGPL-2.1+ WTFPL-2"
227 +SLOT="0"
228 +IUSE="+monitor +touchpad"
229 +
230 +BDEPEND="
231 + dev-qt/linguist-tools:5
232 + >=dev-util/lxqt-build-tools-0.6.0
233 +"
234 +RDEPEND="
235 + >=dev-libs/libqtxdg-3.3.0
236 + dev-qt/qtcore:5
237 + dev-qt/qtdbus:5
238 + dev-qt/qtgui:5
239 + dev-qt/qtwidgets:5
240 + dev-qt/qtx11extras:5
241 + dev-qt/qtxml:5
242 + kde-frameworks/kwindowsystem:5
243 + =lxqt-base/liblxqt-$(ver_cut 1-2)*
244 + sys-libs/zlib:=
245 + x11-apps/setxkbmap
246 + x11-libs/libxcb:=
247 + x11-libs/libX11
248 + x11-libs/libXcursor
249 + x11-libs/libXfixes
250 + monitor? ( kde-plasma/libkscreen:5= )
251 + touchpad? (
252 + virtual/libudev
253 + x11-drivers/xf86-input-libinput
254 + x11-libs/libXext
255 + )
256 + !lxqt-base/lxqt-l10n
257 +"
258 +DEPEND="${DEPEND}"
259 +
260 +src_configure() {
261 + local mycmakeargs=(
262 + -DWITH_MONITOR="$(usex monitor)"
263 + -DWITH_TOUCHPAD="$(usex touchpad)"
264 + )
265 + cmake-utils_src_configure
266 +}
267 +
268 +src_install() {
269 + cmake-utils_src_install
270 + doman man/*.1 liblxqt-config-cursor/man/*.1 lxqt-config-appearance/man/*.1
271 +}
272 +
273 +pkg_postinst() {
274 + gnome2_icon_cache_update
275 +}
276 +
277 +pkg_postrm() {
278 + gnome2_icon_cache_update
279 +}
280
281 diff --git a/lxqt-base/lxqt-globalkeys/Manifest b/lxqt-base/lxqt-globalkeys/Manifest
282 new file mode 100644
283 index 00000000..5d99c498
284 --- /dev/null
285 +++ b/lxqt-base/lxqt-globalkeys/Manifest
286 @@ -0,0 +1 @@
287 +DIST lxqt-globalkeys-0.14.0.tar.xz 63176 BLAKE2B 76bb275e2870d19f0a2b910f37765aa285b42fca5e5c65da892f79d0415d1e9120e5243672099d08e948fb0eab261877a6bde9ea84241366fb3750a5188ef43e SHA512 2005e7f034e28eb295352825f95066163f2aac1f558066f765a6ab8692fd17b8750ac16f7ec3b25384410f0e41e0a6fe43d88f102d3e84dad44ae6f71eb62f87
288
289 diff --git a/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-0.14.0.ebuild b/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-0.14.0.ebuild
290 new file mode 100644
291 index 00000000..f542acae
292 --- /dev/null
293 +++ b/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-0.14.0.ebuild
294 @@ -0,0 +1,39 @@
295 +# Copyright 1999-2019 Gentoo Authors
296 +# Distributed under the terms of the GNU General Public License v2
297 +
298 +EAPI=7
299 +
300 +inherit cmake-utils
301 +
302 +DESCRIPTION="Daemon and library for global keyboard shortcuts registration"
303 +HOMEPAGE="https://lxqt.org/"
304 +
305 +if [[ ${PV} = *9999* ]]; then
306 + inherit git-r3
307 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
308 +else
309 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
310 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
311 +fi
312 +
313 +LICENSE="LGPL-2.1+"
314 +SLOT="0"
315 +
316 +BDEPEND="
317 + dev-qt/linguist-tools:5
318 + >=dev-util/lxqt-build-tools-0.6.0
319 +"
320 +RDEPEND="
321 + >=dev-libs/libqtxdg-3.3.0
322 + dev-qt/qtcore:5
323 + dev-qt/qtdbus:5
324 + dev-qt/qtgui:5
325 + dev-qt/qtwidgets:5
326 + dev-qt/qtx11extras:5
327 + dev-qt/qtxml:5
328 + =lxqt-base/liblxqt-$(ver_cut 1-2)*
329 + kde-frameworks/kwindowsystem:5
330 + x11-libs/libX11
331 + !lxqt-base/lxqt-l10n
332 +"
333 +DEPEND="${RDEPEND}"
334
335 diff --git a/lxqt-base/lxqt-meta/lxqt-meta-0.14.0.ebuild b/lxqt-base/lxqt-meta/lxqt-meta-0.14.0.ebuild
336 new file mode 100644
337 index 00000000..f113d4c4
338 --- /dev/null
339 +++ b/lxqt-base/lxqt-meta/lxqt-meta-0.14.0.ebuild
340 @@ -0,0 +1,55 @@
341 +# Copyright 1999-2019 Gentoo Authors
342 +# Distributed under the terms of the GNU General Public License v2
343 +
344 +EAPI=7
345 +
346 +DESCRIPTION="Meta ebuild for LXQt, the Lightweight Desktop Environment"
347 +HOMEPAGE="https://lxqt.org/"
348 +
349 +MY_PV="$(ver_cut 1-2)*"
350 +
351 +if [[ ${PV} = *9999* ]]; then
352 + KEYWORDS="-*"
353 +else
354 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
355 +fi
356 +
357 +LICENSE="metapackage"
358 +SLOT="0"
359 +
360 +IUSE="+about admin +filemanager lightdm lximage minimal
361 + +policykit powermanagement processviewer screenshot sddm
362 + ssh-askpass sudo terminal"
363 +
364 +# Note: we prefer kde-frameworks/oxygen-icons over other icon sets, as the initial
365 +# install expects oxygen icons, until the user specifies otherwise (bug 543380)
366 +RDEPEND="
367 + kde-frameworks/oxygen-icons
368 + >=lxde-base/lxmenu-data-0.1.5
369 + =lxqt-base/lxqt-config-${MY_PV}
370 + =lxqt-base/lxqt-globalkeys-${MY_PV}
371 + =lxqt-base/lxqt-notificationd-${MY_PV}
372 + =lxqt-base/lxqt-panel-${MY_PV}
373 + =lxqt-base/lxqt-qtplugin-${MY_PV}
374 + =lxqt-base/lxqt-runner-${MY_PV}
375 + =lxqt-base/lxqt-session-${MY_PV}
376 + virtual/ttf-fonts
377 + =x11-themes/lxqt-themes-${MY_PV}
378 + about? ( =lxqt-base/lxqt-about-${MY_PV} )
379 + admin? ( =lxqt-base/lxqt-admin-${MY_PV} )
380 + filemanager? ( =x11-misc/pcmanfm-qt-${MY_PV} )
381 + lightdm? ( x11-misc/lightdm )
382 + lximage? ( media-gfx/lximage-qt )
383 + !minimal? (
384 + x11-wm/openbox
385 + x11-misc/obconf-qt
386 + )
387 + policykit? ( =lxqt-base/lxqt-policykit-${MY_PV} )
388 + powermanagement? ( =lxqt-base/lxqt-powermanagement-${MY_PV} )
389 + processviewer? ( x11-misc/qps:0 )
390 + screenshot? ( x11-misc/screengrab:0 )
391 + sddm? ( >=x11-misc/sddm-0.11.0 )
392 + ssh-askpass? ( =lxqt-base/lxqt-openssh-askpass-${MY_PV} )
393 + sudo? ( =lxqt-base/lxqt-sudo-${MY_PV} )
394 + terminal? ( x11-terms/qterminal:0 )
395 +"
396
397 diff --git a/lxqt-base/lxqt-notificationd/Manifest b/lxqt-base/lxqt-notificationd/Manifest
398 new file mode 100644
399 index 00000000..0fd74e1f
400 --- /dev/null
401 +++ b/lxqt-base/lxqt-notificationd/Manifest
402 @@ -0,0 +1 @@
403 +DIST lxqt-notificationd-0.14.0.tar.xz 46608 BLAKE2B ec1e47135904c2ecfc2c703fdaeecbe655e6df1f6dc041136fc326d84f14e118d1710df7d96fbdaa882064e639936a5917f77b8fe47ae2de066aacb204beb1bb SHA512 b91f0fc159f979582d1483a020c27403157697232e15ac677ff725297f33a89e2df5d63b90bc3711bcf9c8fe1ad58793518ab116f4a9c47f8102dfa256fa4747
404
405 diff --git a/lxqt-base/lxqt-notificationd/lxqt-notificationd-0.14.0.ebuild b/lxqt-base/lxqt-notificationd/lxqt-notificationd-0.14.0.ebuild
406 new file mode 100644
407 index 00000000..c74e2d32
408 --- /dev/null
409 +++ b/lxqt-base/lxqt-notificationd/lxqt-notificationd-0.14.0.ebuild
410 @@ -0,0 +1,36 @@
411 +# Copyright 1999-2019 Gentoo Authors
412 +# Distributed under the terms of the GNU General Public License v2
413 +
414 +EAPI=7
415 +
416 +inherit cmake-utils
417 +
418 +DESCRIPTION="LXQt notification daemon and library"
419 +HOMEPAGE="https://lxqt.org/"
420 +
421 +if [[ ${PV} = *9999* ]]; then
422 + inherit git-r3
423 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
424 +else
425 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
426 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
427 +fi
428 +
429 +LICENSE="LGPL-2.1+"
430 +SLOT="0"
431 +
432 +BDEPEND="
433 + dev-qt/linguist-tools:5
434 + >=dev-util/lxqt-build-tools-0.6.0
435 +"
436 +RDEPEND="
437 + >=dev-libs/libqtxdg-3.3.0
438 + dev-qt/qtcore:5
439 + dev-qt/qtdbus:5
440 + dev-qt/qtgui:5
441 + dev-qt/qtwidgets:5
442 + kde-frameworks/kwindowsystem:5
443 + =lxqt-base/liblxqt-$(ver_cut 1-2)*
444 + !lxqt-base/lxqt-l10n
445 +"
446 +DEPEND="${RDEPEND}"
447
448 diff --git a/lxqt-base/lxqt-openssh-askpass/Manifest b/lxqt-base/lxqt-openssh-askpass/Manifest
449 new file mode 100644
450 index 00000000..271d7d04
451 --- /dev/null
452 +++ b/lxqt-base/lxqt-openssh-askpass/Manifest
453 @@ -0,0 +1 @@
454 +DIST lxqt-openssh-askpass-0.14.0.tar.xz 16812 BLAKE2B 814483eae6ec1889d8d47e8c86b9de4d10119e25e3de4335f528832d1dbe19afee3e9cedee85b9f2cae0301d674cd9ab695b9cedd7d3ae5690a53d0a38316371 SHA512 33cca606224fb4490261ae68134e5ae8a4561878b34f6f270bdb6c6b2727ecd8cd2aa3284599ac71eaa5a9fda0be491ed9ff224b65ecfe6af4a992a32740aca4
455
456 diff --git a/lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-0.14.0.ebuild b/lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-0.14.0.ebuild
457 new file mode 100644
458 index 00000000..333f665d
459 --- /dev/null
460 +++ b/lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-0.14.0.ebuild
461 @@ -0,0 +1,41 @@
462 +# Copyright 1999-2019 Gentoo Authors
463 +# Distributed under the terms of the GNU General Public License v2
464 +
465 +EAPI=7
466 +
467 +inherit cmake-utils
468 +
469 +DESCRIPTION="LXQt OpenSSH user password prompt tool"
470 +HOMEPAGE="https://lxqt.org/"
471 +
472 +if [[ ${PV} = *9999* ]]; then
473 + inherit git-r3
474 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
475 +else
476 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
477 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
478 +fi
479 +
480 +LICENSE="LGPL-2.1+"
481 +SLOT="0"
482 +
483 +BDEPEND="
484 + dev-qt/linguist-tools:5
485 + >=dev-util/lxqt-build-tools-0.6.0
486 +"
487 +RDEPEND="
488 + dev-qt/qtcore:5
489 + dev-qt/qtwidgets:5
490 + =lxqt-base/liblxqt-$(ver_cut 1-2)*
491 + !lxqt-base/lxqt-l10n
492 +"
493 +DEPEND="${RDEPEND}"
494 +
495 +src_install(){
496 + cmake-utils_src_install
497 + doman man/*.1
498 +
499 + echo "SSH_ASKPASS='${EPREFIX}/usr/bin/lxqt-openssh-askpass'" >> "${T}/99${PN}" \
500 + || die
501 + doenvd "${T}/99${PN}"
502 +}
503
504 diff --git a/lxqt-base/lxqt-panel/Manifest b/lxqt-base/lxqt-panel/Manifest
505 new file mode 100644
506 index 00000000..64f70921
507 --- /dev/null
508 +++ b/lxqt-base/lxqt-panel/Manifest
509 @@ -0,0 +1 @@
510 +DIST lxqt-panel-0.14.0.tar.xz 433380 BLAKE2B 2d4b90fd18a29eb768da906f7397687d844baec08163680e3df035cf6c2653be9dcc86b0d625dfe7af86bc5c729fda54287965bd600958ae9bbdcb6bda2b4964 SHA512 771383c2bade7f5928d2a206b7a148afd7427a574e875c3129135c8cc4b08a77f8ab1ce469e1b1ee1902d984c17605b62f2f7aacac2ca415c9021b314d18dfe3
511
512 diff --git a/lxqt-base/lxqt-panel/lxqt-panel-0.14.0.ebuild b/lxqt-base/lxqt-panel/lxqt-panel-0.14.0.ebuild
513 new file mode 100644
514 index 00000000..58238d2c
515 --- /dev/null
516 +++ b/lxqt-base/lxqt-panel/lxqt-panel-0.14.0.ebuild
517 @@ -0,0 +1,110 @@
518 +# Copyright 1999-2019 Gentoo Authors
519 +# Distributed under the terms of the GNU General Public License v2
520 +
521 +EAPI=7
522 +
523 +inherit cmake-utils
524 +
525 +DESCRIPTION="LXQt desktop panel and plugins"
526 +HOMEPAGE="https://lxqt.org/"
527 +
528 +MY_PV="$(ver_cut 1-2)*"
529 +
530 +if [[ ${PV} = *9999* ]]; then
531 + inherit git-r3
532 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
533 +else
534 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
535 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
536 +fi
537 +
538 +LICENSE="LGPL-2.1+"
539 +SLOT="0"
540 +IUSE="+alsa colorpicker cpuload +desktopswitch +directorymenu dom +kbindicator +mainmenu
541 + +mount networkmonitor pulseaudio +quicklaunch sensors +showdesktop
542 + +spacer statusnotifier sysstat +taskbar +tray +volume +worldclock"
543 +REQUIRED_USE="volume? ( || ( alsa pulseaudio ) )"
544 +
545 +BDEPEND="
546 + dev-qt/linguist-tools:5
547 + >=dev-util/lxqt-build-tools-0.6.0
548 + virtual/pkgconfig
549 +"
550 +RDEPEND="
551 + >=dev-libs/libqtxdg-3.3.0
552 + dev-qt/qtcore:5
553 + dev-qt/qtdbus:5
554 + dev-qt/qtgui:5
555 + dev-qt/qtsvg:5
556 + dev-qt/qtwidgets:5
557 + dev-qt/qtx11extras:5
558 + dev-qt/qtxml:5
559 + kde-frameworks/kwindowsystem:5[X]
560 + >=lxde-base/lxmenu-data-0.1.5
561 + >=lxde-base/menu-cache-1.1.0
562 + =lxqt-base/liblxqt-${MY_PV}
563 + =lxqt-base/lxqt-globalkeys-${MY_PV}
564 + x11-libs/libX11
565 + cpuload? ( sys-libs/libstatgrab )
566 + kbindicator? ( x11-libs/libxkbcommon )
567 + mount? ( kde-frameworks/solid:5 )
568 + networkmonitor? ( sys-libs/libstatgrab )
569 + sensors? ( sys-apps/lm_sensors )
570 + statusnotifier? ( dev-libs/libdbusmenu-qt[qt5(+)] )
571 + sysstat? ( >=lxqt-base/libsysstat-0.4.1 )
572 + tray? (
573 + x11-libs/libxcb:=
574 + x11-libs/libXcomposite
575 + x11-libs/libXdamage
576 + x11-libs/libXrender
577 + x11-libs/xcb-util
578 + )
579 + volume? (
580 + alsa? ( media-libs/alsa-lib )
581 + pulseaudio? (
582 + media-sound/pavucontrol-qt
583 + media-sound/pulseaudio
584 + )
585 + )
586 + !lxqt-base/lxqt-l10n
587 +"
588 +DEPEND="${RDEPEND}"
589 +
590 +src_configure() {
591 + local mycmakeargs=(
592 + # Plugins
593 + -DCOLORPICKER_PLUGIN=$(usex colorpicker)
594 + -DCPULOAD_PLUGIN=$(usex cpuload)
595 + -DDESKTOPSWITCH_PLUGIN=$(usex desktopswitch)
596 + -DDIRECTORYMENU_PLUGIN=$(usex directorymenu)
597 + -DDOM_PLUGIN=$(usex dom)
598 + -DKBINDICATOR_PLUGIN=$(usex kbindicator)
599 + -DMAINMENU_PLUGIN=$(usex mainmenu)
600 + -DMOUNT_PLUGIN=$(usex mount)
601 + -DNETWORKMONITOR_PLUGIN=$(usex networkmonitor)
602 + -DQUICKLAUNCH_PLUGIN=$(usex quicklaunch)
603 + -DSENSORS_PLUGIN=$(usex sensors)
604 + -DSHOWDESKTOP_PLUGIN=$(usex showdesktop)
605 + -DSPACER_PLUGIN=$(usex spacer)
606 + -DSTATUSNOTIFIER_PLUGIN=$(usex statusnotifier)
607 + -DSYSSTAT_PLUGIN=$(usex sysstat)
608 + -DTASKBAR_PLUGIN=$(usex taskbar)
609 + -DTRAY_PLUGIN=$(usex tray)
610 + -DVOLUME_PLUGIN=$(usex volume)
611 + -DWORLDCLOCK_PLUGIN=$(usex worldclock)
612 + )
613 +
614 + if use volume; then
615 + mycmakeargs+=(
616 + -DVOLUME_USE_ALSA=$(usex alsa)
617 + -DVOLUME_USE_PULSEAUDIO=$(usex pulseaudio)
618 + )
619 + fi
620 +
621 + cmake-utils_src_configure
622 +}
623 +
624 +src_install(){
625 + cmake-utils_src_install
626 + doman panel/man/*.1
627 +}
628
629 diff --git a/lxqt-base/lxqt-policykit/Manifest b/lxqt-base/lxqt-policykit/Manifest
630 new file mode 100644
631 index 00000000..cb75f48e
632 --- /dev/null
633 +++ b/lxqt-base/lxqt-policykit/Manifest
634 @@ -0,0 +1 @@
635 +DIST lxqt-policykit-0.14.0.tar.xz 37580 BLAKE2B d6a3a6fe4e007dd737a0b6d2791c01d9b64b26baaf76ffa2f7f37b4bba6d7c53727b57f86110b1cb7ab47cb8d04a3912e943b2e1e03037dbc757d88542b52d91 SHA512 d5dc85a70db2b041f4667b17b1c20b7e30d36b435a64eaef0c49577da1a7d981becdb9f94f135901affe1b4d1c0ac8f8fc180f3054472b0b043c9b9382015b42
636
637 diff --git a/lxqt-base/lxqt-policykit/lxqt-policykit-0.14.0.ebuild b/lxqt-base/lxqt-policykit/lxqt-policykit-0.14.0.ebuild
638 new file mode 100644
639 index 00000000..fa021b3f
640 --- /dev/null
641 +++ b/lxqt-base/lxqt-policykit/lxqt-policykit-0.14.0.ebuild
642 @@ -0,0 +1,42 @@
643 +# Copyright 1999-2019 Gentoo Authors
644 +# Distributed under the terms of the GNU General Public License v2
645 +
646 +EAPI=7
647 +
648 +inherit cmake-utils
649 +
650 +DESCRIPTION="LXQt PolKit authentication agent"
651 +HOMEPAGE="https://lxqt.org/"
652 +
653 +if [[ ${PV} = *9999* ]]; then
654 + inherit git-r3
655 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
656 +else
657 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
658 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
659 +fi
660 +
661 +LICENSE="LGPL-2.1+"
662 +SLOT="0"
663 +
664 +BDEPEND="
665 + dev-qt/linguist-tools:5
666 + >=dev-util/lxqt-build-tools-0.6.0
667 + virtual/pkgconfig
668 +"
669 +RDEPEND="
670 + dev-libs/glib:2
671 + >=dev-libs/libqtxdg-3.3.0
672 + dev-qt/qtcore:5
673 + dev-qt/qtgui:5
674 + dev-qt/qtwidgets:5
675 + =lxqt-base/liblxqt-$(ver_cut 1-2)*
676 + sys-auth/polkit-qt[qt5(+)]
677 + !lxqt-base/lxqt-l10n
678 +"
679 +DEPEND="${RDEPEND}"
680 +
681 +src_install(){
682 + cmake-utils_src_install
683 + doman man/*.1
684 +}
685
686 diff --git a/lxqt-base/lxqt-powermanagement/Manifest b/lxqt-base/lxqt-powermanagement/Manifest
687 new file mode 100644
688 index 00000000..e4258e3a
689 --- /dev/null
690 +++ b/lxqt-base/lxqt-powermanagement/Manifest
691 @@ -0,0 +1 @@
692 +DIST lxqt-powermanagement-0.14.0.tar.xz 60640 BLAKE2B 08d1bc2fa470179166c7d21675fcd065cac97599ad4852b2ac0f9dce63472131c5a55c283bdef46083cec20a5bd7fa55d0fcb6eb57f49abedf05aa95cdf4815d SHA512 a2a93f69a1c87e98a200fc4a8c9ffdc990ea1545ff3494948bf40cc2e80fe9b3260e25ffdacf7b5925c3c76f85acd67c79936fe1c2bcd56eb2a91f95451ee240
693
694 diff --git a/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.14.0.ebuild b/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.14.0.ebuild
695 new file mode 100644
696 index 00000000..1584d1e3
697 --- /dev/null
698 +++ b/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.14.0.ebuild
699 @@ -0,0 +1,41 @@
700 +# Copyright 1999-2019 Gentoo Authors
701 +# Distributed under the terms of the GNU General Public License v2
702 +
703 +EAPI=7
704 +
705 +inherit cmake-utils
706 +
707 +DESCRIPTION="LXQt daemon for power management and auto-suspend"
708 +HOMEPAGE="https://lxqt.org/"
709 +
710 +if [[ ${PV} = *9999* ]]; then
711 + inherit git-r3
712 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
713 +else
714 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
715 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
716 +fi
717 +
718 +LICENSE="LGPL-2.1+"
719 +SLOT="0"
720 +
721 +BDEPEND="
722 + dev-qt/linguist-tools:5
723 + >=dev-util/lxqt-build-tools-0.6.0
724 + virtual/pkgconfig
725 +"
726 +RDEPEND="
727 + >=dev-libs/libqtxdg-3.3.0
728 + dev-qt/qtcore:5
729 + dev-qt/qtdbus:5
730 + dev-qt/qtgui:5
731 + dev-qt/qtsvg:5
732 + dev-qt/qtwidgets:5
733 + dev-qt/qtx11extras:5
734 + kde-frameworks/kidletime:5
735 + kde-frameworks/solid:5
736 + =lxqt-base/liblxqt-$(ver_cut 1-2)*
737 + sys-power/upower
738 + !lxqt-base/lxqt-l10n
739 +"
740 +DEPEND="${RDEPEND}"
741
742 diff --git a/lxqt-base/lxqt-qtplugin/Manifest b/lxqt-base/lxqt-qtplugin/Manifest
743 new file mode 100644
744 index 00000000..d9acca89
745 --- /dev/null
746 +++ b/lxqt-base/lxqt-qtplugin/Manifest
747 @@ -0,0 +1 @@
748 +DIST lxqt-qtplugin-0.14.0.tar.xz 22336 BLAKE2B 8155722880cff279aa26676ed425a011b2259ba94bf92122c59643a0ac6dd89b2841bcbeeac26ac24ef1e351dcdbcabf339c4a2bcee2dac30f2f9298434f7294 SHA512 33188bc03ee48a9b6e3cc5823cdcb5c96dba0cda65da511fe603d952c5de24e292cb02208cf357b04718df90f98d53bf48eaf6793d70d043214e429f57ccf53c
749
750 diff --git a/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.14.0.ebuild b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.14.0.ebuild
751 new file mode 100644
752 index 00000000..94944c0f
753 --- /dev/null
754 +++ b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.14.0.ebuild
755 @@ -0,0 +1,36 @@
756 +# Copyright 1999-2019 Gentoo Authors
757 +# Distributed under the terms of the GNU General Public License v2
758 +
759 +EAPI=7
760 +
761 +inherit cmake-utils
762 +
763 +DESCRIPTION="LXQt system integration plugin for Qt"
764 +HOMEPAGE="https://lxqt.org/"
765 +
766 +if [[ ${PV} = *9999* ]]; then
767 + inherit git-r3
768 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
769 +else
770 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
771 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
772 +fi
773 +
774 +LICENSE="LGPL-2.1+"
775 +SLOT="0"
776 +
777 +BDEPEND="
778 + dev-qt/linguist-tools:5
779 + >=dev-util/lxqt-build-tools-0.6.0
780 +"
781 +RDEPEND="
782 + dev-libs/libdbusmenu-qt:=[qt5(+)]
783 + >=dev-libs/libqtxdg-3.3.0
784 + dev-qt/qtcore:5
785 + dev-qt/qtdbus:5
786 + dev-qt/qtgui:5=
787 + dev-qt/qtwidgets:5
788 + dev-qt/qtx11extras:5
789 + =x11-libs/libfm-qt-$(ver_cut 1-2)*
790 +"
791 +DEPEND="${RDEPEND}"
792
793 diff --git a/lxqt-base/lxqt-runner/Manifest b/lxqt-base/lxqt-runner/Manifest
794 new file mode 100644
795 index 00000000..45fa418e
796 --- /dev/null
797 +++ b/lxqt-base/lxqt-runner/Manifest
798 @@ -0,0 +1 @@
799 +DIST lxqt-runner-0.14.0.tar.xz 222944 BLAKE2B 1ad2c74c8dd5669197d6d88c90f87161fb8ae1d90979bdc0adc74373363c3b10b9533022d179014e6e2e6a822134f295d311c04eff8b9a98596d19fda6efc7cf SHA512 862af180efbfa9be699bec16c6ab72520546922947e20465759bb1194ae3014459672ecd201a58e9e770828e2558b80a68b719afb9a71d7cb292beb614568970
800
801 diff --git a/lxqt-base/lxqt-runner/lxqt-runner-0.14.0.ebuild b/lxqt-base/lxqt-runner/lxqt-runner-0.14.0.ebuild
802 new file mode 100644
803 index 00000000..de8e8b00
804 --- /dev/null
805 +++ b/lxqt-base/lxqt-runner/lxqt-runner-0.14.0.ebuild
806 @@ -0,0 +1,47 @@
807 +# Copyright 1999-2019 Gentoo Authors
808 +# Distributed under the terms of the GNU General Public License v2
809 +
810 +EAPI=7
811 +
812 +inherit cmake-utils
813 +
814 +DESCRIPTION="LXQt quick launcher"
815 +HOMEPAGE="https://lxqt.org/"
816 +
817 +MY_PV="$(ver_cut 1-2)*"
818 +
819 +if [[ ${PV} = *9999* ]]; then
820 + inherit git-r3
821 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
822 +else
823 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
824 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
825 +fi
826 +
827 +LICENSE="LGPL-2.1+"
828 +SLOT="0"
829 +
830 +BDEPEND="
831 + dev-qt/linguist-tools:5
832 + >=dev-util/lxqt-build-tools-0.6.0
833 + virtual/pkgconfig
834 +"
835 +RDEPEND="
836 + >=dev-cpp/muParser-2.2.3:=
837 + >=dev-libs/libqtxdg-3.3.0
838 + dev-qt/qtcore:5
839 + dev-qt/qtgui:5
840 + dev-qt/qtwidgets:5
841 + dev-qt/qtxml:5
842 + kde-frameworks/kwindowsystem:5
843 + >=lxde-base/menu-cache-0.5.1
844 + =lxqt-base/liblxqt-${MY_PV}
845 + =lxqt-base/lxqt-globalkeys-${MY_PV}
846 + !lxqt-base/lxqt-l10n
847 +"
848 +DEPEND="${RDEPEND}"
849 +
850 +src_install(){
851 + cmake-utils_src_install
852 + doman man/*.1
853 +}
854
855 diff --git a/lxqt-base/lxqt-session/Manifest b/lxqt-base/lxqt-session/Manifest
856 new file mode 100644
857 index 00000000..9848cdd3
858 --- /dev/null
859 +++ b/lxqt-base/lxqt-session/Manifest
860 @@ -0,0 +1 @@
861 +DIST lxqt-session-0.14.0.tar.xz 177752 BLAKE2B a0649e45565e2aa06dbc392f92334ce17421b4be9eb871b93976acb421ad1a25689a541332c86a6744e49e9e6a6556fdaf7bde67b1b55d9148b905afec96465a SHA512 583a6249734571624ecf51d23b4f7b01caa601e1e776f3acb8b8f4d884e714c1664b95fa18bb4c420fe7ad208e2ffac9d942fc2196945e3df0fd3cc2027f6138
862
863 diff --git a/lxqt-base/lxqt-session/lxqt-session-0.14.0.ebuild b/lxqt-base/lxqt-session/lxqt-session-0.14.0.ebuild
864 new file mode 100644
865 index 00000000..f55faed1
866 --- /dev/null
867 +++ b/lxqt-base/lxqt-session/lxqt-session-0.14.0.ebuild
868 @@ -0,0 +1,60 @@
869 +# Copyright 1999-2019 Gentoo Authors
870 +# Distributed under the terms of the GNU General Public License v2
871 +
872 +EAPI=7
873 +
874 +inherit cmake-utils
875 +
876 +DESCRIPTION="LXQT session manager"
877 +HOMEPAGE="https://lxqt.org/"
878 +
879 +MY_PV="$(ver_cut 1-2)*"
880 +
881 +if [[ ${PV} = *9999* ]]; then
882 + inherit git-r3
883 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
884 +else
885 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
886 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
887 +fi
888 +
889 +IUSE="+themes +udev"
890 +
891 +LICENSE="LGPL-2.1+"
892 +SLOT="0"
893 +
894 +BDEPEND="
895 + dev-qt/linguist-tools:5
896 + >=dev-util/lxqt-build-tools-0.6.0
897 +"
898 +RDEPEND="
899 + >=dev-libs/libqtxdg-3.3.0
900 + dev-qt/qtcore:5
901 + dev-qt/qtdbus:5
902 + dev-qt/qtgui:5
903 + dev-qt/qtwidgets:5
904 + dev-qt/qtx11extras:5
905 + kde-frameworks/kwindowsystem:5[X]
906 + =lxqt-base/liblxqt-${MY_PV}
907 + x11-libs/libX11
908 + x11-misc/xdg-user-dirs
909 + themes? ( =x11-themes/lxqt-themes-${MY_PV} )
910 + udev? ( virtual/libudev )
911 + !lxqt-base/lxqt-l10n
912 +"
913 +DEPEND="${RDEPEND}"
914 +
915 +src_configure() {
916 + local mycmakeargs=(
917 + -DWITH_LIBUDEV=$(usex udev)
918 + )
919 + cmake-utils_src_configure
920 +}
921 +
922 +src_install(){
923 + cmake-utils_src_install
924 + doman lxqt-config-session/man/*.1 lxqt-session/man/*.1
925 +
926 + echo XDG_CONFIG_DIRS=\"${EPREFIX}/usr/share\" >> 91lxqt-config-dir
927 + doenvd 91lxqt-config-dir
928 +}
929
930 diff --git a/lxqt-base/lxqt-sudo/Manifest b/lxqt-base/lxqt-sudo/Manifest
931 new file mode 100644
932 index 00000000..17f92ea3
933 --- /dev/null
934 +++ b/lxqt-base/lxqt-sudo/Manifest
935 @@ -0,0 +1 @@
936 +DIST lxqt-sudo-0.14.0.tar.xz 27684 BLAKE2B 344ebc284f8b3f51d1987e5262f558904409cd30aa0cda49c337aea348f44f10b2c400ed17d459aa9939e6d3dbc948318a6b0941de41fb81a0fb6d2691cf097e SHA512 06e8749dc11f48d6d76805fc2d93b04194287cb4d95c4640c80ca186f948d6b6585df5bab7d8b0fb0f23f4b07ffd057048afddddb820a3961d37bc1ce9cd3694
937
938 diff --git a/lxqt-base/lxqt-sudo/lxqt-sudo-0.14.0.ebuild b/lxqt-base/lxqt-sudo/lxqt-sudo-0.14.0.ebuild
939 new file mode 100644
940 index 00000000..90154671
941 --- /dev/null
942 +++ b/lxqt-base/lxqt-sudo/lxqt-sudo-0.14.0.ebuild
943 @@ -0,0 +1,31 @@
944 +# Copyright 1999-2019 Gentoo Authors
945 +# Distributed under the terms of the GNU General Public License v2
946 +
947 +EAPI=7
948 +
949 +inherit cmake-utils
950 +
951 +DESCRIPTION="LXQt GUI frontend for sudo"
952 +HOMEPAGE="https://lxqt.org/"
953 +
954 +if [[ ${PV} = *9999* ]]; then
955 + inherit git-r3
956 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
957 +else
958 + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
959 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
960 +fi
961 +
962 +LICENSE="LGPL-2.1+"
963 +SLOT="0"
964 +
965 +BDEPEND=">=dev-util/lxqt-build-tools-0.6.0"
966 +RDEPEND="
967 + app-admin/sudo
968 + >=dev-libs/libqtxdg-3.3.0
969 + dev-qt/qtcore:5
970 + dev-qt/qtwidgets:5
971 + =lxqt-base/liblxqt-$(ver_cut 1-2)*
972 + !lxqt-base/lxqt-l10n
973 +"
974 +DEPEND="${RDEPEND}"