mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
93 lines
1.7 KiB
Bash
93 lines
1.7 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/"
|
|
SOURCE_URI="svn+svn://svn.code.sf.net/p/sdl2gfx/code/trunk"
|
|
#CHECKSUM_MD5="abc123"
|
|
|
|
LICENSE="Zlib"
|
|
COPYRIGHT="1999-2012 A. Schiffler"
|
|
|
|
REVISION="1"
|
|
|
|
ARCHITECTURES="x86 x86_gcc2"
|
|
|
|
PROVIDES="
|
|
sdl2_gfx = $portVersion compat >= 2
|
|
lib:libSDL2_gfx = 14.9.1 compat >= 14
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku
|
|
libsdl2
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:libsdl2
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:gcc${secondaryArchSuffix}
|
|
cmd:ld${secondaryArchSuffix}
|
|
cmd:libtool
|
|
cmd:make
|
|
cmd:pkg_config${secondaryArchSuffix}
|
|
cmd:sdl2_config${secondaryArchSuffix}
|
|
"
|
|
|
|
SOURCE_DIR="SDL2_gfx-$portVersion"
|
|
|
|
#BUILD_PACKAGE_ACTIVATION_PHASE = "TEST"
|
|
|
|
BUILD()
|
|
{
|
|
./autogen.sh
|
|
rm aclocal.m4
|
|
libtoolize --force --copy --install
|
|
aclocal --force --install -I acinclude
|
|
aclocal -I acinclude
|
|
automake --foreign --include-deps --add-missing --copy
|
|
autoconf
|
|
autoreconf
|
|
runConfigure ./configure --disable-mmx
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
prepareInstalledDevelLib libSDL2_gfx
|
|
fixPkgconfig
|
|
|
|
packageEntries devel \
|
|
$developDir
|
|
}
|
|
|
|
PROVIDES_devel="
|
|
devel:SDL2_gfx = 14.9.1 compat >= 0
|
|
devel:libSDL2_gfx = 14.9.1 compat >= 0
|
|
devel:libSDL2_gfx = $portVersion compat >= 2.0
|
|
devel:sdl2_gfx = 14.9.1 compat >= 0
|
|
"
|
|
|
|
REQUIRES_devel="
|
|
sdl2_gfx == $portVersion base
|
|
"
|
|
|
|
|
|
TEST()
|
|
{
|
|
cd Test
|
|
runConfigure ./configure
|
|
# fails to configure due to missing sdl_gfx
|
|
make
|
|
ls
|
|
}
|