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/
Date: Sat, 15 May 2021 11:30:10
Message-Id: 1621077827.035486d139bc58d324d3493b840b4387f9f679b4.asturm@gentoo
1 commit: 035486d139bc58d324d3493b840b4387f9f679b4
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 27 08:42:08 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat May 15 11:23:47 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=035486d1
7
8 x11-misc/obconf: Add 2.0.4_p20150213 GTK3-based snapshot
9
10 No release since 2013. No commit since 2015.
11
12 Bug: https://bugs.gentoo.org/562346
13 Package-Manager: Portage-3.0.17, Repoman-3.0.2
14 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
15
16 x11-misc/obconf/Manifest | 1 +
17 x11-misc/obconf/obconf-2.0.4_p20150213.ebuild | 48 +++++++++++++++++++++++++++
18 2 files changed, 49 insertions(+)
19
20 diff --git a/x11-misc/obconf/Manifest b/x11-misc/obconf/Manifest
21 index d3f8c0f552d..2c203ca2d16 100644
22 --- a/x11-misc/obconf/Manifest
23 +++ b/x11-misc/obconf/Manifest
24 @@ -1 +1,2 @@
25 DIST obconf-2.0.4.tar.gz 456523 BLAKE2B ef3b3e4664ccd1095f5e1cd468fa3d021cd469a641930309a41c7b1cf418b9d87b2d8f4420342363dc4781d8e3aca3e8ffc0b9aac0151a2399579c5ff0997cc8 SHA512 b8cf6f363fa8c2f1d21142a3f79687a72f683f564285b05751c822ddf7a421b09c3440cbc5b08eb09d151601c6ada835ff5cc940bf5abeec2210cca26b552294
26 +DIST obconf-2.0.4_p20150213.tar.gz 154638 BLAKE2B 9ff9d206b8f789d2c7bf68f6f959f34d19f368645bc4efb77b5a730a8f69db5309ddecc0afb09e7cd2f9cb2af4e705112f3365f43dfbe94c4ff523d8a7f0dff5 SHA512 987c97729b248e9d9fb4c82a131517ee8f31df5dd455b5b658730204c354bf17f7876c269c1d1ec6497ca360698a393c7275b9e7ada5b31abb75ed7b06092e30
27
28 diff --git a/x11-misc/obconf/obconf-2.0.4_p20150213.ebuild b/x11-misc/obconf/obconf-2.0.4_p20150213.ebuild
29 new file mode 100644
30 index 00000000000..b20d7f915a0
31 --- /dev/null
32 +++ b/x11-misc/obconf/obconf-2.0.4_p20150213.ebuild
33 @@ -0,0 +1,48 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +COMMIT=63ec47c5e295ad4f09d1df6d92afb7e10c3fec39
40 +inherit autotools xdg-utils
41 +
42 +DESCRIPTION="Tool for configuring the Openbox window manager"
43 +HOMEPAGE="http://openbox.org/wiki/ObConf:About"
44 +SRC_URI="http://git.openbox.org/?p=dana/obconf.git;a=snapshot;h=${COMMIT};sf=tgz -> ${P}.tar.gz"
45 +S="${WORKDIR}/${PN}-${COMMIT:0:7}"
46 +
47 +LICENSE="GPL-2"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-linux"
50 +IUSE="nls"
51 +
52 +RDEPEND="
53 + x11-libs/gdk-pixbuf:2
54 + x11-libs/gtk+:3
55 + x11-libs/startup-notification
56 + >=x11-wm/openbox-3.5.2
57 +"
58 +DEPEND="${RDEPEND}"
59 +BDEPEND="
60 + virtual/pkgconfig
61 + nls? ( sys-devel/gettext )
62 +"
63 +
64 +src_prepare() {
65 + default
66 + eautoreconf
67 +}
68 +
69 +src_configure() {
70 + econf $(use_enable nls)
71 +}
72 +
73 +pkg_postinst() {
74 + xdg_desktop_database_update
75 + xdg_mimeinfo_database_update
76 +}
77 +
78 +pkg_postrm() {
79 + xdg_desktop_database_update
80 + xdg_mimeinfo_database_update
81 +}