* Noteworthy changes in release 2.69 (2012-04-24) [stable] ** Autoconf now requires perl 5.6 or better (but generated configure scripts continue to run without perl). * Noteworthy changes in release 2.68b (2012-03-01) [beta] Released by Eric Blake, based on git versions 2.68.*. ** Autoconf-generated configure scripts now unconditionally re-execute themselves with $CONFIG_SHELL, if that's set in the environment. ** The texinfo documentation no longer specifies "front-cover" or "back-cover" texts, so that it may now be included in Debian's "main" section. ** Support for the Go programming language has been added. The new macro AC_LANG_GO sets variables GOC and GOFLAGS. ** AS_LITERAL_IF again treats '=' as a literal. Regression introduced in 2.66. ** The macro AS_EXECUTABLE_P, present since 2.50, is now documented. ** Macros - AC_PROG_LN_S and AS_LN_S now fall back on 'cp -pR' (not 'cp -p') if 'ln -s' does not work. This works better for symlinks to directories. - New macro AC_HEADER_CHECK_STDBOOL. - New and updated macros for Fortran support: AC_FC_CHECK_BOUNDS to enable array bounds checking AC_F77_IMPLICIT_NONE and AC_FC_IMPLICIT_NONE to disable implicit integer AC_FC_MODULE_EXTENSION to compute the Fortran 90 module name extension AC_FC_MODULE_FLAG for the Fortran 90 module search path flag AC_FC_MODULE_OUTPUT_FLAG for the Fortran 90 module output directory flag AC_FC_PP_SRCEXT for preprocessed Fortran source files extensions AC_FC_PP_DEFINE for the Fortran preprocessor define flag
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.81 2012/04/26 20:40:51 wiz Exp $
|
|
|
|
DISTNAME= autoconf-2.69
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=autoconf/}
|
|
|
|
MAINTAINER= wiz@NetBSD.org
|
|
HOMEPAGE= http://www.gnu.org/software/autoconf/autoconf.html
|
|
COMMENT= Generates automatic source code configuration scripts
|
|
LICENSE= gnu-gpl-v3 AND gnu-fdl-v1.3
|
|
|
|
BUILD_DEPENDS+= help2man-[0-9]*:../../converters/help2man
|
|
|
|
# XXX: needs m4>1.4.6; wants m4>1.4.13
|
|
USE_TOOLS+= gm4:run perl:run
|
|
|
|
# The next line is for conflicts with old versions of this package,
|
|
# which had autoconf-devel as PKGNAME.
|
|
CONFLICTS= autoconf-devel-[0-9]*
|
|
# old versions of devel/gdb* installed standards.info as well.
|
|
CONFLICTS+= gdb<5.3
|
|
CONFLICTS+= gdb>6<6.2.1nb5
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= # empty
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS+= --without-lispdir
|
|
CONFIGURE_ENV+= ac_cv_prog_TEST_EMACS=no
|
|
|
|
TEXINFO_REQD= 4.0
|
|
INFO_FILES= YES
|
|
|
|
AUTOMAKE_OVERRIDE= NO
|
|
|
|
# [GNU Autoconf 2.67] testsuite: 213 268 269 failed
|
|
# 213?; other two ok because of buildlink
|
|
TEST_TARGET= check
|
|
|
|
CHECK_WRKREF_SKIP+= ${PREFIX}/share/autoconf/autoconf/autoconf.m4f
|
|
CHECK_WRKREF_SKIP+= ${PREFIX}/share/autoconf/autotest/autotest.m4f
|
|
CHECK_WRKREF_SKIP+= ${PREFIX}/share/autoconf/m4sugar/m4sugar.m4f
|
|
CHECK_WRKREF_SKIP+= ${PREFIX}/share/autoconf/m4sugar/m4sh.m4f
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|