From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5D4F1138350 for ; Thu, 30 Apr 2020 18:38:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCE54E09D9; Thu, 30 Apr 2020 18:37:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C35C7E09CF for ; Thu, 30 Apr 2020 18:37:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B024034E079 for ; Thu, 30 Apr 2020 18:37:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 980A61EB for ; Thu, 30 Apr 2020 18:37:20 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1588270696.967fc550f9441189e7f8d6eb5415e3460195c5fe.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/tomoe-gtk/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/tomoe-gtk/tomoe-gtk-0.6.0-r6.ebuild X-VCS-Directories: app-i18n/tomoe-gtk/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 967fc550f9441189e7f8d6eb5415e3460195c5fe X-VCS-Branch: master Date: Thu, 30 Apr 2020 18:37:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: feef4a22-f6aa-45db-aedb-25dde78f6e6b X-Archives-Hash: 7d36adebd8622996cad75921c38544c9 commit: 967fc550f9441189e7f8d6eb5415e3460195c5fe Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Apr 30 10:56:23 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Apr 30 18:18:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=967fc550 app-i18n/tomoe-gtk: Drop USE python Bug: https://bugs.gentoo.org/695012 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> app-i18n/tomoe-gtk/tomoe-gtk-0.6.0-r6.ebuild | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) 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 new file mode 100644 index 00000000000..d5d63f1ff2b --- /dev/null +++ b/app-i18n/tomoe-gtk/tomoe-gtk-0.6.0-r6.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +DESCRIPTION="Tomoe GTK+ interface widget library" +HOMEPAGE="http://tomoe.osdn.jp/" +SRC_URI="mirror://sourceforge/tomoe/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="static-libs" + +RDEPEND="app-i18n/tomoe + x11-libs/gtk+:2" +DEPEND="${RDEPEND} + dev-util/gtk-doc-am + sys-devel/gettext + virtual/pkgconfig" + +src_configure() { + econf \ + $(use_enable static-libs static) \ + --without-python \ + --without-gucharmap +} + +src_install() { + default + find "${D}" -name '*.la' -type f -delete || die +}