1SUMMARY="Online multiplayer isometric tank game"
2DESCRIPTION="netPanzer is an isometric view real-time tactical game designed \
3for play across the Internet and over LAN systems. One on one games are \
4possible via direct connect or modem. netPanzer is designed for FAST ACTION \
5combat -- it is not another resource management clone. In fact, there aren't \
6any resources at all. Each player will have many units of different types at \
7their disposal.\
8\
9Players can fight until their units are destroyed -- then respawn and keep on \
10going. The game is real-time, but it's based on quick tactical action and unit \
11management. Battles progress quickly and constantly; in fact, they never let \
12up. There is no stop in the action because there is no waiting for resources \
13to be collected and converted into weaponry. Players can join or leave \
14multiplayer games at any time."
15HOMEPAGE="https://www.netpanzer.info/"
16COPYRIGHT="1999 Pyrosoft
17	2007-2015 NetPanzer developers"
18LICENSE="GNU GPL v2"
19REVISION="2"
20SOURCE_URI="svn://svn.code.sf.net/p/netpanzerfp/code/trunk/netpanzer#1450"
21PATCHES="netpanzer-$portVersion.patchset"
22
23ARCHITECTURES="!x86_gcc2"
24SECONDARY_ARCHITECTURES="x86"
25
26PROVIDES="
27	netpanzer$secondaryArchSuffix = $portVersion
28	cmd:netpanzer$secondaryArchSuffix
29	"
30REQUIRES="
31	haiku$secondaryArchSuffix
32	lib:libphysfs$secondaryArchSuffix
33	lib:libSDL_1.2$secondaryArchSuffix
34	lib:libSDL_mixer_1.2$secondaryArchSuffix
35	"
36
37BUILD_REQUIRES="
38	haiku${secondaryArchSuffix}_devel
39	devel:libphysfs$secondaryArchSuffix
40	devel:libsdl$secondaryArchSuffix
41	devel:libsdl_mixer$secondaryArchSuffix
42	"
43BUILD_PREREQUIRES="
44	cmd:gcc$secondaryArchSuffix
45	cmd:scons
46	cmd:svnversion
47	"
48
49BUILD()
50{
51	scons with_physfs=physfs datadir=$dataDir/netpanzer $jobArgs
52}
53
54INSTALL()
55{
56	mkdir -p $dataDir/netpanzer $binDir
57	cp -r cache maps pics powerups scripts sound units wads $dataDir/netpanzer
58	cp netpanzer $binDir
59}
60