From 026c7b9dfbc2b122e8932f0efead471d2e8d8f2f Mon Sep 17 00:00:00 2001 From: Ionen Wolkens Date: Fri, 3 Apr 2026 22:36:50 -0400 Subject: [PATCH] media-libs/libsdl2: add 2.32.66 Signed-off-by: Ionen Wolkens --- media-libs/libsdl2/Manifest | 1 + media-libs/libsdl2/libsdl2-2.32.66.ebuild | 66 +++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100644 media-libs/libsdl2/libsdl2-2.32.66.ebuild diff --git a/media-libs/libsdl2/Manifest b/media-libs/libsdl2/Manifest index 4e612a2c0c38a..cfcdd1de660af 100644 --- a/media-libs/libsdl2/Manifest +++ b/media-libs/libsdl2/Manifest @@ -7,3 +7,4 @@ DIST SDL2-2.32.4.tar.gz 7627336 BLAKE2B 55a24c75c90d77358b647d44c05525ee00bc69f6 DIST SDL2-2.32.6.tar.gz 7627447 BLAKE2B d08c733d87af036e8a015a4ef313bbdf4049d7ddc3968693a820ea69e473f2df486eda02303d8fd6b33c2d166dcb7dee7ac0cba19e0b8198c80db7d996fe4702 SHA512 2dae8ae9f10e160a50f625daddad891d25e782130e5a5e3f02079d94ab8858aca92ab8871ab19fdf5be6aca83ffeb9c1ea03949841c2506066f12d2bf2332d47 DIST SDL2-2.32.8.tar.gz 7627356 BLAKE2B 01cbe46513cffac1bb43e82353448288359d957910e40c96d83cb4993c00a3ed409e95221a42563a3abf720468744c46da54fe889755f212260cc7c2f57b3830 SHA512 484c33638e7bd1002815bb1f6a47a292d1eaf0b963598dde65f4a3e077dfe75ee35b9ea4b3b767365b3ef4f613c4d69ce55b5e96675de562994344e83a978272 DIST sdl2-compat-2.32.64.tar.gz 2823149 BLAKE2B 647c66d29fc98b521d2e38f98abc8e9e4d9edb6f648ce157122c2d29b661d3086b70a6537549a7d16b09ed1603b4511b8c2452e817bc8cbca1316164905270db SHA512 22c73c794bc2a750d7ec1a3fa16db9e63af4e058f96975b27f856a89a91760596f54899b22d2d8ae3f5a9a6e7f58a37870965d540761212f6c746a8f4fc2e775 +DIST sdl2-compat-2.32.66.tar.gz 2823392 BLAKE2B f1a13a74b3250c1c00a0fb741faea9ef0a1698e9f5a2d9e81501f4da9c594ac862d44e3bfff1a960492aca8589de94df591578fd7511c8f09fafbba1abd65a12 SHA512 c8d4d45b9bf2f3904aee19b75878deebecef3b2e68dc2905c787941ad8078753d0616685c5cad586fe823111b026a6b7779faeedcf6daa3ab0a89e48ce3f599f diff --git a/media-libs/libsdl2/libsdl2-2.32.66.ebuild b/media-libs/libsdl2/libsdl2-2.32.66.ebuild new file mode 100644 index 0000000000000..da0e316395045 --- /dev/null +++ b/media-libs/libsdl2/libsdl2-2.32.66.ebuild @@ -0,0 +1,66 @@ +# Copyright 2025-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake-multilib dot-a + +# TODO: switch to new description when non-compat is gone, this is so it is +# not displayed on packages.gentoo.org which may be confusing for users +DESCRIPTION="Simple Direct Media Layer" +#DESCRIPTION="Simple Direct Media Layer 2 compatibility wrapper around SDL3" +HOMEPAGE="https://www.libsdl.org/" +SRC_URI="https://www.libsdl.org/release/sdl2-compat-${PV}.tar.gz" +S=${WORKDIR}/sdl2-compat-${PV} + +LICENSE="ZLIB" +SLOT="0" +# unkeyworded for testing +#KEYWORDS="~amd64" +# this skips most non-compat libsdl2 former IUSE that are not used by revdeps, +# albeit it is questionable that some depend on audio alsa/pipewire (note that +# static-libs is left out because it is useless for static-only builds given +# it will dlopen the shared libsdl3 anyway) +# +# TODO: either update revdeps to have (+) on no-op IUSE (haptic, joystick, +# sound, and video) then cleanup, or don't for less overlay issues and instead +# force in profiles to avoid unnecessary rebuilds -- not forced right now given +# a >=2.32.50 in profile would force for a potential future non-compat 2.34.0 +IUSE=" + X alsa gles2 +haptic +joystick kms opengl pipewire pulseaudio + +sound test +video vulkan wayland +" +REQUIRED_USE="gles2? ( opengl )" +RESTRICT="!test? ( test )" + +# libsdl3 is dlopen'ed and USE at build time should not matter except X, it +# enables everything else but will not work without libsdl3 support at runtime +RDEPEND=" + >=media-libs/libsdl3-3.2.12[X?,alsa?,opengl?,pipewire?,pulseaudio?,vulkan?,wayland?,${MULTILIB_USEDEP}] +" +DEPEND=" + ${RDEPEND} + X? ( + x11-base/xorg-proto + x11-libs/libX11 + ) +" + +src_configure() { + lto-guarantee-fat + + local mycmakeargs=( + -DSDL2COMPAT_TESTS=$(usex test) + -DSDL2COMPAT_X11=$(usex X) + ) + + cmake-multilib_src_configure +} + +src_install() { + cmake-multilib_src_install + + strip-lto-bytecode + + rm -r -- "${ED}"/usr/share/licenses || die +}