Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/tomoe-gtk/
Date: Thu, 30 Apr 2020 18:38:00
Message-Id: 1588270696.967fc550f9441189e7f8d6eb5415e3460195c5fe.asturm@gentoo
1 commit: 967fc550f9441189e7f8d6eb5415e3460195c5fe
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 30 10:56:23 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 30 18:18:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=967fc550
7
8 app-i18n/tomoe-gtk: Drop USE python
9
10 Bug: https://bugs.gentoo.org/695012
11 Package-Manager: Portage-2.3.99, Repoman-2.3.22
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 app-i18n/tomoe-gtk/tomoe-gtk-0.6.0-r6.ebuild | 32 ++++++++++++++++++++++++++++
15 1 file changed, 32 insertions(+)
16
17 diff --git a/app-i18n/tomoe-gtk/tomoe-gtk-0.6.0-r6.ebuild b/app-i18n/tomoe-gtk/tomoe-gtk-0.6.0-r6.ebuild
18 new file mode 100644
19 index 00000000000..d5d63f1ff2b
20 --- /dev/null
21 +++ b/app-i18n/tomoe-gtk/tomoe-gtk-0.6.0-r6.ebuild
22 @@ -0,0 +1,32 @@
23 +# Copyright 1999-2020 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI="6"
27 +
28 +DESCRIPTION="Tomoe GTK+ interface widget library"
29 +HOMEPAGE="http://tomoe.osdn.jp/"
30 +SRC_URI="mirror://sourceforge/tomoe/${P}.tar.gz"
31 +
32 +LICENSE="LGPL-2.1"
33 +SLOT="0"
34 +KEYWORDS="amd64 x86"
35 +IUSE="static-libs"
36 +
37 +RDEPEND="app-i18n/tomoe
38 + x11-libs/gtk+:2"
39 +DEPEND="${RDEPEND}
40 + dev-util/gtk-doc-am
41 + sys-devel/gettext
42 + virtual/pkgconfig"
43 +
44 +src_configure() {
45 + econf \
46 + $(use_enable static-libs static) \
47 + --without-python \
48 + --without-gucharmap
49 +}
50 +
51 +src_install() {
52 + default
53 + find "${D}" -name '*.la' -type f -delete || die
54 +}