mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 14:08:51 +02:00
90 lines
2.0 KiB
Bash
90 lines
2.0 KiB
Bash
SUMMARY="Beacuse hackers too need to play with balls"
|
|
DESCRIPTION="Zaz is a game where the player has to get rid of incoming balls \
|
|
by arranging them in triplets. The idea of the game is loosely based on games \
|
|
like Luxor, Zuma and Puzzle Bobble. The twists that make Zaz stand out from \
|
|
other games of this type are that the balls have to be picked from the path \
|
|
(insted of being randomly assigned for the player) and that the player's
|
|
\"vehicle\" is also attached to a path which is different from level to level.
|
|
|
|
But one thing makes this game stand out most from it's predecessors - it's \
|
|
free as in freedom ! You are free to download it, free to play it, free to \
|
|
modify, love and hate it."
|
|
HOMEPAGE="http://zaz.sourceforge.net"
|
|
SOURCE_URI="http://sourceforge.net/projects/zaz/files/zaz-$portVersion.tar.bz2"
|
|
CHECKSUM_SHA256="e332cc1a6559e18a2b632940c53d20e2f2d2b583ba9dc1fd02a586437f9f0397"
|
|
PATCHES="zaz$portVersion.patchset"
|
|
REVISION="1"
|
|
|
|
ARCHITECTURES="x86_gcc2"
|
|
|
|
PROVIDES="
|
|
zaz = $portVersion
|
|
cmd:zaz
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku
|
|
lib:libSDL_1.2
|
|
lib:libvorbis
|
|
lib:libvorbisfile
|
|
lib:libtheoraenc
|
|
lib:libtheoradec
|
|
lib:libogg
|
|
lib:libftgl
|
|
lib:libfreetype
|
|
lib:libintl
|
|
lib:libGL
|
|
lib:libvorbisenc
|
|
lib:libSDL_image_1.2
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libftgl
|
|
devel:libintl
|
|
devel:libsdl
|
|
devel:libsdl_image
|
|
devel:libogg
|
|
devel:libtheoradec
|
|
devel:libtheoraenc
|
|
devel:libvorbisfile
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:awk
|
|
cmd:find
|
|
cmd:gcc
|
|
cmd:make
|
|
cmd:pkg_config
|
|
"
|
|
|
|
DEPEND="
|
|
media-libs/sdl-image >= 1.2.10
|
|
"
|
|
|
|
BUILD() {
|
|
# Gettextize wants the user to press enter after running it, remove that
|
|
# "feature" from it...
|
|
grep -v '/dev/tty' < /bin/gettextize > gettextize
|
|
chmod +x gettextize
|
|
|
|
#libtoolize --force --copy --install
|
|
automake --add-missing
|
|
aclocal
|
|
./gettextize -f
|
|
autoconf
|
|
automake
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL() {
|
|
make install
|
|
}
|
|
|
|
COPYRIGHT="2009-2010 Remigiusz Dybka, Leonard Ritter and Kinga Dybka"
|
|
LICENSE="GNU GPL v3"
|