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 88D8815801B for ; Tue, 29 Aug 2023 06:10:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 841A32BC014; Tue, 29 Aug 2023 06:10:21 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B148F2BC02B for ; Tue, 29 Aug 2023 06:10:20 +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 A96BF3408DD for ; Tue, 29 Aug 2023 06:10:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 179C610CF for ; Tue, 29 Aug 2023 06:10:18 +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: <1693289294.e9253da60015c8bbd2e995d9d886f93d24d298ac.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/geolith-jg/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/geolith-jg/Manifest games-emulation/geolith-jg/geolith-jg-0.1.0.ebuild games-emulation/geolith-jg/geolith-jg-9999.ebuild games-emulation/geolith-jg/metadata.xml X-VCS-Directories: games-emulation/geolith-jg/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e9253da60015c8bbd2e995d9d886f93d24d298ac X-VCS-Branch: master Date: Tue, 29 Aug 2023 06:10:18 +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: ce524975-540c-426a-8f21-5877f1c96d9d X-Archives-Hash: 09492d81748820b05cc3081c83c38423 commit: e9253da60015c8bbd2e995d9d886f93d24d298ac Author: orbea riseup net> AuthorDate: Mon Aug 7 21:21:17 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Aug 29 06:08:14 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9253da6 games-emulation/geolith-jg: new package, add 0.1.0, 9999 Closes: https://bugs.gentoo.org/912234 Signed-off-by: orbea riseup.net> Signed-off-by: Sam James gentoo.org> games-emulation/geolith-jg/Manifest | 1 + games-emulation/geolith-jg/geolith-jg-0.1.0.ebuild | 51 ++++++++++++++++++++++ games-emulation/geolith-jg/geolith-jg-9999.ebuild | 51 ++++++++++++++++++++++ games-emulation/geolith-jg/metadata.xml | 23 ++++++++++ 4 files changed, 126 insertions(+) diff --git a/games-emulation/geolith-jg/Manifest b/games-emulation/geolith-jg/Manifest new file mode 100644 index 000000000000..6def4d891bdb --- /dev/null +++ b/games-emulation/geolith-jg/Manifest @@ -0,0 +1 @@ +DIST geolith-0.1.0.tar.bz2 245785 BLAKE2B a1a541bdf32da722a095282b4b0f41f6c4d27c9450615842c99a080a61d60c189b0a769812704d30ff0d20ccfbf5c950f01131bed7694dbd5e5814b73390c272 SHA512 94112de9e6f33593365559f275f3d2bcf759346c706c1608e010d60987c4e2337b50dce980a144c25593fe4a0bc4880d9bd955355f2ceed710ab39afcad4e916 diff --git a/games-emulation/geolith-jg/geolith-jg-0.1.0.ebuild b/games-emulation/geolith-jg/geolith-jg-0.1.0.ebuild new file mode 100644 index 000000000000..df45d534adcc --- /dev/null +++ b/games-emulation/geolith-jg/geolith-jg-0.1.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +MY_PN=${PN%-*} +MY_P=${MY_PN}-${PV} +DESCRIPTION="Jolly Good Neo Geo AES/MVS Emulator" +HOMEPAGE="https://gitlab.com/jgemu/geolith" +if [[ "${PV}" == *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/jgemu/${MY_PN}.git" +else + SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2" + S="${WORKDIR}/${MY_P}" + KEYWORDS="~amd64" +fi + +LICENSE="BSD MIT" +SLOT="1" + +DEPEND=" + dev-libs/miniz + media-libs/jg:1= + media-libs/speexdsp +" +RDEPEND=" + ${DEPEND} + games-emulation/jgrf +" +BDEPEND=" + virtual/pkgconfig +" + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + PKG_CONFIG="$(tc-getPKG_CONFIG)" \ + USE_EXTERNAL_MINIZ=1 +} + +src_install() { + emake install \ + DESTDIR="${D}" \ + PREFIX="${EPREFIX}"/usr \ + DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \ + LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ + USE_EXTERNAL_MINIZ=1 +} diff --git a/games-emulation/geolith-jg/geolith-jg-9999.ebuild b/games-emulation/geolith-jg/geolith-jg-9999.ebuild new file mode 100644 index 000000000000..df45d534adcc --- /dev/null +++ b/games-emulation/geolith-jg/geolith-jg-9999.ebuild @@ -0,0 +1,51 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +MY_PN=${PN%-*} +MY_P=${MY_PN}-${PV} +DESCRIPTION="Jolly Good Neo Geo AES/MVS Emulator" +HOMEPAGE="https://gitlab.com/jgemu/geolith" +if [[ "${PV}" == *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/jgemu/${MY_PN}.git" +else + SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2" + S="${WORKDIR}/${MY_P}" + KEYWORDS="~amd64" +fi + +LICENSE="BSD MIT" +SLOT="1" + +DEPEND=" + dev-libs/miniz + media-libs/jg:1= + media-libs/speexdsp +" +RDEPEND=" + ${DEPEND} + games-emulation/jgrf +" +BDEPEND=" + virtual/pkgconfig +" + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + PKG_CONFIG="$(tc-getPKG_CONFIG)" \ + USE_EXTERNAL_MINIZ=1 +} + +src_install() { + emake install \ + DESTDIR="${D}" \ + PREFIX="${EPREFIX}"/usr \ + DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \ + LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ + USE_EXTERNAL_MINIZ=1 +} diff --git a/games-emulation/geolith-jg/metadata.xml b/games-emulation/geolith-jg/metadata.xml new file mode 100644 index 000000000000..8ba92a8ef70b --- /dev/null +++ b/games-emulation/geolith-jg/metadata.xml @@ -0,0 +1,23 @@ + + + + + orbea@riseup.net + orbea + + + proxy-maint@gentoo.org + Proxy Maintainers + + + Geolith is a highly accurate emulator for the Neo Geo AES and MVS. + This project began life as a fork of GnGEO 0.8.1. All original + components were removed or replaced as the project progressed, with + the resulting codebase being entirely new, with all new code written + under the BSD 3-Clause license. + + + https://gitlab.com/jgemu/geolith/-/issues + jgemu/geolith + +