Updated .bep file for ftgl

This commit is contained in:
Scott McCreary
2009-11-30 02:04:58 +00:00
parent c0f4e65c07
commit 314c8f734f
2 changed files with 27 additions and 17 deletions

View File

@@ -1,17 +0,0 @@
DESCRIPTION="FTGL is a free cross-platform Open Source C++ library that uses Freetype2 to simplify rendering fonts in OpenGL applications"
HOMEPAGE="http://www.ohloh.net/p/ftgl"
SRC_URI="http://downloads.sourceforge.net/project/ftgl/FTGL%20Source/2.1.3%7Erc5/ftgl-2.1.3-rc5.tar.gz?use_mirror=ufpr"
CHECKSUM_MD5="fcf4d0567b7de9875d4e99a9f7423633"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
cd ftgl-2.1.3~rc5
./configure --build=i586-pc-beos --prefix=/boot/common
make
}
INSTALL {
cd ftgl-2.1.3~rc5
make install
}

View File

@@ -0,0 +1,27 @@
DESCRIPTION="FTGL is a free cross-platform Open Source C++ library that uses Freetype2 to simplify rendering fonts in OpenGL applications"
HOMEPAGE="http://www.ohloh.net/p/ftgl"
SRC_URI="http://downloads.sourceforge.net/project/ftgl/FTGL%20Source/2.1.3%7Erc5/ftgl-2.1.3-rc5.tar.gz"
CHECKSUM_MD5="fcf4d0567b7de9875d4e99a9f7423633"
REVISION="2"
STATUS_HAIKU="stable"
DEPEND="gcc4"
BUILD {
cd ftgl-2.1.3~rc5
cp /boot/common/share/aclocal/libtool.m4 m4
cp /boot/common/share/aclocal/ltoptions.m4 m4
cp /boot/common/share/aclocal/ltversion.m4 m4
cp /boot/common/share/aclocal/ltsugar.m4 m4
cp /boot/common/share/aclocal/lt~obsolete.m4 m4
echo "AC_CONFIG_MACRO_DIR([m4]) >> configure.in"
libtoolize --copy --force --install
aclocal -I m4
./autogen.sh
./configure --prefix=/boot/common
make
}
INSTALL {
cd ftgl-2.1.3~rc5
cp ftgl.pc /boot/common/lib/pkgconfig
make install
}