public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ionen Wolkens" <ionen@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/mednafen/
Date: Sun, 12 May 2024 20:25:57 +0000 (UTC)	[thread overview]
Message-ID: <1715543815.717d620a6a6b99f57637aa4caa445f630b7241ea.ionen@gentoo> (raw)

commit:     717d620a6a6b99f57637aa4caa445f630b7241ea
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Sun May 12 19:56:55 2024 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun May 12 19:56:55 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=717d620a

games-emulation/mednafen: drop 1.29.0-r1

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-emulation/mednafen/Manifest                  |  1 -
 games-emulation/mednafen/mednafen-1.29.0-r1.ebuild | 80 ----------------------
 2 files changed, 81 deletions(-)

diff --git a/games-emulation/mednafen/Manifest b/games-emulation/mednafen/Manifest
index 7952500722a8..b60a316219a5 100644
--- a/games-emulation/mednafen/Manifest
+++ b/games-emulation/mednafen/Manifest
@@ -1,2 +1 @@
-DIST mednafen-1.29.0.tar.xz 3512784 BLAKE2B bea5ecfe00f97d1cf81eccfe4264d8fea666c9c8543449ca8c1e4e064f89a100f6bbe77b23d42d5d9c4a7e005792006d599852a201f1d95a756742bc58ecda81 SHA512 375f0fb4f12907faf56b4e9ecdc44c1655b0660a3773240fe3118f2b261e171479b8eb254299f899fc442b54041c941eab2a5f343aec559d9731c3e92cde0569
 DIST mednafen-1.32.1.tar.xz 3571236 BLAKE2B 1cbc184b180c51ebfbdc5e9979f1767a19c4125b0c0067f74f3b8800cccc4b04c577e4602143049e0a85628a8b50c9c69a52134838a15a9dd6d1ab293b5e5715 SHA512 5a99c62561823ba9a59d4dfd3b454f87989c83b873f61d8d25e44af7e8fbf25a7513d26c7566672538a62aac400281f611f2db943e88fe839cd05d088087f8d9

diff --git a/games-emulation/mednafen/mednafen-1.29.0-r1.ebuild b/games-emulation/mednafen/mednafen-1.29.0-r1.ebuild
deleted file mode 100644
index 773ebec0dd22..000000000000
--- a/games-emulation/mednafen/mednafen-1.29.0-r1.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools flag-o-matic pax-utils toolchain-funcs
-
-DESCRIPTION="Argument-driven multi-system emulator utilizing OpenGL and SDL"
-HOMEPAGE="https://mednafen.github.io/"
-SRC_URI="https://mednafen.github.io/releases/files/${P}.tar.xz"
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE="alsa cpu_flags_ppc_altivec flac jack"
-
-RDEPEND="
-	app-arch/zstd:=
-	dev-libs/lzo:2
-	dev-libs/trio
-	media-libs/libsdl2[joystick,opengl,video]
-	media-libs/tremor
-	media-sound/musepack-tools
-	sys-libs/zlib:=[minizip]
-	virtual/libintl
-	alsa? ( media-libs/alsa-lib )
-	flac? ( media-libs/flac:= )
-	jack? ( virtual/jack )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	sys-devel/gettext
-	virtual/pkgconfig"
-
-src_prepare() {
-	default
-
-	# don't let the build system mess with CFLAGS more than necessary,
-	# most are questionable (see README.PORTING/configure.ac comments)
-	# -fwrapv: kept for bug #539992
-	sed -e '/CC_OPT.*CODEGEN_FLAGS/{/-fwrapv/!d}' \
-		-e '/CC_OPT.*NOPICPIE_FLAGS/d' \
-		-e '/CC_OPT.*NO_STACK_PROTECTOR_FLAGS/d' \
-		-e '/CC_OPT.*OPTIMIZER_FLAGS/c\:' \
-		-e '/CC_OPT.*-mtune.*SS_EXTRA_FLAGS/d' \
-		-e '/LINK_FLAG.*NOPICPIE_LDFLAGS/d' \
-		-i configure.ac || die
-	eautoreconf
-}
-
-src_configure() {
-	# disable unnecessary warnings not to confuse users (see src/types.h)
-	append-cppflags -DMDFN_DISABLE_{NO_OPT,PICPIE}_ERRWARN
-
-	local myeconfargs=(
-		$(use_enable alsa)
-		$(use_enable cpu_flags_ppc_altivec altivec)
-		$(use_enable jack)
-		$(use_with flac libflac)
-		--with-external-{libzstd,lzo,mpcdec,tremor,trio}
-	)
-
-	econf "${myeconfargs[@]}"
-}
-
-src_compile() {
-	emake AR="$(tc-getAR)"
-}
-
-src_install() {
-	local DOCS=(
-		ChangeLog
-		Documentation/{cheats.txt,fname_format.txt,modules.def,settings.def}
-	)
-	local HTML_DOCS=( Documentation/*.{css,html,png} )
-
-	default
-
-	pax-mark m "${ED}"/usr/bin/mednafen
-}


             reply	other threads:[~2024-05-12 20:26 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-12 20:25 Ionen Wolkens [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-04-26 21:01 [gentoo-commits] repo/gentoo:master commit in: games-emulation/mednafen/ Sam James
2024-04-06 20:20 Ionen Wolkens
2022-11-29  6:58 Jakov Smolić
2022-02-16  6:58 Ionen Wolkens
2022-01-19 16:45 Ionen Wolkens
2021-06-23  2:24 Ionen Wolkens
2021-06-15 21:34 Ionen Wolkens
2021-06-02 10:56 Ionen Wolkens
2021-05-09  4:42 Sam James
2019-10-28 21:38 James Le Cuirot
2017-08-13 12:36 David Seifert
2017-06-11 21:44 David Seifert
2017-06-05 20:19 David Seifert
2017-01-22 15:01 Agostino Sarubbo
2017-01-22 14:53 Agostino Sarubbo
2016-02-01  8:14 Agostino Sarubbo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1715543815.717d620a6a6b99f57637aa4caa445f630b7241ea.ionen@gentoo \
    --to=ionen@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox