mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
* this fixes the wrong recipe names introduced by myself in #d525fee * adjust patch names to match corresponding recipes * additionally: create 'additional-files' folders as hint to some ports that do not have a proper recipe yet
30 lines
744 B
Plaintext
30 lines
744 B
Plaintext
DESCRIPTION="SDL_gfx - SDL graphics drawing primitives and other support functions"
|
|
HOMEPAGE="http://www.ferzkopp.net/joomla/content/view/19/14/"
|
|
SRC_URI="http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-2.0.22.tar.gz"
|
|
CHECKSUM_MD5="330f291f1f09a1bdf397c9b40d92ca41"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND="media-libs/libsdl >= 1.2.14"
|
|
BUILD()
|
|
{
|
|
cd SDL_gfx-2.0.22
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
automake
|
|
MANDIR=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man
|
|
LIBDIR=`finddir B_COMMON_LIB_DIRECTORY`
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
|
|
--libdir=$LIBDIR \
|
|
--mandir=$MANDIR
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd SDL_gfx-2.0.22
|
|
make install
|
|
}
|
|
LICENSE="GNU LGPL v2.1"
|
|
COPYRIGHT="1999-2010 A. Schiffler"
|