gentoo/dev-perl/SDL/SDL-2.548.0-r3.ebuild
Sam James d6f2d78341
dev-perl/SDL: try more memory safety fixes
Debian are using these. I still get a UAF in the tests though.

Bug: https://bugs.gentoo.org/907609
Signed-off-by: Sam James <sam@gentoo.org>
2024-05-02 07:35:46 +01:00

59 lines
1.3 KiB
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=FROGGS
DIST_VERSION=2.548
inherit perl-module
DESCRIPTION="Simple DirectMedia Layer (SDL) bindings for perl"
HOMEPAGE="http://sdl.perl.org/ https://search.cpan.org/dist/SDL/ https://github.com/PerlGameDev/SDL"
LICENSE="GPL-2 OFL-1.1"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~x86"
RDEPEND="
>=dev-perl/Alien-SDL-1.446
dev-perl/Capture-Tiny
>=virtual/perl-CPAN-1.920.0
>=virtual/perl-ExtUtils-CBuilder-0.260.301
>=dev-perl/File-ShareDir-1.0.0
>=dev-perl/Module-Build-0.400.0
media-libs/libjpeg-turbo
virtual/perl-Scalar-List-Utils
dev-perl/Tie-Simple
media-libs/libpng:0
media-libs/libsdl
media-libs/sdl-gfx
media-libs/sdl-image
media-libs/sdl-mixer
media-libs/sdl-pango
media-libs/sdl-ttf
media-libs/smpeg
media-libs/tiff:0
virtual/glu
virtual/opengl
"
BDEPEND="${RDEPEND}
test? (
>=dev-perl/Test-Most-0.210.0
)
"
mydoc='CHANGELOG README TODO'
PERL_RM_FILES=(
# Hangs, see bug #892011 and https://aur.archlinux.org/packages/perl-sdl#comment-903413.
t/core_video.t
)
PATCHES=(
"${FILESDIR}"/${PN}-2.546-pointer.patch
"${FILESDIR}"/${PN}-2.546-implicit-func-decl.patch
"${FILESDIR}"/${PN}-2.548-perl537_sv_nv.patch
"${FILESDIR}"/${PN}-2.548-refcount.patch
"${FILESDIR}"/${PN}-2.548-uaf-surface.patch
)