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 87EA2158099 for ; Fri, 24 Nov 2023 13:54:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C820D2BC056; Fri, 24 Nov 2023 13:54:28 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 844212BC056 for ; Fri, 24 Nov 2023 13:54:28 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C7F8A340831 for ; Fri, 24 Nov 2023 13:54:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33FE513C4 for ; Fri, 24 Nov 2023 13:54:26 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1700834043.8ca1b0e84701b8ef05f44317459352d7c10a0ed5.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/wxchtdecoder/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-util/wxchtdecoder/wxchtdecoder-1.5a-r2.ebuild X-VCS-Directories: games-util/wxchtdecoder/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 8ca1b0e84701b8ef05f44317459352d7c10a0ed5 X-VCS-Branch: master Date: Fri, 24 Nov 2023 13:54:26 +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: bc69fe8f-9858-4a94-b538-78b102fdd75a X-Archives-Hash: a871befa7c92407621e68d0745d9d571 commit: 8ca1b0e84701b8ef05f44317459352d7c10a0ed5 Author: Pacho Ramos gentoo org> AuthorDate: Fri Nov 24 13:30:10 2023 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Fri Nov 24 13:54:03 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ca1b0e8 games-util/wxchtdecoder: works with wxGTK 3.2 And install a proper menu entry Signed-off-by: Pacho Ramos gentoo.org> .../wxchtdecoder/wxchtdecoder-1.5a-r2.ebuild | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/games-util/wxchtdecoder/wxchtdecoder-1.5a-r2.ebuild b/games-util/wxchtdecoder/wxchtdecoder-1.5a-r2.ebuild new file mode 100644 index 000000000000..99400f1e5eea --- /dev/null +++ b/games-util/wxchtdecoder/wxchtdecoder-1.5a-r2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +WX_GTK_VER="3.2-gtk3" +inherit desktop wxwidgets + +DESCRIPTION="Program to decode .CHT files in Snes9x and ZSNES to plain text" +HOMEPAGE="https://games.technoplaza.net/chtdecoder/" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="x11-libs/wxGTK:${WX_GTK_VER}[X]" +DEPEND=${RDEPEND} + +PATCHES=( "${FILESDIR}"/${P}-wxgtk.patch ) + +src_configure() { + setup-wxwidgets + econf --with-wx-config="${WX_CONFIG}" +} + +src_install() { + dobin source/wxchtdecoder + dodoc docs/wxchtdecoder.txt + make_desktop_entry ${PN} wxCHTDecoder application-vnd.nintendo.snes.rom +}