public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: games-emulation/RetroArch/
@ 2023-06-15  9:33 Florian Schmaus
  0 siblings, 0 replies; 8+ messages in thread
From: Florian Schmaus @ 2023-06-15  9:33 UTC (permalink / raw
  To: gentoo-commits

commit:     0c4b910ebf0ed46f97ae5150d17587810c3ed246
Author:     Rafael Rondão <rafael.rondao <AT> gmail <DOT> com>
AuthorDate: Wed Jun 14 13:57:39 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Jun 14 13:58:02 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0c4b910e

games-emulation/RetroArch: new package, add 1.15.0

Signed-off-by: Rafael Rondão <rafael.rondao <AT> gmail.com>

 games-emulation/RetroArch/Manifest                |   1 +
 games-emulation/RetroArch/RetroArch-1.15.0.ebuild | 178 ++++++++++++++++++++++
 games-emulation/RetroArch/metadata.xml            |  48 ++++++
 3 files changed, 227 insertions(+)

diff --git a/games-emulation/RetroArch/Manifest b/games-emulation/RetroArch/Manifest
new file mode 100644
index 000000000..2372962b2
--- /dev/null
+++ b/games-emulation/RetroArch/Manifest
@@ -0,0 +1 @@
+DIST RetroArch-1.15.0.tar.gz 49206179 BLAKE2B 0361051780f72646a4cb4fc18a6a534beeff3ccdf55a85b1ae803808ff49dca0516fe5aa2ced8b3e1ad2968fc4484ba65e3f999fccf86c714a32aec122d9091d SHA512 8981bfa58a4b44befad8dd00a160c2e00ac4a023567f9c31a45707f687afa51c50ac42120685d25039ff305d31e06f9e3e40d47ba7f1800885c2619182b6ab5a

diff --git a/games-emulation/RetroArch/RetroArch-1.15.0.ebuild b/games-emulation/RetroArch/RetroArch-1.15.0.ebuild
new file mode 100644
index 000000000..9b75acf87
--- /dev/null
+++ b/games-emulation/RetroArch/RetroArch-1.15.0.ebuild
@@ -0,0 +1,178 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic
+
+DESCRIPTION="RetroArch is a frontend for emulators, game engines and media players"
+HOMEPAGE="https://www.retroarch.com"
+
+SRC_URI="https://github.com/libretro/RetroArch/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="7zip alsa cg cpu_flags_arm_neon cpu_flags_arm_vfp cpu_flags_x86_sse2 cheevos debug dispmanx +egl filters ffmpeg gles2 gles3 hid jack kms libass libusb materialui network openal +opengl osmesa oss +ozone +pulseaudio +rgui sdl sdl2 +truetype +threads udev v4l2 videocore vulkan wayland +X xinerama xmb xv zlib"
+
+REQUIRED_USE="
+	|| ( alsa jack openal oss pulseaudio )
+	|| ( opengl sdl sdl2 vulkan dispmanx )
+	|| ( kms X wayland videocore )
+	|| ( materialui ozone rgui xmb )
+	alsa? ( threads )
+	arm? ( gles2? ( egl ) )
+	!arm? (
+		egl? ( opengl )
+		gles2? ( opengl )
+	)
+	cg? ( opengl )
+	dispmanx? ( videocore arm )
+	gles2? ( !cg )
+	gles3? ( gles2 )
+	kms? ( egl )
+	libass? ( ffmpeg )
+	libusb? ( hid )
+	sdl? ( rgui )
+	sdl2? ( rgui !sdl )
+	videocore? ( arm )
+	vulkan? ( amd64 )
+	wayland? ( egl )
+	xinerama? ( X )
+	xv? ( X )
+"
+
+RDEPEND="
+	alsa? ( media-libs/alsa-lib:0= )
+	cg? ( media-gfx/nvidia-cg-toolkit:0= )
+	arm? ( dispmanx? ( || ( media-libs/raspberrypi-userland:0 media-libs/raspberrypi-userland-bin:0 ) ) )
+	ffmpeg? ( >=media-video/ffmpeg-2.1.3:0= )
+	jack? ( virtual/jack:= )
+	libass? ( media-libs/libass:0= )
+	libusb? ( virtual/libusb:1= )
+	openal? ( media-libs/openal:0= )
+	opengl? ( media-libs/mesa:0=[gles2?] )
+	osmesa? ( media-libs/mesa:0=[osmesa?] )
+	pulseaudio? ( media-sound/pulseaudio:0= )
+	sdl? ( >=media-libs/libsdl-1.2.10:0=[joystick] )
+	sdl2? ( media-libs/libsdl2:0=[joystick] )
+	truetype? ( media-libs/freetype:2= )
+	udev? ( virtual/udev:0=
+		X? ( x11-drivers/xf86-input-evdev:0= )
+	)
+	amd64? ( vulkan? ( media-libs/vulkan-loader:0= ) )
+	v4l2? ( media-libs/libv4l:0= )
+	wayland? ( media-libs/mesa:0=[wayland?] )
+	X? (
+		x11-base/xorg-server:0=
+		>=x11-libs/libxkbcommon-0.4.0:0=
+	)
+	xinerama? ( x11-libs/libXinerama:0= )
+	xv? ( x11-libs/libXv:0= )
+	zlib? ( sys-libs/zlib:0= )
+"
+
+DEPEND="${RDEPEND}
+	virtual/pkgconfig
+"
+
+src_configure() {
+	if use cg; then
+		append-ldflags -L"${EPREFIX}/"opt/nvidia-cg-toolkit/$(get_libdir)
+		append-cflags  -I"${EPREFIX}/"opt/nvidia-cg-toolkit/include
+	fi
+
+	# Absolute path of the directory containing Retroarch shared libraries.
+	export RETROARCH_LIB_DIR="${EPREFIX}/usr/$(get_libdir)/retroarch"
+
+	if use filters; then
+		# Replace stock defaults with Gentoo-specific defaults.
+		sed -i retroarch.cfg \
+			-e 's:# \(video_filter_dir =\):\1 "/'${RETROARCH_LIB_DIR}'/filters/video/":' \
+			-e 's:# \(audio_filter_dir =\):\1 "/'${RETROARCH_LIB_DIR}'/filters/audio/":' \
+			|| die '"sed" failed.'
+	fi
+
+	# Note that OpenVG support is hard-disabled. (See ${RDEPEND} above.)
+	./configure \
+		--prefix=/usr \
+		--enable-dynamic \
+		--disable-vg \
+		$(use_enable 7zip) \
+		$(use_enable alsa) \
+		$(use_enable cheevos) \
+		$(use_enable cg) \
+		$(use_enable cpu_flags_arm_neon neon) \
+		$(use_enable cpu_flags_arm_vfp floathard) \
+		$(use_enable cpu_flags_x86_sse2 sse) \
+		$(use_enable dispmanx) \
+		$(use_enable egl) \
+		$(use_enable ffmpeg) \
+		$(use_enable gles2 opengles) \
+		$(use_enable gles3 opengles3) \
+		$(use_enable hid) \
+		$(use_enable jack) \
+		$(use_enable kms) \
+		$(use_enable libass ssa) \
+		$(use_enable libusb) \
+		$(use_enable materialui) \
+		$(use_enable network networking) \
+		$(use_enable openal al) \
+		$(use_enable opengl) \
+		$(use_enable osmesa) \
+		$(use_enable oss) \
+		$(use_enable ozone) \
+		$(use_enable pulseaudio pulse) \
+		$(use_enable rgui) \
+		$(use_enable sdl) \
+		$(use_enable sdl2) \
+		$(use_enable threads) \
+		$(use_enable truetype freetype) \
+		$(use_enable udev) \
+		$(use_enable v4l2) \
+		$(use_enable videocore) \
+		$(use_enable vulkan) \
+		$(use_enable wayland) \
+		$(use_enable X x11) \
+		$(use_enable xinerama) \
+		$(use_enable xmb) \
+		$(use_enable xv xvideo) \
+		$(use_enable zlib)
+}
+
+src_compile() {
+	emake $(usex debug "DEBUG=1" "")
+	if use filters; then
+		emake $(usex debug "build=debug" "build=release") -C gfx/video_filters/
+		emake $(usex debug "build=debug" "build=release") -C libretro-common/audio/dsp_filters/
+	fi
+}
+
+src_install() {
+	# Install core files and directories.
+	emake DESTDIR="${ED}" install
+
+	# Install documentation.
+	dodoc README.md
+
+	if use filters; then
+		# Install video filters.
+		insinto ${RETROARCH_LIB_DIR}/filters/video/
+		doins "${S}"/gfx/video_filters/*.so
+		doins "${S}"/gfx/video_filters/*.filt
+
+		# Install audio filters.
+		insinto ${RETROARCH_LIB_DIR}/filters/audio/
+		doins "${S}"/libretro-common/audio/dsp_filters/*.dsp
+	fi
+}
+
+pkg_postinst() {
+	if use oss; then
+		ewarn ""
+		ewarn "OSS support is enabled, however it is not installed as a dependency."
+		ewarn "Make sure you have OSS installed in your system."
+		ewarn ""
+	fi
+}

diff --git a/games-emulation/RetroArch/metadata.xml b/games-emulation/RetroArch/metadata.xml
new file mode 100644
index 000000000..ca1afbfb2
--- /dev/null
+++ b/games-emulation/RetroArch/metadata.xml
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<use>
+		<flag name="7zip">Compile in 7z support</flag>
+		<flag name="alsa">ALSA support</flag>
+		<flag name="cg">Cg shader support</flag>
+		<flag name="cheevos">Retro Achievements</flag>
+		<flag name="debug">Enable a debug build</flag>
+		<flag name="dispmanx">Dispmanx video support</flag>
+		<flag name="egl">EGL context support</flag>
+		<flag name="filters">Install audio/video filters</flag>
+		<flag name="ffmpeg">FFmpeg support</flag>
+		<flag name="gles2">Use GLESv2 instead of desktop GL</flag>
+		<flag name="gles3">OpenGLES3 support</flag>
+		<flag name="hid">Low-level HID (Human Interface Device) support</flag>
+		<flag name="jack">JACK support</flag>
+		<flag name="kms">KMS context support</flag>
+		<flag name="libass">SSA/ASS for FFmpeg subtitle support</flag>
+		<flag name="libusb">Libusb HID support</flag>
+		<flag name="materialui">MaterialUI menu</flag>
+		<flag name="network">Networking features (recommended)</flag>
+		<flag name="openal">OpenAL support</flag>
+		<flag name="opengl">OpenGL 2.0 support</flag>
+		<flag name="osmesa">Off-screen Mesa rendering</flag>
+		<flag name="oss">OSS support</flag>
+		<flag name="ozone">Ozone menu</flag>
+		<flag name="pulseaudio">PulseAudio support</flag>
+		<flag name="rgui">RGUI menu</flag>
+		<flag name="sdl">SDL support</flag>
+		<flag name="sdl2">SDL2 support (disables SDL 1.x)</flag>
+		<flag name="truetype">FreeType support</flag>
+		<flag name="threads">Threading support</flag>
+		<flag name="udev">Udev/Evdev gamepad support</flag>
+		<flag name="v4l2">Video4linux2 support</flag>
+		<flag name="videocore">Broadcom Videocore 4 support</flag>
+		<flag name="vulkan">Vulkan support</flag>
+		<flag name="wayland">Wayland support</flag>
+		<flag name="X">Everything X11</flag>
+		<flag name="xinerama">Xinerama support</flag>
+		<flag name="xmb">XMB menu</flag>
+		<flag name="xv">XVideo support</flag>
+		<flag name="zlib">zlib support (ZIP extract, PNG decoding/encoding)</flag>
+	</use>
+	<upstream>
+		<remote-id type="github">libretro/RetroArch</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: games-emulation/RetroArch/
@ 2023-06-17  7:03 Viorel Munteanu
  0 siblings, 0 replies; 8+ messages in thread
From: Viorel Munteanu @ 2023-06-17  7:03 UTC (permalink / raw
  To: gentoo-commits

commit:     459f4d16f858c2c4a2691d9a35ceb859bc908c39
Author:     Rafael Rondão <rafael.rondao <AT> gmail <DOT> com>
AuthorDate: Thu Jun 15 21:35:44 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Thu Jun 15 21:35:44 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=459f4d16

games-emulation/RetroArch: change dep from pulseaudio to libpulse

The former is deprecated.

Signed-off-by: Rafael Rondão <rafael.rondao <AT> gmail.com>

 games-emulation/RetroArch/RetroArch-1.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/RetroArch/RetroArch-1.15.0.ebuild b/games-emulation/RetroArch/RetroArch-1.15.0.ebuild
index 9b75acf87..204a0fda4 100644
--- a/games-emulation/RetroArch/RetroArch-1.15.0.ebuild
+++ b/games-emulation/RetroArch/RetroArch-1.15.0.ebuild
@@ -54,7 +54,7 @@ RDEPEND="
 	openal? ( media-libs/openal:0= )
 	opengl? ( media-libs/mesa:0=[gles2?] )
 	osmesa? ( media-libs/mesa:0=[osmesa?] )
-	pulseaudio? ( media-sound/pulseaudio:0= )
+	pulseaudio? ( media-libs/libpulse:0= )
 	sdl? ( >=media-libs/libsdl-1.2.10:0=[joystick] )
 	sdl2? ( media-libs/libsdl2:0=[joystick] )
 	truetype? ( media-libs/freetype:2= )


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: games-emulation/RetroArch/
@ 2023-06-17  7:03 Viorel Munteanu
  0 siblings, 0 replies; 8+ messages in thread
From: Viorel Munteanu @ 2023-06-17  7:03 UTC (permalink / raw
  To: gentoo-commits

commit:     c6dcb876de18c2177e5027c34c748f451b035855
Author:     Rafael Rondão <rafael.rondao <AT> gmail <DOT> com>
AuthorDate: Thu Jun 15 21:30:47 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Thu Jun 15 21:31:45 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c6dcb876

games-emulation/RetroArch: add myself as a maintainer

Signed-off-by: Rafael Rondão <rafael.rondao <AT> gmail.com>

 games-emulation/RetroArch/metadata.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/games-emulation/RetroArch/metadata.xml b/games-emulation/RetroArch/metadata.xml
index ca1afbfb2..b1549cca8 100644
--- a/games-emulation/RetroArch/metadata.xml
+++ b/games-emulation/RetroArch/metadata.xml
@@ -1,6 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
+	<maintainer type="person">
+		<name>Rafael Rondão</name>
+		<email>rafael.rondao@gmail.com</email>
+	</maintainer>
 	<use>
 		<flag name="7zip">Compile in 7z support</flag>
 		<flag name="alsa">ALSA support</flag>


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: games-emulation/RetroArch/
@ 2024-01-15 15:46 David Roman
  0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-01-15 15:46 UTC (permalink / raw
  To: gentoo-commits

commit:     ea258bf11ff8d9954588965e6e996502e9299b10
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Sun Jan 14 09:05:45 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Jan 14 09:12:59 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ea258bf1

games-emulation/RetroArch: add 1.16.0.3

Closes: https://bugs.gentoo.org/908571
Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 games-emulation/RetroArch/Manifest                 |   1 +
 .../RetroArch/RetroArch-1.16.0.3.ebuild            | 179 +++++++++++++++++++++
 2 files changed, 180 insertions(+)

diff --git a/games-emulation/RetroArch/Manifest b/games-emulation/RetroArch/Manifest
index 2372962b2b..c3acc37b08 100644
--- a/games-emulation/RetroArch/Manifest
+++ b/games-emulation/RetroArch/Manifest
@@ -1 +1,2 @@
 DIST RetroArch-1.15.0.tar.gz 49206179 BLAKE2B 0361051780f72646a4cb4fc18a6a534beeff3ccdf55a85b1ae803808ff49dca0516fe5aa2ced8b3e1ad2968fc4484ba65e3f999fccf86c714a32aec122d9091d SHA512 8981bfa58a4b44befad8dd00a160c2e00ac4a023567f9c31a45707f687afa51c50ac42120685d25039ff305d31e06f9e3e40d47ba7f1800885c2619182b6ab5a
+DIST RetroArch-1.16.0.3.tar.gz 49084629 BLAKE2B e04b33585085679262da52ba37a960c1b5076628ffeaadd0beb7bceaf092f7a202677622fec5156ee61afdffbbaae050379d8038ef331475b17a7f0bbb8c50b3 SHA512 a208905257ef5ac38f055195a06167cba5727f470abcba20015ae47bec9af5936fbdc50badb146502d6ccf8de76eaad5846a131974919bb99ea5a0a008624bc1

diff --git a/games-emulation/RetroArch/RetroArch-1.16.0.3.ebuild b/games-emulation/RetroArch/RetroArch-1.16.0.3.ebuild
new file mode 100644
index 0000000000..987fcfce58
--- /dev/null
+++ b/games-emulation/RetroArch/RetroArch-1.16.0.3.ebuild
@@ -0,0 +1,179 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic
+
+DESCRIPTION="RetroArch is a frontend for emulators, game engines and media players"
+HOMEPAGE="https://www.retroarch.com"
+
+SRC_URI="https://github.com/libretro/RetroArch/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="7zip alsa cg cpu_flags_arm_neon cpu_flags_arm_vfp cpu_flags_x86_sse2 cheevos debug dispmanx +egl filters ffmpeg gles2 gles3 hid jack kms libass libusb materialui network openal +opengl osmesa oss +ozone +pulseaudio +rgui sdl sdl2 +truetype +threads udev v4l2 videocore vulkan wayland +X xinerama xmb xv zlib"
+
+REQUIRED_USE="
+	|| ( alsa jack openal oss pulseaudio )
+	|| ( opengl sdl sdl2 vulkan dispmanx )
+	|| ( kms X wayland videocore )
+	|| ( materialui ozone rgui xmb )
+	alsa? ( threads )
+	arm? ( gles2? ( egl ) )
+	!arm? (
+		egl? ( opengl )
+		gles2? ( opengl )
+	)
+	cg? ( opengl )
+	dispmanx? ( videocore arm )
+	gles2? ( !cg )
+	gles3? ( gles2 )
+	kms? ( egl )
+	libass? ( ffmpeg )
+	libusb? ( hid )
+	sdl? ( rgui )
+	sdl2? ( rgui !sdl )
+	videocore? ( arm )
+	vulkan? ( amd64 )
+	wayland? ( egl )
+	xinerama? ( X )
+	xv? ( X )
+"
+
+RDEPEND="
+	alsa? ( media-libs/alsa-lib:0= )
+	cg? ( media-gfx/nvidia-cg-toolkit:0= )
+	arm? ( dispmanx? ( || ( media-libs/raspberrypi-userland:0 media-libs/raspberrypi-userland-bin:0 ) ) )
+	ffmpeg? ( >=media-video/ffmpeg-2.1.3:0= )
+	jack? ( virtual/jack:= )
+	libass? ( media-libs/libass:0= )
+	libusb? ( virtual/libusb:1= )
+	openal? ( media-libs/openal:0= )
+	opengl? ( media-libs/mesa:0=[gles2?] )
+	osmesa? ( media-libs/mesa:0=[osmesa?] )
+	pulseaudio? ( media-libs/libpulse:0= )
+	sdl? ( >=media-libs/libsdl-1.2.10:0=[joystick] )
+	sdl2? ( media-libs/libsdl2:0=[joystick] )
+	truetype? ( media-libs/freetype:2= )
+	udev? ( virtual/udev:0=
+		X? ( x11-drivers/xf86-input-evdev:0= )
+	)
+	amd64? ( vulkan? ( media-libs/vulkan-loader:0= ) )
+	v4l2? ( media-libs/libv4l:0= )
+	wayland? ( media-libs/mesa:0=[wayland?] )
+	X? (
+		x11-base/xorg-server:0=
+		>=x11-libs/libxkbcommon-0.4.0:0=
+	)
+	xinerama? ( x11-libs/libXinerama:0= )
+	xv? ( x11-libs/libXv:0= )
+	zlib? ( sys-libs/zlib:0= )
+"
+
+DEPEND="${RDEPEND}
+	virtual/pkgconfig
+"
+
+src_configure() {
+	if use cg; then
+		append-ldflags -L"${EPREFIX}/"opt/nvidia-cg-toolkit/$(get_libdir)
+		append-cflags  -I"${EPREFIX}/"opt/nvidia-cg-toolkit/include
+	fi
+
+	# Absolute path of the directory containing Retroarch shared libraries.
+	export RETROARCH_LIB_DIR="${EPREFIX}/usr/$(get_libdir)/retroarch"
+
+	if use filters; then
+		# Replace stock defaults with Gentoo-specific defaults.
+		sed -i retroarch.cfg \
+			-e 's:# \(video_filter_dir =\):\1 "/'${RETROARCH_LIB_DIR}'/filters/video/":' \
+			-e 's:# \(audio_filter_dir =\):\1 "/'${RETROARCH_LIB_DIR}'/filters/audio/":' \
+			|| die '"sed" failed.'
+	fi
+
+	# Note that OpenVG support is hard-disabled. (See ${RDEPEND} above.)
+	./configure \
+		--prefix="${EPREFIX}/usr" \
+		--docdir="${EPREFIX}/usr/share/doc/${PF}" \
+		--enable-dynamic \
+		--disable-vg \
+		$(use_enable 7zip) \
+		$(use_enable alsa) \
+		$(use_enable cheevos) \
+		$(use_enable cg) \
+		$(use_enable cpu_flags_arm_neon neon) \
+		$(use_enable cpu_flags_arm_vfp floathard) \
+		$(use_enable cpu_flags_x86_sse2 sse) \
+		$(use_enable dispmanx) \
+		$(use_enable egl) \
+		$(use_enable ffmpeg) \
+		$(use_enable gles2 opengles) \
+		$(use_enable gles3 opengles3) \
+		$(use_enable hid) \
+		$(use_enable jack) \
+		$(use_enable kms) \
+		$(use_enable libass ssa) \
+		$(use_enable libusb) \
+		$(use_enable materialui) \
+		$(use_enable network networking) \
+		$(use_enable openal al) \
+		$(use_enable opengl) \
+		$(use_enable osmesa) \
+		$(use_enable oss) \
+		$(use_enable ozone) \
+		$(use_enable pulseaudio pulse) \
+		$(use_enable rgui) \
+		$(use_enable sdl) \
+		$(use_enable sdl2) \
+		$(use_enable threads) \
+		$(use_enable truetype freetype) \
+		$(use_enable udev) \
+		$(use_enable v4l2) \
+		$(use_enable videocore) \
+		$(use_enable vulkan) \
+		$(use_enable wayland) \
+		$(use_enable X x11) \
+		$(use_enable xinerama) \
+		$(use_enable xmb) \
+		$(use_enable xv xvideo) \
+		$(use_enable zlib)
+}
+
+src_compile() {
+	emake $(usex debug "DEBUG=1" "")
+	if use filters; then
+		emake $(usex debug "build=debug" "build=release") -C gfx/video_filters/
+		emake $(usex debug "build=debug" "build=release") -C libretro-common/audio/dsp_filters/
+	fi
+}
+
+src_install() {
+	# Install core files and directories.
+	emake DESTDIR="${D}" install
+
+	# Install documentation.
+	dodoc README.md
+
+	if use filters; then
+		# Install video filters.
+		insinto ${RETROARCH_LIB_DIR}/filters/video/
+		doins "${S}"/gfx/video_filters/*.so
+		doins "${S}"/gfx/video_filters/*.filt
+
+		# Install audio filters.
+		insinto ${RETROARCH_LIB_DIR}/filters/audio/
+		doins "${S}"/libretro-common/audio/dsp_filters/*.dsp
+	fi
+}
+
+pkg_postinst() {
+	if use oss; then
+		ewarn ""
+		ewarn "OSS support is enabled, however it is not installed as a dependency."
+		ewarn "Make sure you have OSS installed in your system."
+		ewarn ""
+	fi
+}


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: games-emulation/RetroArch/
@ 2024-01-15 15:46 David Roman
  0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-01-15 15:46 UTC (permalink / raw
  To: gentoo-commits

commit:     1122742a1e3f4e0ae5a2c9acb4c301f314ae2a73
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Sun Jan 14 09:06:03 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Jan 14 09:12:59 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1122742a

games-emulation/RetroArch: drop 1.15.0

Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 games-emulation/RetroArch/Manifest                |   1 -
 games-emulation/RetroArch/RetroArch-1.15.0.ebuild | 178 ----------------------
 2 files changed, 179 deletions(-)

diff --git a/games-emulation/RetroArch/Manifest b/games-emulation/RetroArch/Manifest
index c3acc37b08..c2f97488e6 100644
--- a/games-emulation/RetroArch/Manifest
+++ b/games-emulation/RetroArch/Manifest
@@ -1,2 +1 @@
-DIST RetroArch-1.15.0.tar.gz 49206179 BLAKE2B 0361051780f72646a4cb4fc18a6a534beeff3ccdf55a85b1ae803808ff49dca0516fe5aa2ced8b3e1ad2968fc4484ba65e3f999fccf86c714a32aec122d9091d SHA512 8981bfa58a4b44befad8dd00a160c2e00ac4a023567f9c31a45707f687afa51c50ac42120685d25039ff305d31e06f9e3e40d47ba7f1800885c2619182b6ab5a
 DIST RetroArch-1.16.0.3.tar.gz 49084629 BLAKE2B e04b33585085679262da52ba37a960c1b5076628ffeaadd0beb7bceaf092f7a202677622fec5156ee61afdffbbaae050379d8038ef331475b17a7f0bbb8c50b3 SHA512 a208905257ef5ac38f055195a06167cba5727f470abcba20015ae47bec9af5936fbdc50badb146502d6ccf8de76eaad5846a131974919bb99ea5a0a008624bc1

diff --git a/games-emulation/RetroArch/RetroArch-1.15.0.ebuild b/games-emulation/RetroArch/RetroArch-1.15.0.ebuild
deleted file mode 100644
index 204a0fda4a..0000000000
--- a/games-emulation/RetroArch/RetroArch-1.15.0.ebuild
+++ /dev/null
@@ -1,178 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic
-
-DESCRIPTION="RetroArch is a frontend for emulators, game engines and media players"
-HOMEPAGE="https://www.retroarch.com"
-
-SRC_URI="https://github.com/libretro/RetroArch/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE="7zip alsa cg cpu_flags_arm_neon cpu_flags_arm_vfp cpu_flags_x86_sse2 cheevos debug dispmanx +egl filters ffmpeg gles2 gles3 hid jack kms libass libusb materialui network openal +opengl osmesa oss +ozone +pulseaudio +rgui sdl sdl2 +truetype +threads udev v4l2 videocore vulkan wayland +X xinerama xmb xv zlib"
-
-REQUIRED_USE="
-	|| ( alsa jack openal oss pulseaudio )
-	|| ( opengl sdl sdl2 vulkan dispmanx )
-	|| ( kms X wayland videocore )
-	|| ( materialui ozone rgui xmb )
-	alsa? ( threads )
-	arm? ( gles2? ( egl ) )
-	!arm? (
-		egl? ( opengl )
-		gles2? ( opengl )
-	)
-	cg? ( opengl )
-	dispmanx? ( videocore arm )
-	gles2? ( !cg )
-	gles3? ( gles2 )
-	kms? ( egl )
-	libass? ( ffmpeg )
-	libusb? ( hid )
-	sdl? ( rgui )
-	sdl2? ( rgui !sdl )
-	videocore? ( arm )
-	vulkan? ( amd64 )
-	wayland? ( egl )
-	xinerama? ( X )
-	xv? ( X )
-"
-
-RDEPEND="
-	alsa? ( media-libs/alsa-lib:0= )
-	cg? ( media-gfx/nvidia-cg-toolkit:0= )
-	arm? ( dispmanx? ( || ( media-libs/raspberrypi-userland:0 media-libs/raspberrypi-userland-bin:0 ) ) )
-	ffmpeg? ( >=media-video/ffmpeg-2.1.3:0= )
-	jack? ( virtual/jack:= )
-	libass? ( media-libs/libass:0= )
-	libusb? ( virtual/libusb:1= )
-	openal? ( media-libs/openal:0= )
-	opengl? ( media-libs/mesa:0=[gles2?] )
-	osmesa? ( media-libs/mesa:0=[osmesa?] )
-	pulseaudio? ( media-libs/libpulse:0= )
-	sdl? ( >=media-libs/libsdl-1.2.10:0=[joystick] )
-	sdl2? ( media-libs/libsdl2:0=[joystick] )
-	truetype? ( media-libs/freetype:2= )
-	udev? ( virtual/udev:0=
-		X? ( x11-drivers/xf86-input-evdev:0= )
-	)
-	amd64? ( vulkan? ( media-libs/vulkan-loader:0= ) )
-	v4l2? ( media-libs/libv4l:0= )
-	wayland? ( media-libs/mesa:0=[wayland?] )
-	X? (
-		x11-base/xorg-server:0=
-		>=x11-libs/libxkbcommon-0.4.0:0=
-	)
-	xinerama? ( x11-libs/libXinerama:0= )
-	xv? ( x11-libs/libXv:0= )
-	zlib? ( sys-libs/zlib:0= )
-"
-
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-"
-
-src_configure() {
-	if use cg; then
-		append-ldflags -L"${EPREFIX}/"opt/nvidia-cg-toolkit/$(get_libdir)
-		append-cflags  -I"${EPREFIX}/"opt/nvidia-cg-toolkit/include
-	fi
-
-	# Absolute path of the directory containing Retroarch shared libraries.
-	export RETROARCH_LIB_DIR="${EPREFIX}/usr/$(get_libdir)/retroarch"
-
-	if use filters; then
-		# Replace stock defaults with Gentoo-specific defaults.
-		sed -i retroarch.cfg \
-			-e 's:# \(video_filter_dir =\):\1 "/'${RETROARCH_LIB_DIR}'/filters/video/":' \
-			-e 's:# \(audio_filter_dir =\):\1 "/'${RETROARCH_LIB_DIR}'/filters/audio/":' \
-			|| die '"sed" failed.'
-	fi
-
-	# Note that OpenVG support is hard-disabled. (See ${RDEPEND} above.)
-	./configure \
-		--prefix=/usr \
-		--enable-dynamic \
-		--disable-vg \
-		$(use_enable 7zip) \
-		$(use_enable alsa) \
-		$(use_enable cheevos) \
-		$(use_enable cg) \
-		$(use_enable cpu_flags_arm_neon neon) \
-		$(use_enable cpu_flags_arm_vfp floathard) \
-		$(use_enable cpu_flags_x86_sse2 sse) \
-		$(use_enable dispmanx) \
-		$(use_enable egl) \
-		$(use_enable ffmpeg) \
-		$(use_enable gles2 opengles) \
-		$(use_enable gles3 opengles3) \
-		$(use_enable hid) \
-		$(use_enable jack) \
-		$(use_enable kms) \
-		$(use_enable libass ssa) \
-		$(use_enable libusb) \
-		$(use_enable materialui) \
-		$(use_enable network networking) \
-		$(use_enable openal al) \
-		$(use_enable opengl) \
-		$(use_enable osmesa) \
-		$(use_enable oss) \
-		$(use_enable ozone) \
-		$(use_enable pulseaudio pulse) \
-		$(use_enable rgui) \
-		$(use_enable sdl) \
-		$(use_enable sdl2) \
-		$(use_enable threads) \
-		$(use_enable truetype freetype) \
-		$(use_enable udev) \
-		$(use_enable v4l2) \
-		$(use_enable videocore) \
-		$(use_enable vulkan) \
-		$(use_enable wayland) \
-		$(use_enable X x11) \
-		$(use_enable xinerama) \
-		$(use_enable xmb) \
-		$(use_enable xv xvideo) \
-		$(use_enable zlib)
-}
-
-src_compile() {
-	emake $(usex debug "DEBUG=1" "")
-	if use filters; then
-		emake $(usex debug "build=debug" "build=release") -C gfx/video_filters/
-		emake $(usex debug "build=debug" "build=release") -C libretro-common/audio/dsp_filters/
-	fi
-}
-
-src_install() {
-	# Install core files and directories.
-	emake DESTDIR="${ED}" install
-
-	# Install documentation.
-	dodoc README.md
-
-	if use filters; then
-		# Install video filters.
-		insinto ${RETROARCH_LIB_DIR}/filters/video/
-		doins "${S}"/gfx/video_filters/*.so
-		doins "${S}"/gfx/video_filters/*.filt
-
-		# Install audio filters.
-		insinto ${RETROARCH_LIB_DIR}/filters/audio/
-		doins "${S}"/libretro-common/audio/dsp_filters/*.dsp
-	fi
-}
-
-pkg_postinst() {
-	if use oss; then
-		ewarn ""
-		ewarn "OSS support is enabled, however it is not installed as a dependency."
-		ewarn "Make sure you have OSS installed in your system."
-		ewarn ""
-	fi
-}


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: games-emulation/RetroArch/
@ 2024-09-14  0:43 David Roman
  0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-09-14  0:43 UTC (permalink / raw
  To: gentoo-commits

commit:     219fe7161536a4e78cd3c7e470fb1ec4614b1f34
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Fri Sep 13 14:37:28 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Fri Sep 13 14:39:40 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=219fe716

games-emulation/RetroArch: fix media-libs/mesa[gles2] dependency

Closes: https://bugs.gentoo.org/939369
Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 games-emulation/RetroArch/RetroArch-1.16.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/RetroArch/RetroArch-1.16.0.3.ebuild b/games-emulation/RetroArch/RetroArch-1.16.0.3.ebuild
index 987fcfce5..c621d30dc 100644
--- a/games-emulation/RetroArch/RetroArch-1.16.0.3.ebuild
+++ b/games-emulation/RetroArch/RetroArch-1.16.0.3.ebuild
@@ -52,7 +52,7 @@ RDEPEND="
 	libass? ( media-libs/libass:0= )
 	libusb? ( virtual/libusb:1= )
 	openal? ( media-libs/openal:0= )
-	opengl? ( media-libs/mesa:0=[gles2?] )
+	opengl? ( media-libs/mesa:0=[gles2(+)?] )
 	osmesa? ( media-libs/mesa:0=[osmesa?] )
 	pulseaudio? ( media-libs/libpulse:0= )
 	sdl? ( >=media-libs/libsdl-1.2.10:0=[joystick] )


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: games-emulation/RetroArch/
@ 2024-09-21  8:47 David Roman
  0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-09-21  8:47 UTC (permalink / raw
  To: gentoo-commits

commit:     da0cb7aebc8212f7d9e40463e41b4c1fdec3a77b
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Sat Sep 21 07:45:17 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Sep 21 07:45:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=da0cb7ae

games-emulation/RetroArch: add 1.19.1

Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 games-emulation/RetroArch/Manifest                |   1 +
 games-emulation/RetroArch/RetroArch-1.19.1.ebuild | 192 ++++++++++++++++++++++
 2 files changed, 193 insertions(+)

diff --git a/games-emulation/RetroArch/Manifest b/games-emulation/RetroArch/Manifest
index c2f97488e..416e11c57 100644
--- a/games-emulation/RetroArch/Manifest
+++ b/games-emulation/RetroArch/Manifest
@@ -1 +1,2 @@
 DIST RetroArch-1.16.0.3.tar.gz 49084629 BLAKE2B e04b33585085679262da52ba37a960c1b5076628ffeaadd0beb7bceaf092f7a202677622fec5156ee61afdffbbaae050379d8038ef331475b17a7f0bbb8c50b3 SHA512 a208905257ef5ac38f055195a06167cba5727f470abcba20015ae47bec9af5936fbdc50badb146502d6ccf8de76eaad5846a131974919bb99ea5a0a008624bc1
+DIST RetroArch-1.19.1.tar.gz 63298569 BLAKE2B 66acbd32117704f543d3dfe94906d89b4500d51b56f57d1d236ce65e4e78c0c17a830b7c1dd4683f940423cfa88c65956a57bd5fa47591713a5c4d987c928161 SHA512 35e44ffc776cbc7f58fa76c686d3c3693d125fccf482c8f3b66378058b8400ada37ebf2549e9bd362e46c3bfb586971a217cc3142dcf7a7468c95ec78638ee23

diff --git a/games-emulation/RetroArch/RetroArch-1.19.1.ebuild b/games-emulation/RetroArch/RetroArch-1.19.1.ebuild
new file mode 100644
index 000000000..b7fa0223c
--- /dev/null
+++ b/games-emulation/RetroArch/RetroArch-1.19.1.ebuild
@@ -0,0 +1,192 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="RetroArch is a frontend for emulators, game engines and media players"
+HOMEPAGE="https://www.retroarch.com"
+
+SRC_URI="https://github.com/libretro/RetroArch/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="7zip alsa cg cpu_flags_arm_neon cpu_flags_arm_vfp cpu_flags_x86_sse2 cheevos debug dispmanx +egl filters ffmpeg gles2 gles3 hid jack kms libass libusb materialui network openal +opengl osmesa oss +ozone pulseaudio +rgui sdl +truetype +threads udev v4l2 videocore vulkan wayland X xinerama xmb xv zlib"
+
+REQUIRED_USE="
+	|| ( opengl sdl vulkan dispmanx )
+	|| ( materialui ozone rgui xmb )
+	alsa? ( threads )
+	arm? ( gles2? ( egl ) )
+	!arm? (
+		egl? ( opengl )
+		gles2? ( opengl )
+	)
+	cg? ( opengl )
+	dispmanx? ( videocore arm )
+	gles2? ( !cg )
+	gles3? ( gles2 )
+	kms? ( egl )
+	libass? ( ffmpeg )
+	libusb? ( hid )
+	videocore? ( arm )
+	vulkan? ( amd64 )
+	wayland? ( egl )
+	xinerama? ( X )
+	xv? ( X )
+"
+RDEPEND="
+	app-arch/xz-utils
+	x11-libs/libxkbcommon
+	alsa? ( media-libs/alsa-lib )
+	cg? ( media-gfx/nvidia-cg-toolkit:0= )
+	arm? ( dispmanx? ( || ( media-libs/raspberrypi-userland:0 media-libs/raspberrypi-userland-bin:0 ) ) )
+	ffmpeg? ( >=media-video/ffmpeg-2.1.3:0= )
+	jack? ( virtual/jack:= )
+	libass? ( media-libs/libass:0= )
+	libusb? ( virtual/libusb:1= )
+	openal? ( media-libs/openal:0= )
+	opengl? ( media-libs/libglvnd )
+	osmesa? ( media-libs/mesa:0=[osmesa?] )
+	pulseaudio? ( media-libs/libpulse )
+	sdl? ( media-libs/libsdl2[joystick] )
+	truetype? (
+		media-libs/fontconfig
+		media-libs/freetype:2
+	)
+	udev? ( virtual/udev
+		X? ( x11-drivers/xf86-input-evdev:0= )
+	)
+	amd64? ( vulkan? ( media-libs/vulkan-loader ) )
+	v4l2? ( media-libs/libv4l:0= )
+	wayland? (
+		dev-libs/wayland
+		dev-libs/wayland-protocols
+	)
+	X? (
+		x11-libs/libX11
+		x11-libs/libXext
+		x11-libs/libXrandr
+		x11-libs/libXxf86vm
+		x11-libs/libxcb:=
+	)
+	xinerama? ( x11-libs/libXinerama:0= )
+	xv? ( x11-libs/libXv )
+	zlib? ( sys-libs/zlib:0= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	wayland? ( dev-util/wayland-scanner )
+"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.16.0.3-int-conversion.patch"
+)
+
+src_configure() {
+	if use cg; then
+		append-ldflags -L"${EPREFIX}/"opt/nvidia-cg-toolkit/$(get_libdir)
+		append-cflags  -I"${EPREFIX}/"opt/nvidia-cg-toolkit/include
+	fi
+
+	# Absolute path of the directory containing Retroarch shared libraries.
+	export RETROARCH_LIB_DIR="${EPREFIX}/usr/$(get_libdir)/retroarch"
+
+	if use filters; then
+		# Replace stock defaults with Gentoo-specific defaults.
+		sed -i retroarch.cfg \
+			-e 's:# \(video_filter_dir =\):\1 "/'${RETROARCH_LIB_DIR}'/filters/video/":' \
+			-e 's:# \(audio_filter_dir =\):\1 "/'${RETROARCH_LIB_DIR}'/filters/audio/":' \
+			|| die '"sed" failed.'
+	fi
+
+	# Note that OpenVG support is hard-disabled. (See ${RDEPEND} above.)
+	CC="$(tc-getCC)" CXX="$(tc-getCXX)" ./configure \
+		--prefix="${EPREFIX}/usr" \
+		--docdir="${EPREFIX}/usr/share/doc/${PF}" \
+		--enable-dynamic \
+		--disable-builtinzlib \
+		--disable-qt \
+		--disable-sdl \
+		--disable-vg \
+		$(use_enable 7zip) \
+		$(use_enable alsa) \
+		$(use_enable cheevos) \
+		$(use_enable cg) \
+		$(use_enable cpu_flags_arm_neon neon) \
+		$(use_enable cpu_flags_arm_vfp floathard) \
+		$(use_enable cpu_flags_x86_sse2 sse) \
+		$(use_enable dispmanx) \
+		$(use_enable egl) \
+		$(use_enable ffmpeg) \
+		$(use_enable gles2 opengles) \
+		$(use_enable gles3 opengles3) \
+		$(use_enable hid) \
+		$(use_enable jack) \
+		$(use_enable kms) \
+		$(use_enable libass ssa) \
+		$(use_enable libusb) \
+		$(use_enable materialui) \
+		$(use_enable network networking) \
+		$(use_enable openal al) \
+		$(use_enable opengl) \
+		$(use_enable osmesa) \
+		$(use_enable oss) \
+		$(use_enable ozone) \
+		$(use_enable pulseaudio pulse) \
+		$(use_enable rgui) \
+		$(use_enable sdl sdl2) \
+		$(use_enable threads) \
+		$(use_enable truetype freetype) \
+		$(use_enable udev) \
+		$(use_enable v4l2) \
+		$(use_enable videocore) \
+		$(use_enable vulkan) \
+		$(use_enable wayland) \
+		$(use_enable X x11) \
+		$(use_enable xinerama) \
+		$(use_enable xmb) \
+		$(use_enable xv xvideo) \
+		$(use_enable zlib) \
+		|| die
+}
+
+src_compile() {
+	emake V=1 $(usex debug "DEBUG=1" "")
+	if use filters; then
+		emake CC="$(tc-getCC)" $(usex debug "build=debug" "build=release") -C gfx/video_filters/
+		emake CC="$(tc-getCC)" $(usex debug "build=debug" "build=release") -C libretro-common/audio/dsp_filters/
+	fi
+}
+
+src_install() {
+	# Install core files and directories.
+	emake DESTDIR="${D}" install
+
+	# Install documentation.
+	dodoc README.md
+
+	if use filters; then
+		# Install video filters.
+		insinto ${RETROARCH_LIB_DIR}/filters/video/
+		doins "${S}"/gfx/video_filters/*.so
+		doins "${S}"/gfx/video_filters/*.filt
+
+		# Install audio filters.
+		insinto ${RETROARCH_LIB_DIR}/filters/audio/
+		doins "${S}"/libretro-common/audio/dsp_filters/*.dsp
+	fi
+}
+
+pkg_postinst() {
+	if use oss; then
+		ewarn ""
+		ewarn "OSS support is enabled, however it is not installed as a dependency."
+		ewarn "Make sure you have OSS installed in your system."
+		ewarn ""
+	fi
+}


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: games-emulation/RetroArch/
@ 2024-09-21  8:47 David Roman
  0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-09-21  8:47 UTC (permalink / raw
  To: gentoo-commits

commit:     99de15ae983f5e9d6d6f38ab60a2083279f84cb3
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Sat Sep 21 07:45:17 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Sep 21 07:45:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=99de15ae

games-emulation/RetroArch: drop 1.16.0.3-r1

Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 games-emulation/RetroArch/Manifest                 |   1 -
 .../RetroArch/RetroArch-1.16.0.3-r1.ebuild         | 191 ---------------------
 games-emulation/RetroArch/metadata.xml             |   3 +-
 3 files changed, 1 insertion(+), 194 deletions(-)

diff --git a/games-emulation/RetroArch/Manifest b/games-emulation/RetroArch/Manifest
index 416e11c57..685f94c5d 100644
--- a/games-emulation/RetroArch/Manifest
+++ b/games-emulation/RetroArch/Manifest
@@ -1,2 +1 @@
-DIST RetroArch-1.16.0.3.tar.gz 49084629 BLAKE2B e04b33585085679262da52ba37a960c1b5076628ffeaadd0beb7bceaf092f7a202677622fec5156ee61afdffbbaae050379d8038ef331475b17a7f0bbb8c50b3 SHA512 a208905257ef5ac38f055195a06167cba5727f470abcba20015ae47bec9af5936fbdc50badb146502d6ccf8de76eaad5846a131974919bb99ea5a0a008624bc1
 DIST RetroArch-1.19.1.tar.gz 63298569 BLAKE2B 66acbd32117704f543d3dfe94906d89b4500d51b56f57d1d236ce65e4e78c0c17a830b7c1dd4683f940423cfa88c65956a57bd5fa47591713a5c4d987c928161 SHA512 35e44ffc776cbc7f58fa76c686d3c3693d125fccf482c8f3b66378058b8400ada37ebf2549e9bd362e46c3bfb586971a217cc3142dcf7a7468c95ec78638ee23

diff --git a/games-emulation/RetroArch/RetroArch-1.16.0.3-r1.ebuild b/games-emulation/RetroArch/RetroArch-1.16.0.3-r1.ebuild
deleted file mode 100644
index 2dcc7cfa5..000000000
--- a/games-emulation/RetroArch/RetroArch-1.16.0.3-r1.ebuild
+++ /dev/null
@@ -1,191 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic
-
-DESCRIPTION="RetroArch is a frontend for emulators, game engines and media players"
-HOMEPAGE="https://www.retroarch.com"
-
-SRC_URI="https://github.com/libretro/RetroArch/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE="7zip alsa cg cpu_flags_arm_neon cpu_flags_arm_vfp cpu_flags_x86_sse2 cheevos debug dispmanx +egl filters ffmpeg gles2 gles3 hid jack kms libass libusb materialui network openal +opengl osmesa oss +ozone +pulseaudio +rgui sdl sdl2 +truetype +threads udev v4l2 videocore vulkan wayland +X xinerama xmb xv zlib"
-
-REQUIRED_USE="
-	|| ( alsa jack openal oss pulseaudio )
-	|| ( opengl sdl sdl2 vulkan dispmanx )
-	|| ( kms X wayland videocore )
-	|| ( materialui ozone rgui xmb )
-	alsa? ( threads )
-	arm? ( gles2? ( egl ) )
-	!arm? (
-		egl? ( opengl )
-		gles2? ( opengl )
-	)
-	cg? ( opengl )
-	dispmanx? ( videocore arm )
-	gles2? ( !cg )
-	gles3? ( gles2 )
-	kms? ( egl )
-	libass? ( ffmpeg )
-	libusb? ( hid )
-	sdl? ( rgui )
-	sdl2? ( rgui !sdl )
-	videocore? ( arm )
-	vulkan? ( amd64 )
-	wayland? ( egl )
-	xinerama? ( X )
-	xv? ( X )
-"
-
-RDEPEND="
-	alsa? ( media-libs/alsa-lib:0= )
-	cg? ( media-gfx/nvidia-cg-toolkit:0= )
-	arm? ( dispmanx? ( || ( media-libs/raspberrypi-userland:0 media-libs/raspberrypi-userland-bin:0 ) ) )
-	ffmpeg? ( >=media-video/ffmpeg-2.1.3:0= )
-	jack? ( virtual/jack:= )
-	libass? ( media-libs/libass:0= )
-	libusb? ( virtual/libusb:1= )
-	openal? ( media-libs/openal:0= )
-	opengl? ( media-libs/libglvnd )
-	osmesa? ( media-libs/mesa:0=[osmesa?] )
-	pulseaudio? ( media-libs/libpulse:0= )
-	sdl? ( >=media-libs/libsdl-1.2.10:0=[joystick] )
-	sdl2? ( media-libs/libsdl2:0=[joystick] )
-	truetype? (
-		media-libs/fontconfig
-		media-libs/freetype:2
-	)
-	udev? ( virtual/udev:0=
-		X? ( x11-drivers/xf86-input-evdev:0= )
-	)
-	amd64? ( vulkan? ( media-libs/vulkan-loader:0= ) )
-	v4l2? ( media-libs/libv4l:0= )
-	wayland? ( media-libs/mesa:0=[wayland?] )
-	X? (
-		x11-libs/libX11
-		x11-libs/libXext
-		x11-libs/libXrandr
-		x11-libs/libXxf86vm
-		x11-libs/libxcb:=
-		x11-libs/libxkbcommon
-	)
-	xinerama? ( x11-libs/libXinerama:0= )
-	xv? ( x11-libs/libXv:0= )
-	zlib? ( sys-libs/zlib:0= )
-"
-
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-"
-
-PATCHES=(
-	# bug #936962
-	"${FILESDIR}/${P}-int-conversion.patch"
-)
-
-src_configure() {
-	if use cg; then
-		append-ldflags -L"${EPREFIX}/"opt/nvidia-cg-toolkit/$(get_libdir)
-		append-cflags  -I"${EPREFIX}/"opt/nvidia-cg-toolkit/include
-	fi
-
-	# Absolute path of the directory containing Retroarch shared libraries.
-	export RETROARCH_LIB_DIR="${EPREFIX}/usr/$(get_libdir)/retroarch"
-
-	if use filters; then
-		# Replace stock defaults with Gentoo-specific defaults.
-		sed -i retroarch.cfg \
-			-e 's:# \(video_filter_dir =\):\1 "/'${RETROARCH_LIB_DIR}'/filters/video/":' \
-			-e 's:# \(audio_filter_dir =\):\1 "/'${RETROARCH_LIB_DIR}'/filters/audio/":' \
-			|| die '"sed" failed.'
-	fi
-
-	# Note that OpenVG support is hard-disabled. (See ${RDEPEND} above.)
-	./configure \
-		--prefix="${EPREFIX}/usr" \
-		--docdir="${EPREFIX}/usr/share/doc/${PF}" \
-		--enable-dynamic \
-		--disable-vg \
-		$(use_enable 7zip) \
-		$(use_enable alsa) \
-		$(use_enable cheevos) \
-		$(use_enable cg) \
-		$(use_enable cpu_flags_arm_neon neon) \
-		$(use_enable cpu_flags_arm_vfp floathard) \
-		$(use_enable cpu_flags_x86_sse2 sse) \
-		$(use_enable dispmanx) \
-		$(use_enable egl) \
-		$(use_enable ffmpeg) \
-		$(use_enable gles2 opengles) \
-		$(use_enable gles3 opengles3) \
-		$(use_enable hid) \
-		$(use_enable jack) \
-		$(use_enable kms) \
-		$(use_enable libass ssa) \
-		$(use_enable libusb) \
-		$(use_enable materialui) \
-		$(use_enable network networking) \
-		$(use_enable openal al) \
-		$(use_enable opengl) \
-		$(use_enable osmesa) \
-		$(use_enable oss) \
-		$(use_enable ozone) \
-		$(use_enable pulseaudio pulse) \
-		$(use_enable rgui) \
-		$(use_enable sdl) \
-		$(use_enable sdl2) \
-		$(use_enable threads) \
-		$(use_enable truetype freetype) \
-		$(use_enable udev) \
-		$(use_enable v4l2) \
-		$(use_enable videocore) \
-		$(use_enable vulkan) \
-		$(use_enable wayland) \
-		$(use_enable X x11) \
-		$(use_enable xinerama) \
-		$(use_enable xmb) \
-		$(use_enable xv xvideo) \
-		$(use_enable zlib)
-}
-
-src_compile() {
-	emake $(usex debug "DEBUG=1" "")
-	if use filters; then
-		emake $(usex debug "build=debug" "build=release") -C gfx/video_filters/
-		emake $(usex debug "build=debug" "build=release") -C libretro-common/audio/dsp_filters/
-	fi
-}
-
-src_install() {
-	# Install core files and directories.
-	emake DESTDIR="${D}" install
-
-	# Install documentation.
-	dodoc README.md
-
-	if use filters; then
-		# Install video filters.
-		insinto ${RETROARCH_LIB_DIR}/filters/video/
-		doins "${S}"/gfx/video_filters/*.so
-		doins "${S}"/gfx/video_filters/*.filt
-
-		# Install audio filters.
-		insinto ${RETROARCH_LIB_DIR}/filters/audio/
-		doins "${S}"/libretro-common/audio/dsp_filters/*.dsp
-	fi
-}
-
-pkg_postinst() {
-	if use oss; then
-		ewarn ""
-		ewarn "OSS support is enabled, however it is not installed as a dependency."
-		ewarn "Make sure you have OSS installed in your system."
-		ewarn ""
-	fi
-}

diff --git a/games-emulation/RetroArch/metadata.xml b/games-emulation/RetroArch/metadata.xml
index b1549cca8..5ad5cc5ff 100644
--- a/games-emulation/RetroArch/metadata.xml
+++ b/games-emulation/RetroArch/metadata.xml
@@ -31,8 +31,7 @@
 		<flag name="ozone">Ozone menu</flag>
 		<flag name="pulseaudio">PulseAudio support</flag>
 		<flag name="rgui">RGUI menu</flag>
-		<flag name="sdl">SDL support</flag>
-		<flag name="sdl2">SDL2 support (disables SDL 1.x)</flag>
+		<flag name="sdl">SDL2 support</flag>
 		<flag name="truetype">FreeType support</flag>
 		<flag name="threads">Threading support</flag>
 		<flag name="udev">Udev/Evdev gamepad support</flag>


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-09-21  8:47 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-17  7:03 [gentoo-commits] repo/proj/guru:master commit in: games-emulation/RetroArch/ Viorel Munteanu
  -- strict thread matches above, loose matches on Subject: below --
2024-09-21  8:47 David Roman
2024-09-21  8:47 David Roman
2024-09-14  0:43 David Roman
2024-01-15 15:46 David Roman
2024-01-15 15:46 David Roman
2023-06-17  7:03 Viorel Munteanu
2023-06-15  9:33 Florian Schmaus

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox