gnome_common 3.18

This commit is contained in:
Adrián Arroyo Calle
2016-01-07 18:41:57 +00:00
parent d657a30c4f
commit 44b67310cd
2 changed files with 45 additions and 24 deletions

View File

@@ -1,24 +0,0 @@
DESCRIPTION="
A module that is required only when building GNOME from the repository.
"
HOMEPAGE="http://git.gnome.org/browse/gnome-common/"
SOURCE_URI="git+git://git.gnome.org/gnome-common"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD()
{
cd gnome-common-2.28
./autogen.sh
./configure --prefix=`finddir B_COMMON_DIRECTORY`
make
}
INSTALL()
{
cd gnome-common-2.28
make install
}
LICENSE="GNU GPL v3"
COPYRIGHT="1999-2010 Martin Baulig"

View File

@@ -0,0 +1,45 @@
SUMMARY="A module that is required only when building GNOME from the repository"
DESCRIPTION="This module contains various files needed to bootstrap GNOME \
modules built from git."
HOMEPAGE="http://git.gnome.org/browse/gnome-common/"
COPYRIGHT="1999-2010 Martin Baulig"
LICENSE="GNU GPL v3"
REVISION="1"
SOURCE_URI="http://ftp.gnome.org/pub/GNOME/sources/gnome-common/3.18/gnome-common-3.18.0.tar.xz"
CHECKSUM_SHA256="22569e370ae755e04527b76328befc4c73b62bfd4a572499fde116b8318af8cf"
SOURCE_DIR="gnome-common-3.18.0"
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
gnome_common$secondaryArchSuffix = $portVersion
cmd:gnome_autogen.sh$secondaryArchSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
cmd:make
cmd:automake
cmd:autoconf
cmd:autoreconf
"
BUILD()
{
./autogen.sh
runConfigure ./configure
make
}
INSTALL()
{
make install
}