Files
haikuports/sys-devel/autoconf/autoconf-2.69.recipe
Oliver Tappe 5a00b8acf0 Revision 1 of autoconf-2.69:
* specify compatibility as >= 2.60, matching the documentation
* move cmd:sed from build_prereq to build_req
* inactivate on all architectures
2013-04-12 23:25:15 +00:00

56 lines
1.4 KiB
Plaintext

SUMMARY="A GNU tool for automatically configuring source code"
DESCRIPTION="GNU Autoconf is a tool for configuring source code and makefiles. Using
autoconf, programmers can create portable and configurable packages,
because the person building the package is allowed to specify various
configuration options."
HOMEPAGE="http://www.gnu.org/software/autoconf/"
SRC_URI="http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.xz"
CHECKSUM_MD5="50f97f4159805e374639a73e2636f22e"
REVISION="1"
ARCHITECTURES="?x86_gcc2 ?x86"
PROVIDES="autoconf = $portVersion compat >= 2.60
cmd:autoconf = $portVersion compat >= 2.60
cmd:autoheader = $portVersion compat >= 2.60
cmd:autom4te = $portVersion compat >= 2.60
cmd:autoreconf = $portVersion compat >= 2.60
cmd:autoscan = $portVersion compat >= 2.60
cmd:autoupdate = $portVersion compat >= 2.60
cmd:ifnames = $portVersion compat >= 2.60"
REQUIRES="haiku >= $haikuVersion
cmd:awk
coreutils
diffutils
cmd:m4 >= 1.4
cmd:perl >= 5
cmd:sh"
BUILD_REQUIRES="cmd:automake >= 1.13.1"
BUILD_PREREQUIRES="haiku-devel >= $haikuVersion
cmd:autoreconf >= 2.60
cmd:make"
SOURCE_DIR="$portVersionedName"
BUILD_PACKAGE_ACTIVATION_PHASE="INSTALL"
BUILD()
{
autoreconf
PERL="perl" M4="m4" SED="sed" \
./configure $configureDirArgs
make -j$jobs
}
INSTALL()
{
make install
}
TEST()
{
make check
}
LICENSE="GNU GPL v2
GNU GPL v3"
COPYRIGHT="1992-2012 Free Software Foundation, Inc."