1SUMMARY="Free 3D city simulator"
2DESCRIPTION="Once upon the time, I was travelling over the Internet, and I \
3found a city simulator under linux called FreeReign at SourceForge. But it \
4isn't maintained any more. I decided to push the game up so I had a look at \
5the FreeReign sources. However, its codes were not obvious to me, and in \
6addition the game design didn't fit my programming style. Finally, I decided \
7to write my own free 3D city simulator, based on the original ideas of the \
8FreeReign project. Few months later, OpenCity was born.
9
10OpenCity is a full 3D city simulator game project. It is written in standard \
11C++ with OpenGL and SDL from scratch. It is not intended to be a clone of any \
12famous city simulator from Max*s. So, if you are looking to download a free \
13SimCity 4 like, please forget OpenCity. I work on it at my spare time, and I \
14really meant it \"my spare time\" !
15
16OpenCity is also an OpenGL/SDL/C++ game programming tutorial. In the \
17resources section, you can find the micro simulators' algorithm, design \
18document, UML diagram and information about other issues. The UML diagram is \
19edited with Umbrello, the free UML diagram editor for KDE."
20HOMEPAGE="http://www.opencity.info/"
21COPYRIGHT="2003-2008 Duong Khang NGUYEN
22    2003-2008 Frederic RODRIGO
23    2006-2007 Brodie THIESFIELD
24    2006 Angelo 'Encelo' THEODOROU
25    2002-2004 Yves BERQUIN
26    1999 Jeff MOLOFEE"
27LICENSE="GNU GPL v2"
28REVISION="1"
29SOURCE_URI="http://sourceforge.net/projects/opencity/files/Stable/0.0.6/opencity-0.0.6.3stable.tar.bz2"
30CHECKSUM_SHA256="23e31e44644c01f0a7d836a71fd03fa63ffbfd4bc983b4578e7836b345cfad03"
31SOURCE_DIR="opencity-0.0.6.3stable"
32
33ARCHITECTURES="!x86_gcc2"
34SECONDARY_ARCHITECTURES="!x86"
35
36PROVIDES="
37	opencity$secondaryArchSuffix = $portVersion
38"
39
40BUILD_REQUIRES="
41	haiku${secondaryArchSuffix}_devel
42	devel:libgl$secondaryArchSuffix
43	devel:libglu$secondaryArchSuffix
44	devel:libpng$secondaryArchSuffix
45	devel:libsdl_image$secondaryArchSuffix
46	devel:libsdl_mixer$secondaryArchSuffix
47	devel:libsdl_net_1.2$secondaryArchSuffix
48"
49BUILD_PREREQUIRES="
50	cmd:awk
51	cmd:gcc$secondaryArchSuffix
52	cmd:make
53	cmd:pkg_config$secondaryArchSuffix
54	cmd:sdl_config$secondaryArchSuffix
55"
56
57BUILD()
58{
59	runConfigure ./configure
60	make $jobArgs
61}
62
63INSTALL()
64{
65	make install
66}
67