mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 05:10:05 +02:00
75 lines
1.6 KiB
Plaintext
75 lines
1.6 KiB
Plaintext
SUMMARY="A 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/"
|
|
COPYRIGHT="1992-2012 Free Software Foundation, Inc."
|
|
LICENSE="
|
|
GNU GPL v2
|
|
GNU GPL v3
|
|
"
|
|
SRC_URI="http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz"
|
|
CHECKSUM_MD5="82d05e03b93e45f5a39b828dc9c6c29b"
|
|
REVISION="4"
|
|
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="
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel >= $haikuVersion
|
|
cmd:automake >= 1.13.1
|
|
cmd:autoreconf >= 2.60
|
|
cmd:make
|
|
cmd:makeinfo
|
|
cmd:sed
|
|
"
|
|
|
|
BUILD_PACKAGE_ACTIVATION_PHASE=INSTALL
|
|
SOURCE_DIR="$portVersionedName"
|
|
|
|
BUILD()
|
|
{
|
|
autoreconf
|
|
|
|
# make sure that the build system doesn't try to update the manpages,
|
|
# as that requires help2man, which isn't available
|
|
touch man/*.1
|
|
|
|
PERL="perl" M4="m4" SED="sed" \
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
make install-html
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|