From 81b8f20732954c4508baf2f77472b5435e3f851f Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 14 Sep 2022 11:10:11 +0100 Subject: gentoo auto-resync : 14:09:2022 - 11:10:10 --- games-emulation/mednafen/Manifest | 2 +- games-emulation/mednafen/mednafen-1.29.0-r1.ebuild | 80 ++++++++++++++++++++++ games-emulation/mednafen/mednafen-1.29.0.ebuild | 80 ---------------------- 3 files changed, 81 insertions(+), 81 deletions(-) create mode 100644 games-emulation/mednafen/mednafen-1.29.0-r1.ebuild delete mode 100644 games-emulation/mednafen/mednafen-1.29.0.ebuild (limited to 'games-emulation/mednafen') diff --git a/games-emulation/mednafen/Manifest b/games-emulation/mednafen/Manifest index 52aaddae66c2..0bcb928547f3 100644 --- a/games-emulation/mednafen/Manifest +++ b/games-emulation/mednafen/Manifest @@ -1,3 +1,3 @@ DIST mednafen-1.29.0.tar.xz 3512784 BLAKE2B bea5ecfe00f97d1cf81eccfe4264d8fea666c9c8543449ca8c1e4e064f89a100f6bbe77b23d42d5d9c4a7e005792006d599852a201f1d95a756742bc58ecda81 SHA512 375f0fb4f12907faf56b4e9ecdc44c1655b0660a3773240fe3118f2b261e171479b8eb254299f899fc442b54041c941eab2a5f343aec559d9731c3e92cde0569 -EBUILD mednafen-1.29.0.ebuild 1924 BLAKE2B 0a0877e1467d10cc5171605032fe6dd874067c92d8d2eb77904156b5d598f517b3bfa3652ae18a7c68d00f284af9fa530c48943555eaa3269b593212d77cd856 SHA512 2b574be5e4284e7439aedef14f2f9f8d0c66c58781b91a64768dcdde601ac6dd93a18cd8334140705ef1770b3565d7fc968b747f9376752d00d64749912c0b45 +EBUILD mednafen-1.29.0-r1.ebuild 1926 BLAKE2B 14be1e841935d0d37f0030f17ecd30f11136e1bb53290ae9e724157e3254f6031f042864bfee3c307f95a95d3c326af998ac0d6ec86d419c1d2a8bc0e8cee4ee SHA512 aeec29ca289d998877657833d5ce016c6487fbdae8377bd0b293086c8dfdecbe4f34b3dcda4f217f334565cf99d59e523f528f0198218417192d7e849d32a110 MISC metadata.xml 332 BLAKE2B 94c24607fd634ac943de538dd00b5511e4976e2eb9d1724dd4b7e9fff1508b146caac910eb5fab93ef2049e2dc95598d787d738b1613d59739a1772b3bd58f9e SHA512 6c80eda23e81013c2cc990aea57ad62d592a777d8afbf0f767bb1eef2efc13103b3917b14f9d080db67e8b5899de7882d8bf2adc568274dae1014fa6b94f27df diff --git a/games-emulation/mednafen/mednafen-1.29.0-r1.ebuild b/games-emulation/mednafen/mednafen-1.29.0-r1.ebuild new file mode 100644 index 000000000000..0748b73cc530 --- /dev/null +++ b/games-emulation/mednafen/mednafen-1.29.0-r1.ebuild @@ -0,0 +1,80 @@ +# 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 +} diff --git a/games-emulation/mednafen/mednafen-1.29.0.ebuild b/games-emulation/mednafen/mednafen-1.29.0.ebuild deleted file mode 100644 index a57c4dde457d..000000000000 --- a/games-emulation/mednafen/mednafen-1.29.0.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 -} -- cgit v1.2.3