pygame: fix recipe issues, update affected recipes. (#11530)

Fixes #11529.
This commit is contained in:
OscarL
2024-12-26 04:54:47 -03:00
committed by GitHub
parent 13bf14bfd8
commit e777491cec
4 changed files with 121 additions and 97 deletions

View File

@@ -8,7 +8,7 @@ COPYRIGHT="2000-2004, 2007 Pete Shinners
2007 Richard Goedeken
2007-2008 Marcus von Appen"
LICENSE="GNU LGPL v2.1"
REVISION="5"
REVISION="6"
SOURCE_URI="https://files.pythonhosted.org/packages/source/p/pygame/pygame-$portVersion.tar.gz"
CHECKSUM_SHA256="63b038da116a643046181b02173fd894d87d2f85ecfd6aa7d5ece73c6ef501e9"
SOURCE_DIR="pygame-$portVersion"
@@ -17,81 +17,93 @@ PATCHES="pygame-$portVersion.patchset"
ARCHITECTURES="all !x86_gcc2"
SECONDARY_ARCHITECTURES="x86"
PYTHON_PACKAGES=(python310)
PYTHON_VERSIONS=(3.10)
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
PROVIDES="
pygame$secondaryArchSuffix = $portVersion
$portName = $portVersion
"
if [ "$targetArchitecture" = x86_gcc2 ]; then
PROVIDES+="
pygame = $portVersion
"
fi
REQUIRES="
cmd:cython$pythonVersion
cmd:f2py3
cmd:python3
lib:libfreetype$secondaryArchSuffix
lib:libjpeg$secondaryArchSuffix
lib:libpng16$secondaryArchSuffix
lib:libSDL_1.2$secondaryArchSuffix
lib:libSDL_gfx$secondaryArchSuffix
lib:libSDL_image_1.2$secondaryArchSuffix
lib:libSDL_mixer_1.2$secondaryArchSuffix
lib:libSDL_ttf_2.0$secondaryArchSuffix
# lib:libSDL2_2.0$secondaryArchSuffix
# lib:libSDL2_gfx_1.0$secondaryArchSuffix
# lib:libSDL2_image_2.0$secondaryArchSuffix
# lib:libSDL2_mixer_2.0$secondaryArchSuffix
# lib:libSDL2_ttf_2.0$secondaryArchSuffix
lib:libsmpeg_0.4
"
# portmidi
# portmap
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
setuptools_$pythonPackage
devel:libfreetype$secondaryArchSuffix
devel:libjpeg$secondaryArchSuffix
devel:libpng16$secondaryArchSuffix
devel:libSDL_1.2$secondaryArchSuffix
devel:libSDL_gfx$secondaryArchSuffix
devel:libSDL_image_1.2$secondaryArchSuffix
devel:libSDL_mixer_1.2$secondaryArchSuffix
devel:libSDL_ttf_2.0$secondaryArchSuffix
# devel:libSDL2_2.0$secondaryArchSuffix
# devel:libSDL2_gfx_1.0$secondaryArchSuffix
# devel:libSDL2_image_2.0$secondaryArchSuffix
# devel:libSDL2_mixer_2.0$secondaryArchSuffix
# devel:libSDL2_ttf_2.0$secondaryArchSuffix
devel:libsmpeg_0.4
"
BUILD_PREREQUIRES="
cmd:cython$pythonVersion
cmd:gcc$secondaryArchSuffix
cmd:python3
cmd:pkg_config$secondaryArchSuffix
haiku$secondaryArchSuffix
"
BUILD()
{
# don't build without features
# to build against SDL2 remove -sdl1 from the next line
python=python$pythonVersion
echo "y" | $python setup.py build -auto -sdl1 || exit 1
}
PYTHON_VERSIONS=(3.10)
defaultVersion=3.10
for i in "${!PYTHON_VERSIONS[@]}"; do
pythonVersion=${PYTHON_VERSIONS[$i]}
pythonPackage=python${pythonVersion//.}
eval "PROVIDES_${pythonPackage}=\"
${portName}_$pythonPackage = $portVersion
\""
if [ "$targetArchitecture" = x86_gcc2 ]; then
eval "PROVIDES_${pythonPackage}+=\"
pygame_$pythonPackage = $portVersion
\""
fi
# This is because there was only one pygame package before.
if [ $pythonVersion = $defaultVersion ]; then
eval "REPLACES_$pythonPackage=\"
pygame
\""
fi
eval "REQUIRES_$pythonPackage=\"
haiku$secondaryArchSuffix
numpy_$pythonPackage
cmd:cython$pythonVersion
cmd:python$pythonVersion
lib:libfreetype$secondaryArchSuffix
lib:libjpeg$secondaryArchSuffix
lib:libpng16$secondaryArchSuffix
lib:libSDL_1.2$secondaryArchSuffix
lib:libSDL_gfx$secondaryArchSuffix
lib:libSDL_image_1.2$secondaryArchSuffix
lib:libSDL_mixer_1.2$secondaryArchSuffix
lib:libSDL_ttf_2.0$secondaryArchSuffix
lib:libsmpeg_0.4
\""
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
setuptools_$pythonPackage
devel:libfreetype$secondaryArchSuffix
devel:libjpeg$secondaryArchSuffix
devel:libpng16$secondaryArchSuffix
devel:libSDL_1.2$secondaryArchSuffix
devel:libSDL_gfx$secondaryArchSuffix
devel:libSDL_image_1.2$secondaryArchSuffix
devel:libSDL_mixer_1.2$secondaryArchSuffix
devel:libSDL_ttf_2.0$secondaryArchSuffix
devel:libsmpeg_0.4
"
BUILD_PREREQUIRES="
cmd:cython$pythonVersion
cmd:gcc$secondaryArchSuffix
cmd:python$pythonVersion
cmd:pkg_config$secondaryArchSuffix
"
done
INSTALL()
{
# GENERIC: all python_setuptools-based installs need this
python=python$pythonVersion
for i in "${!PYTHON_VERSIONS[@]}"; do
pythonVersion=${PYTHON_VERSIONS[$i]}
pythonPackage=python${pythonVersion//.}
python=python$pythonVersion
installLocation=$prefix/lib/$python/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
# to build against SDL2 remove -sdl1 from the next line
echo "y" | $python setup.py build -auto -sdl1 || exit 1
$python setup.py build install \
--root=/ --prefix=$prefix
packageEntries $pythonPackage \
$prefix/lib/python*
done
}