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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 32FDE158094 for ; Tue, 4 Oct 2022 07:09:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80135E0921; Tue, 4 Oct 2022 07:09:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 65DE8E0921 for ; Tue, 4 Oct 2022 07:09:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 708C4340E31 for ; Tue, 4 Oct 2022 07:09:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C42DC607 for ; Tue, 4 Oct 2022 07:09:41 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1664867366.76df52808527b029935ffd66511d4adda0c2e46d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/gBhed/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-misc/gBhed/gBhed-0.17-r1.ebuild games-misc/gBhed/gBhed-0.17-r2.ebuild X-VCS-Directories: games-misc/gBhed/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 76df52808527b029935ffd66511d4adda0c2e46d X-VCS-Branch: master Date: Tue, 4 Oct 2022 07:09:41 +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: 5c2ae85f-e2b4-406c-9cea-3732410a2722 X-Archives-Hash: c43908f17b98d55244f44043fa0e9755 commit: 76df52808527b029935ffd66511d4adda0c2e46d Author: Sam James gentoo org> AuthorDate: Tue Oct 4 07:09:01 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Oct 4 07:09:26 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76df5280 games-misc/gBhed: EAPI 8, fix configure issues with Clang 16 Signed-off-by: Sam James gentoo.org> .../gBhed/{gBhed-0.17-r1.ebuild => gBhed-0.17-r2.ebuild} | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/games-misc/gBhed/gBhed-0.17-r1.ebuild b/games-misc/gBhed/gBhed-0.17-r2.ebuild similarity index 80% rename from games-misc/gBhed/gBhed-0.17-r1.ebuild rename to games-misc/gBhed/gBhed-0.17-r2.ebuild index 30e33c085ccd..2ea96ea67eb6 100644 --- a/games-misc/gBhed/gBhed-0.17-r1.ebuild +++ b/games-misc/gBhed/gBhed-0.17-r2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit desktop +inherit autotools desktop DESCRIPTION="An Al Bhed translator" HOMEPAGE="http://liquidchile.net/software/gbhed/" @@ -12,21 +12,23 @@ SRC_URI="http://liquidchile.net/software/gbhed/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="gtk" +IUSE="gui" -DEPEND="gtk? ( x11-libs/gtk+:2 )" +DEPEND="gui? ( x11-libs/gtk+:2 )" RDEPEND="${DEPEND}" src_prepare() { default sed -i 's/19/32/' src/gui/translation_fork.c || die + + eautoreconf } src_configure() { econf \ --datadir=/usr/share/${PN} \ - $(use_enable gtk gbhed) + $(use_enable gui gbhed) } src_install() { @@ -34,7 +36,7 @@ src_install() { dodoc AUTHORS ChangeLog NEWS README THANKS TODO doman doc/abtranslate.1 - if use gtk ; then + if use gui ; then insinto /usr/share/${PN}/pixmaps doins pixmaps/*.{jpg,png,xpm}