commit: 76c8a255351bf4e5096f1f40404021a464747e2b
Author: orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Mon Dec 23 21:41:06 2024 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Mon Feb 10 02:06:05 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76c8a255
games-emulation/mednafen-jg: drop 1.32.0
Signed-off-by: orbea <orbea <AT> riseup.net>
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
games-emulation/mednafen-jg/Manifest | 1 -
.../mednafen-jg/mednafen-jg-1.32.0.ebuild | 68 ----------------------
2 files changed, 69 deletions(-)
diff --git a/games-emulation/mednafen-jg/Manifest
b/games-emulation/mednafen-jg/Manifest
index 16df541909b1..6ea40f2cc825 100644
--- a/games-emulation/mednafen-jg/Manifest
+++ b/games-emulation/mednafen-jg/Manifest
@@ -1,2 +1 @@
-DIST mednafen-1.32.0.tar.bz2 4427616 BLAKE2B
71a210de8fc3de9169c1f839b942ccf83adeca66863868db4eaba1290c31eb874c7a941a19b5d7ae79464f505e785c5c45949f497b1ba5fc98449dcecad19b47
SHA512
9f4b4afa493c4f08c7c6d6867f58f267f60e1d9c7a341f187c8f7b048a894e532f507a484d2bf12e68156625388923e7091e555c43ef0dd5547e644c8a8c4fea
DIST mednafen-1.32.1.tar.bz2 4428510 BLAKE2B
b85ef506e9d0f76b08469f12dc1f57e0cdb789c9b36b50ad03ed1dbbc9640e2109a37f639acb5d9f7f8d17f97f9aca97700c75ffcfcd53c3a8098fb7f0d3d128
SHA512
1cbf88a3f95ead46cd4e106a701e7adefd54cd1869394e6e907f89370ba434b3999d8a5372e5f2ded43135716aed739fb5313f680687de20f1c4b8e74af54b60
diff --git a/games-emulation/mednafen-jg/mednafen-jg-1.32.0.ebuild
b/games-emulation/mednafen-jg/mednafen-jg-1.32.0.ebuild
deleted file mode 100644
index 20d7f90f9bd8..000000000000
--- a/games-emulation/mednafen-jg/mednafen-jg-1.32.0.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 2022-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools toolchain-funcs
-
-MY_PN=${PN%-*}
-MY_P=${MY_PN}-${PV}
-DESCRIPTION="Jolly Good Port of Mednafen"
-HOMEPAGE="https://gitlab.com/jgemu/mednafen"
-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 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-fi
-
-LICENSE="BSD GPL-2 GPL-2+ LGPL-2.1+ ZLIB"
-SLOT="1"
-IUSE="cpu_flags_x86_avx"
-
-DEPEND="
- app-arch/zstd
- dev-libs/lzo:2
- >=dev-libs/trio-1.17
- media-libs/flac
- media-libs/jg:1=
- sys-libs/zlib:=[minizip]
-"
-RDEPEND="
- ${DEPEND}
- games-emulation/jgrf
-"
-BDEPEND="
- virtual/pkgconfig
-"
-
-src_prepare() {
- default
-
- cd jollygood/conf || die
- eautoreconf
-}
-
-src_configure() {
- cd jollygood/conf || die
- econf $(use_enable cpu_flags_x86_avx avx)
-}
-
-src_compile() {
- emake -C jollygood \
- CC="$(tc-getCC)" \
- CXX="$(tc-getCXX)" \
- PKG_CONFIG="$(tc-getPKG_CONFIG)" \
- USE_EXTERNAL_TRIO=1
-}
-
-src_install() {
- emake -C jollygood install \
- DESTDIR="${D}" \
- PREFIX="${EPREFIX}"/usr \
- DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
- LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
- USE_EXTERNAL_TRIO=1
-}