mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-08 21:00:05 +02:00
85 lines
2.0 KiB
Bash
85 lines
2.0 KiB
Bash
SUMMARY="SDL2 graphics drawing primitives and other support functions"
|
|
DESCRIPTION="
|
|
The SDL2_gfx library evolved out of the SDL_gfxPrimitives code which provided \
|
|
basic drawing routines such as lines, circles or polygons and SDL_rotozoom \
|
|
which implemented a interpolating rotozoomer for SDL_surfaces."
|
|
HOMEPAGE="http://www.ferzkopp.net/joomla/content/view/19/14/"
|
|
COPYRIGHT="1999-2018 A. Schiffler"
|
|
LICENSE="Zlib"
|
|
REVISION="4"
|
|
SOURCE_URI="http://www.ferzkopp.net/Software/SDL2_gfx/SDL2_gfx-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="63e0e01addedc9df2f85b93a248f06e8a04affa014a835c2ea34bfe34e576262"
|
|
SOURCE_DIR="SDL2_gfx-$portVersion"
|
|
|
|
ARCHITECTURES="all"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
libVersion="0.0.2"
|
|
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
|
|
|
|
PROVIDES="
|
|
sdl2_gfx$secondaryArchSuffix = $portVersion compat >= 1
|
|
lib:libSDL2_gfx_1.0$secondaryArchSuffix = $libVersionCompat
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libGL$secondaryArchSuffix
|
|
lib:libSDL2_2.0$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
sdl2_gfx${secondaryArchSuffix}_devel = $portVersion compat >= 1
|
|
devel:libSDL2_gfx$secondaryArchSuffix = $libVersionCompat
|
|
devel:libSDL2_gfx_1.0$secondaryArchSuffix = $libVersionCompat
|
|
"
|
|
REQUIRES_devel="
|
|
sdl2_gfx$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libSDL2_2.0$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoreconf
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:libtoolize$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
defineDebugInfoPackage sdl2_gfx$secondaryArchSuffix \
|
|
$libDir/libSDL2_gfx-1.0.so.$libVersion
|
|
|
|
BUILD()
|
|
{
|
|
autoreconf -fi
|
|
runConfigure ./configure --disable-mmx
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
#remove libtool file
|
|
rm $libDir/*.{a,la}
|
|
|
|
prepareInstalledDevelLibs libSDL2_gfx libSDL2_gfx-1.0
|
|
fixPkgconfig
|
|
|
|
packageEntries devel \
|
|
$developDir
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
cd Test
|
|
runConfigure ./configure
|
|
# fails to configure due to missing sdl2_gfx
|
|
make $jobArgs
|
|
ls
|
|
}
|