Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/obconf-qt/
Date: Wed, 20 May 2020 23:29:05
Message-Id: 1590017312.cd7ef340ac156ab805a52cd7d0996d0842876417.asturm@gentoo
1 commit: cd7ef340ac156ab805a52cd7d0996d0842876417
2 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 29 23:34:05 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed May 20 23:28:32 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd7ef340
7
8 x11-misc/obconf-qt: add version 0.15.0
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 x11-misc/obconf-qt/Manifest | 1 +
15 x11-misc/obconf-qt/obconf-qt-0.15.0.ebuild | 49 ++++++++++++++++++++++++++++++
16 2 files changed, 50 insertions(+)
17
18 diff --git a/x11-misc/obconf-qt/Manifest b/x11-misc/obconf-qt/Manifest
19 index 908d81f98dc..53e04af4d9c 100644
20 --- a/x11-misc/obconf-qt/Manifest
21 +++ b/x11-misc/obconf-qt/Manifest
22 @@ -1 +1,2 @@
23 DIST obconf-qt-0.14.1.tar.xz 97032 BLAKE2B 8bfe93325d37bdcca40b38f99f635cddf39ad1781e694f002676f6ff6fd0d6c708908ca458a051f63509f572b247b4de5778a1451e763c4372038ef99a1594d7 SHA512 7ae4feb8daa3853f768e9cb613fc99046f98744e03efc673ee9e5cb3d4ffa2861f2a9f762acd9c54ef2b9ca3f288d2901cdcce5c09db84689dd186006b8e26ed
24 +DIST obconf-qt-0.15.0.tar.xz 99976 BLAKE2B 7c7aede61cfc7a26c56de7e6ab49410dc82f4f9fb4f293fa0f0896f1b14cff63d34d00dd56347ec8daca375e226fed4ebb58c633061129708fd5107daa97d074 SHA512 a723dcd3b409afc7b16572d293cbf0543e00a7177a9819e2374632c00c765de74896429f6e19a54fcee83e20ce2e0876f857447c374db2f4f925dec92be71279
25
26 diff --git a/x11-misc/obconf-qt/obconf-qt-0.15.0.ebuild b/x11-misc/obconf-qt/obconf-qt-0.15.0.ebuild
27 new file mode 100644
28 index 00000000000..4979e3f9df3
29 --- /dev/null
30 +++ b/x11-misc/obconf-qt/obconf-qt-0.15.0.ebuild
31 @@ -0,0 +1,49 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit cmake xdg-utils
38 +
39 +DESCRIPTION="Qt GUI Openbox Configuration Tool"
40 +HOMEPAGE="https://lxqt.github.io/"
41 +
42 +if [[ ${PV} = *9999* ]]; then
43 + inherit git-r3
44 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
45 +else
46 + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz"
47 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
48 +fi
49 +
50 +LICENSE="GPL-2 GPL-2+"
51 +SLOT="0"
52 +
53 +BDEPEND="
54 + dev-qt/linguist-tools:5
55 + >=dev-util/lxqt-build-tools-0.7.0
56 + virtual/pkgconfig
57 +"
58 +DEPEND="
59 + dev-libs/glib:2
60 + dev-qt/qtcore:5
61 + dev-qt/qtgui:5
62 + dev-qt/qtwidgets:5
63 + dev-qt/qtx11extras:5
64 + sys-apps/sed
65 + x11-wm/openbox:3
66 + x11-libs/libX11
67 +"
68 +RDEPEND="${DEPEND}
69 + !lxqt-base/lxqt-l10n
70 +"
71 +
72 +pkg_postinst() {
73 + xdg_desktop_database_update
74 + xdg_icon_cache_update
75 +}
76 +
77 +pkg_postrm() {
78 + xdg_desktop_database_update
79 + xdg_icon_cache_update
80 +}