1SUMMARY="A module that is required only when building GNOME from the repository"
2DESCRIPTION="This module contains various files needed to bootstrap GNOME \
3modules built from git."
4HOMEPAGE="http://git.gnome.org/browse/gnome-common/"
5COPYRIGHT="1999-2010 Martin Baulig"
6LICENSE="GNU GPL v3"
7REVISION="1"
8SOURCE_URI="http://ftp.gnome.org/pub/GNOME/sources/gnome-common/3.18/gnome-common-3.18.0.tar.xz"
9CHECKSUM_SHA256="22569e370ae755e04527b76328befc4c73b62bfd4a572499fde116b8318af8cf"
10SOURCE_DIR="gnome-common-3.18.0"
11
12ARCHITECTURES="all ?x86_gcc2"
13SECONDARY_ARCHITECTURES="x86"
14
15PROVIDES="
16	gnome_common$secondaryArchSuffix = $portVersion
17	cmd:gnome_autogen.sh$secondaryArchSuffix = $portVersion
18	"
19REQUIRES="
20	haiku$secondaryArchSuffix
21	"
22
23BUILD_REQUIRES="
24	haiku${secondaryArchSuffix}_devel
25	"
26BUILD_PREREQUIRES="
27	cmd:autoconf
28	cmd:automake
29	cmd:autoreconf
30	cmd:make
31	"
32
33BUILD()
34{
35		./autogen.sh
36        runConfigure ./configure
37        make
38}
39
40INSTALL()
41{
42        make install
43}
44