util-macros, bump version

This commit is contained in:
begasus
2018-07-08 16:02:09 +02:00
committed by waddlesplash
parent cde0815ce1
commit 4cbe4a3f72
2 changed files with 43 additions and 49 deletions

View File

@@ -1,49 +0,0 @@
SUMMARY="X.Org's autotools utility macros"
DESCRIPTION="This is a set of autoconf macros used by the configure.ac \
scripts in other Xorg modular packages, and is needed to generate new \
versions of their configure scripts with autoconf."
HOMEPAGE="https://cgit.freedesktop.org/xorg/util/macros/"
COPYRIGHT="2005 Red Hat, Inc.
2005, 2006 Oracle and/or its affiliates"
LICENSE="MIT"
REVISION="2"
SOURCE_URI="http://xorg.freedesktop.org/archive/individual/util/util-macros-$portVersion.tar.bz2"
CHECKSUM_SHA256="18d459400558f4ea99527bc9786c033965a3db45bf4c6a32eefdc07aa9e306a6"
SOURCE_DIR="util-macros-$portVersion"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
util_macros$secondaryArchSuffix = $portVersion
devel:util_macros$secondaryArchSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
cmd:autoconf
cmd:aclocal
cmd:make
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
"
BUILD()
{
#./autogen.sh -V
runConfigure ./configure
make
}
INSTALL()
{
make install
#fixPkgconfig
mkdir -p $prefix/develop/lib${secondaryArchSuffix/_//}
mv -f $prefix/data/pkgconfig $prefix/develop/lib${secondaryArchSuffix/_//}/
}

View File

@@ -0,0 +1,43 @@
SUMMARY="X.Org's autotools utility macros"
DESCRIPTION="This is a set of autoconf macros used by the configure.ac \
scripts in other Xorg modular packages, and is needed to generate new \
versions of their configure scripts with autoconf."
HOMEPAGE="https://cgit.freedesktop.org/xorg/util/macros/"
COPYRIGHT="2005 Red Hat, Inc.
2005, 2006 Oracle and/or its affiliates"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://www.x.org/archive/individual/util/util-macros-$portVersion.tar.bz2"
CHECKSUM_SHA256="d7e43376ad220411499a79735020f9d145fdc159284867e99467e0d771f3e712"
SOURCE_DIR="util-macros-$portVersion"
ARCHITECTURES="any"
PROVIDES="
util_macros = $portVersion
devel:util_macros = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:autoconf
cmd:awk
cmd:make
cmd:gcc
"
BUILD()
{
runConfigure ./configure
make
}
INSTALL()
{
make install
}