mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
* avrdude SUMMARY must have at least 3 words * bebook SUMMARY must have at least 3 words Re-ordered blocks * bzflag SUMMARY must have at least 3 words Re-ordered blocks * c_ares SUMMARY must start with capital letter Re-ordered blocks * cmake SUMMARY must have at least 3 words Re-ordered blocks * command_not_found SUMMARY must have at least 3 words Added BUILD_PREREQUIRES Re-ordered blocks * confuse SUMMARY must start with capital letter Re-ordered blocks * cream SUMMARY must start with capital letter Re-ordered blocks * croscorefonts SUMMARY must have at least 3 words Re-ordered blocks * cssselect SUMMARY must start with capital letter Re-ordered blocks * dcron SUMMARY must start with capital letter Re-ordered blocks * eggchess SUMMARY must have at least 3 words Re-ordered blocks
87 lines
2.5 KiB
Bash
87 lines
2.5 KiB
Bash
SUMMARY="An online multiplayer 3D tank battle game"
|
|
DESCRIPTION="BZFlag is a free online multiplayer 3D tank battle game. The name \
|
|
originates from \"Battle Zone Capture The Flag\". It runs on Windows, Mac OSX, \
|
|
Linux, BSD, and other platforms. It was one of the most popular games ever on \
|
|
Silicon Graphics machines and continues to be developed and improved to this \
|
|
day."
|
|
HOMEPAGE="http://www.bzflag.org/"
|
|
COPYRIGHT="1993-2010 Tim Riker"
|
|
LICENSE="GNU LGPL v2.1"
|
|
REVISION="1"
|
|
SOURCE_URI="http://downloads.sourceforge.net/project/bzflag/bzflag%20source/$portVersion/bzflag-$portVersion.tar.bz2"
|
|
CHECKSUM_SHA256="4f7bc52284cc4b39fc352855e555b2b064c1de6a18f7474e249073070762c811"
|
|
PATCHES="bzflag-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="!x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
bzflag$secondaryArchSuffix = $portVersion
|
|
cmd:bzadmin$secondaryArchSuffix
|
|
cmd:bzfs$secondaryArchSuffix
|
|
lib:HoldTheFlag$secondaryArchSuffix
|
|
lib:Phoenix$secondaryArchSuffix
|
|
lib:SAMPLE_PLUGIN$secondaryArchSuffix
|
|
lib:TimeLimit$secondaryArchSuffix
|
|
lib:airspawn$secondaryArchSuffix
|
|
lib:autoFlagReset$secondaryArchSuffix
|
|
lib:chathistory$secondaryArchSuffix
|
|
lib:customflagsample$secondaryArchSuffix
|
|
lib:fairCTF$secondaryArchSuffix
|
|
lib:fastmap$secondaryArchSuffix
|
|
lib:flagStay$secondaryArchSuffix
|
|
lib:hiddenAdmin$secondaryArchSuffix
|
|
lib:keepaway$secondaryArchSuffix
|
|
lib:killall$secondaryArchSuffix
|
|
lib:koth$secondaryArchSuffix
|
|
lib:logDetail$secondaryArchSuffix
|
|
lib:nagware$secondaryArchSuffix
|
|
lib:playHistoryTracker$secondaryArchSuffix
|
|
lib:rabbitTimer$secondaryArchSuffix
|
|
lib:rabidRabbit$secondaryArchSuffix
|
|
lib:recordmatch$secondaryArchSuffix
|
|
lib:regFlag$secondaryArchSuffix
|
|
lib:RogueGenocide$secondaryArchSuffix
|
|
lib:serverControl$secondaryArchSuffix
|
|
lib:shockwaveDeath$secondaryArchSuffix
|
|
lib:teamflagreset$secondaryArchSuffix
|
|
lib:thiefControl$secondaryArchSuffix
|
|
lib:timedctf$secondaryArchSuffix
|
|
lib:wwzones$secondaryArchSuffix
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libcares$secondaryArchSuffix
|
|
lib:libcrypto$secondaryArchSuffix
|
|
lib:libcurl$secondaryArchSuffix
|
|
lib:libssl$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libcares$secondaryArchSuffix
|
|
devel:libcurl$secondaryArchSuffix
|
|
devel:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:autoconf
|
|
cmd:gawk
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
export LDFLAGS=-lnetwork
|
|
runConfigure ./configure --disable-ares-build --disable-curl-build --disable-zlib-build
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
rm $libDir/*.la
|
|
}
|