summaryrefslogtreecommitdiff
path: root/devel/automake
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2006-10-26 14:37:55 +0000
committerwiz <wiz@pkgsrc.org>2006-10-26 14:37:55 +0000
commit50a5a580d10e5263fccd9676a04dda834e806c93 (patch)
tree6a5c4cf539de96c5f1b0a847fc13d7a6a056ab3b /devel/automake
parent9c36105067182d5acd9af07ea2929293ee6c9372 (diff)
downloadpkgsrc-50a5a580d10e5263fccd9676a04dda834e806c93.tar.gz
Update to 1.10:
New in 1.10: * Version requirements: - Autoconf 2.60 or greater is required. - Perl 5.6 or greater is required. * Changes to aclocal: - aclocal now also supports -Wmumble and -Wno-mumble options. - `dirlist' entries (for the aclocal search path) may use shell wildcards such as `*', `?', or `[...]'. - aclocal supports an --install option that will cause system-wide third-party macros to be installed in the local directory specified with the first -I flag. This option also uses #serial lines in M4 files to upgrade local macros. The new aclocal options --dry-run and --diff help to review changes before they are installed. - aclocal now outputs an autoconf version check in aclocal.m4 in projects using automake. For a few years, automake and aclocal have been calling autoconf (or its underlying engine autom4te) to accurately retrieve the data they need from configure.ac and its siblings. Doing so can only work if all autotools use the same version of autoconf. For instance a Makefile.in generated by automake for one version of autoconf may stop working if configure is regenerated with another version of autoconf, and vice versa. This new version check ensures that the whole build system has been generated using the same autoconf version. * Support for new Autoconf macros: - The new AC_REQUIRE_AUX_FILE Autoconf macro is supported. - If `subdir-objects' is set, and AC_CONFIG_LIBOBJ_DIR is specified, $(LIBOBJS), $(LTLIBOBJS), $(ALLOCA), and $(LTALLOCA) can be used in different directories. However, only one instance of such a library objects directory is supported. * Change to Libtool support: - Libtool generic flags (those that go before the --mode=MODE option) can be specified using AM_LIBTOOLFLAGS and target_LIBTOOLFLAGS. * Yacc and Lex changes: - The rebuild rules for distributed Yacc and Lex output will avoid overwriting existing files if AM_MAINTAINER_MODE and maintainer-mode is not enabled. - ylwrap is now always used for lex and yacc source files, regardless of whether there is more than one source per directory. * Languages changes: - Preprocessed assembler (*.S) compilation now honors CPPFLAGS, AM_CPPFLAGS and per-target _CPPFLAGS, and supports dependency tracking, unlike non-preprocessed assembler (*.s). - subdir-object mode works now with Assembler. Automake assumes that the compiler understands `-c -o'. - Preprocessed assembler (*.S) compilation now also honors $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES). - Improved support for Objective C: - Autoconf's new AC_PROG_OBJC will enable automatic dependency tracking. - A new section of the manual documents the support. - New support for Unified Parallel C: - AM_PROG_UPC looks for a UPC compiler. - A new section of the manual documents the support. - Per-target flags are now correctly handled in link rules. For instance maude_CFLAGS correctly overrides AM_CFLAGS; likewise for maude_LDFLAGS and AM_LDFLAGS. Previous versions bogusly preferred AM_CFLAGS over maude_CFLAGS while linking, and they used both AM_LDFLAGS and maude_LDFLAGS on the same link command. The fix for compiler flags (i.e., using maude_CFLAGS instead of AM_CFLAGS) should not hurt any package since that is how _CFLAGS is expected to work (and actually works during compilation). However using maude_LDFLAGS "instead of" AM_LDFLAGS rather than "in addition to" breaks backward compatibility with older versions. If your package used both variables, as in AM_LDFLAGS = common flags bin_PROGRAMS = a b c a_LDFLAGS = more flags ... and assumed *_LDFLAGS would sum up, you should rewrite it as AM_LDFLAGS = common flags bin_PROGRAMS = a b c a_LDFLAGS = $(AM_LDFLAGS) more flags ... This new behavior of *_LDFLAGS is more coherent with other per-target variables, and the way *_LDFLAGS variables were considered internally. * New installation targets: - New targets mandated by GNU Coding Standards: install-dvi install-html install-ps install-pdf By default they will only install Texinfo manuals. You can customize them with *-local variants: install-dvi-local install-html-local install-ps-local install-pdf-local - The undocumented recursive target `uninstall-info' no longer exists. (`uninstall' is in charge of removing all possible documentation flavors, including optional formats such as dvi, ps, or info even when `no-installinfo' is used.) * Miscellaneous changes: - Automake no longer complains if input files for AC_CONFIG_FILES are specified using shell variables. - clean, distribution, or rebuild rules are normally disabled for inputs and outputs of AC_CONFIG_FILES, AC_CONFIG_HEADERS, and AC_CONFIG_LINK specified using shell variables. However, if these variables are used as ${VAR}, and AC_SUBSTed, then Automake will be able to output rules anyway. (See the Automake documentation for AC_CONFIG_FILES.) - $(EXEEXT) is automatically appended to filenames of TESTS that have been declared as programs in the same Makefile. This is mostly useful when some check_PROGRAMS are listed in TESTS. - `-Wportability' has finally been turned on by default for `gnu' and `gnits' strictness. This means, automake will complain about %-rules or $(GNU Make functions) unless you switch to `foreign' strictness or use `-Wno-portability'. - Automake now uses AC_PROG_MKDIR_P (new in Autoconf 2.60), and uses $(MKDIR_P) instead of $(mkdir_p) to create directories. The $(mkdir_p) variable is still defined (to the same value as $(MKDIR_P)) but should be considered obsolete. If you are using $(mkdir_p) in some of your rules, please plan to update them to $(MKDIR_P) at some point. - AM_C_PROTOTYPES and ansi2knr are now documented as being obsolete. They still work in this release, but may be withdrawn in a future one. - Inline compilation rules for gcc3-style dependency tracking are more readable. - Automake installs a "Hello World!" example package in $(docdir). This example is used throughout the new "Autotools Introduction" chapter of the manual.
Diffstat (limited to 'devel/automake')
-rw-r--r--devel/automake/Makefile8
-rw-r--r--devel/automake/PLIST6
-rw-r--r--devel/automake/distinfo8
3 files changed, 13 insertions, 9 deletions
diff --git a/devel/automake/Makefile b/devel/automake/Makefile
index 4e9edde3ccc..cde02d29767 100644
--- a/devel/automake/Makefile
+++ b/devel/automake/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.70 2006/03/30 03:44:42 jlam Exp $
+# $NetBSD: Makefile,v 1.71 2006/10/26 14:37:55 wiz Exp $
#
-DISTNAME= automake-1.9.6
+DISTNAME= automake-1.10
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU:=automake/} \
ftp://sources.redhat.com/pub/automake/
@@ -11,13 +11,13 @@ MAINTAINER= wiz@NetBSD.org
HOMEPAGE= http://www.gnu.org/software/automake/automake.html
COMMENT= GNU Standards-compliant Makefile generator
-DEPENDS+= autoconf>=2.58:../../devel/autoconf
+DEPENDS+= autoconf>=2.60:../../devel/autoconf
USE_TOOLS+= gm4:run perl:run
#PKG_INSTALLATION_TYPES= overwrite pkgviews
-PLIST_SUBST+= PKG_DIR_VERSION=1.9
+PLIST_SUBST+= PKG_DIR_VERSION=1.10
GNU_CONFIGURE= YES
_STRIPFLAG_INSTALL= # none
INFO_FILES= # PLIST
diff --git a/devel/automake/PLIST b/devel/automake/PLIST
index ac80df53fb8..519f5f8eff8 100644
--- a/devel/automake/PLIST
+++ b/devel/automake/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2006/03/30 03:44:42 jlam Exp $
+@comment $NetBSD: PLIST,v 1.12 2006/10/26 14:37:55 wiz Exp $
bin/aclocal
bin/aclocal-${PKG_DIR_VERSION}
bin/automake
@@ -35,7 +35,9 @@ share/aclocal-${PKG_DIR_VERSION}/regex.m4
share/aclocal-${PKG_DIR_VERSION}/runlog.m4
share/aclocal-${PKG_DIR_VERSION}/sanity.m4
share/aclocal-${PKG_DIR_VERSION}/strip.m4
+share/aclocal-${PKG_DIR_VERSION}/substnot.m4
share/aclocal-${PKG_DIR_VERSION}/tar.m4
+share/aclocal-${PKG_DIR_VERSION}/upc.m4
share/automake-${PKG_DIR_VERSION}/Automake/ChannelDefs.pm
share/automake-${PKG_DIR_VERSION}/Automake/Channels.pm
share/automake-${PKG_DIR_VERSION}/Automake/Condition.pm
@@ -114,6 +116,8 @@ share/automake-${PKG_DIR_VERSION}/py-compile
share/automake-${PKG_DIR_VERSION}/symlink-tree
share/automake-${PKG_DIR_VERSION}/texinfo.tex
share/automake-${PKG_DIR_VERSION}/ylwrap
+share/doc/automake/amhello-1.0.tar.gz
+@dirrm share/doc/automake
@dirrm share/aclocal-${PKG_DIR_VERSION}
@dirrm share/automake-${PKG_DIR_VERSION}/Automake
@dirrm share/automake-${PKG_DIR_VERSION}/am
diff --git a/devel/automake/distinfo b/devel/automake/distinfo
index 16b5b3a1fd0..cb7a26bd71f 100644
--- a/devel/automake/distinfo
+++ b/devel/automake/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.27 2005/07/14 02:24:22 wiz Exp $
+$NetBSD: distinfo,v 1.28 2006/10/26 14:37:55 wiz Exp $
-SHA1 (automake-1.9.6.tar.bz2) = d205dbb274d3ff5be1cf6734f27fb452c7131866
-RMD160 (automake-1.9.6.tar.bz2) = ad93e095056f41f0369ac6a06fed3904d8e3514f
-Size (automake-1.9.6.tar.bz2) = 765505 bytes
+SHA1 (automake-1.10.tar.bz2) = 966008107cc1fdb099f65de6496147ef05522fec
+RMD160 (automake-1.10.tar.bz2) = ebae948c33dbe4a579cf1fbeba32ed14a9d0f89b
+Size (automake-1.10.tar.bz2) = 893866 bytes
SHA1 (patch-aa) = 5faa883609df5432dd0516e472587f191bc58ba4