diff --git a/media-libs/agar/agar-1.4.1.recipe b/media-libs/agar/agar-1.4.1.recipe deleted file mode 100644 index a970899d1..000000000 --- a/media-libs/agar/agar-1.4.1.recipe +++ /dev/null @@ -1,29 +0,0 @@ -DESCRIPTION="A modern open-source, cross-platform toolkit for graphical applications" -HOMEPAGE="http://libagar.org/index.html.en" -SOURCE_URI="http://stable.hypertriton.com/agar/agar-1.4.1.tar.gz" -REVISION="1" -STATUS_HAIKU="broken" -DEPEND="" -CHECKSUM_MD5="ce71fb11ad79c926a968a4ed29053820" -BUILD() -{ - cd agar-1.4.1 - ./configure --prefix=`finddir B_COMMON_DIRECTORY` - make -} - -INSTALL() -{ - cd agar-1.4.1 - make install -} - -TEST() -{ - cd agar-1.4.1 -# make test -# make check -} - -LICENSE="BSD (2-clause)" -COPYRIGHT="2002-2011 Hypertrition, Inc." diff --git a/media-libs/agar/agar-1.5.0.recipe b/media-libs/agar/agar-1.5.0.recipe new file mode 100644 index 000000000..20ea99912 --- /dev/null +++ b/media-libs/agar/agar-1.5.0.recipe @@ -0,0 +1,59 @@ +SUMMARY="A modern open-source, cross-platform toolkit for graphical applications" +DESCRIPTION="Cross-platform GUI toolkit. Agar provides a base framework and \ +a collection of GUI widgets from which GUI applications can be built. Agar \ +can be styled and themed using a CSS-style engine." +HOMEPAGE="http://libagar.org/index.html.en" +COPYRIGHT="2002-2016 Hypertrition, Inc." +LICENSE="BSD (2-clause)" +REVISION="1" +SOURCE_URI="http://stable.hypertriton.com/agar/agar-$portVersion.tar.gz" +CHECKSUM_SHA256="82342ded342c578141984befe9318f3d376176e5f427ae3278f8985f26663c00" + +ARCHITECTURES="!x86_gcc2 !x86 !x86_64" +SECONDARY_ARCHITECTURES="!x86_gcc2 !x86" + +PROVIDES=" + agar$secondaryArchSuffix = $portVersion + cmd:agar$secondaryArchSuffix + " + +REQUIRES=" + haiku$secondaryArchSuffix + lib:libfreetype$secondaryArchSuffix + lib:libGL$secondaryArchSuffix + lib:libjpeg$secondaryArchSuffix + lib:libpng16$secondaryArchSuffix + lib:libsdl$secondaryArchSuffix + lib:liblua$secondaryArchSuffix + lib:libsndfile$secondaryArchSuffix + " + +BUILD_REQUIRES=" + haiku${secondaryArchSuffix}_devel + devel:libfontconfig$secondaryArchSuffix + devel:libfreetype$secondaryArchSuffix + devel:libGL$secondaryArchSuffix + devel:libjpeg$secondaryArchSuffix + devel:libpng16$secondaryArchSuffix + devel:libsdl$secondaryArchSuffix + devel:libsndfile$secondaryArchSuffix + " + +BUILD_PREREQUIRES=" + cmd:awk + cmd:gcc$secondaryArchSuffix + cmd:libtool$secondaryArchSuffix + cmd:make + cmd:perl + " + +BUILD() +{ + ./configure --prefix=$prefix + make depend all $jobArgs +} + +INSTALL() +{ + make install +}