--- automake1.10-1.10.1.orig/m4/gcj.m4 +++ automake1.10-1.10.1/m4/gcj.m4 @@ -8,7 +8,7 @@ # with or without modifications, as long as this notice is preserved. AC_DEFUN([AM_PROG_GCJ],[ -AC_CHECK_PROGS(GCJ, gcj, gcj) +AC_CHECK_PROGS(GCJ, [gcj gcj-3.2 gcj-3.1 gcj-3.0 gcj-2.95], gcj) test -z "$GCJ" && AC_MSG_ERROR([no acceptable gcj found in \$PATH]) if test "x${GCJFLAGS-unset}" = xunset; then GCJFLAGS="-g -O2" --- automake1.10-1.10.1.orig/debian/automake.manpages +++ automake1.10-1.10.1/debian/automake.manpages @@ -0,0 +1,2 @@ +debian/aclocal-1.10.1 +debian/automake-1.10.1 --- automake1.10-1.10.1.orig/debian/compat +++ automake1.10-1.10.1/debian/compat @@ -0,0 +1 @@ +4 --- automake1.10-1.10.1.orig/debian/aclocal-1.10.1 +++ automake1.10-1.10.1/debian/aclocal-1.10.1 @@ -0,0 +1,106 @@ +.\" Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc. +.\" Copyright (C) 1998 Ben Pfaff. +.\" +.\" Permission is granted to make and distribute verbatim copies of +.\" this manual provided the copyright notice and this permission notice +.\" are preserved on all copies. +.\" +.\" Permission is granted to copy and distribute modified versions of this +.\" manual under the conditions for verbatim copying, provided that the entire +.\" resulting derived work is distributed under the terms of a permission +.\" notice identical to this one. +.\" +.\" Permission is granted to copy and distribute translations of this manual +.\" into another language, under the above conditions for modified versions, +.\" except that this permission notice may be stated in a translation approved +.\" by the Foundation. +.\" +.TH ACLOCAL 1 "Automake" +.SH NAME +aclocal - automatically generate aclocal.m4 from configure.in +.SH SYNOPSIS +.B aclocal +[ +.BR --acdir= DIR +] [ +.B --help +] [ +.B -I +DIR ] [ +.BR --output= FILE +] [ +.B --verbose +] [ +.B --version +] +.SH DESCRIPTION +.PP +Automake includes a number of Autoconf macros which can be used in +your package; some of them are actually required by Automake in certain +situations. These macros must be defined in your +.BR aclocal.m4 ; +otherwise they will not be seen by +.BR autoconf . +.PP +The +.B aclocal +program will automatically generate +.B aclocal.m4 +files based on the contents of +.BR configure.in . +This provides a convenient way to get Automake-provided macros, +without having to search around. Also, the +.B aclocal +mechanism is extensible for use by other packages. +.PP +At startup, +.B aclocal +scans all the +.B .m4 +files it can find, looking for macro definitions. Then it scans +.BR configure.in . +Any mention of one of the macros found in the first step causes that +macro, and any macros it in turn requires, to be put into +.BR aclocal.m4 . +.PP +The contents of +.BR acinclude.m4 , +if it exists, are also automatically included in +.BR aclocal.m4 . +This is useful for incorporating local macros into +.BR configure . +.PP +.B aclocal +accepts the following options: +.TP +.BI --acdir=\fRDIR +Look for the macro files in DIR instead of the installation +directory. This is typically used for debugging. +.TP +.BI --help +Print a summary of the command line options and exit. +.TP +.BI -I\fR\ DIR +Add the directory DIR to the list of directories searched for +.B .m4 +files. +.TP +.BI --output=\fRFILE +Cause the output to be put into FILE instead of +.BR aclocal.m4 . +.TP +.BI --verbose +Print the names of the files it examines. +.TP +.BI --version +Print the version number of Automake and exit. +.PP +.SH "SEE ALSO" +.BR automake (1), +and the Texinfo documentation for automake +.SH AUTHORS +Automake was written primarily by David Mackenzie and Tom Tromey. +This manpage written by Ben Pfaff for the +Debian GNU/Linux +.B automake +package. --- automake1.10-1.10.1.orig/debian/automake-1.10.1 +++ automake1.10-1.10.1/debian/automake-1.10.1 @@ -0,0 +1,247 @@ +.\" Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc. +.\" Copyright (C) 1998 Ben Pfaff. +.\" +.\" Permission is granted to make and distribute verbatim copies of +.\" this manual provided the copyright notice and this permission notice +.\" are preserved on all copies. +.\" +.\" Permission is granted to copy and distribute modified versions of this +.\" manual under the conditions for verbatim copying, provided that the entire +.\" resulting derived work is distributed under the terms of a permission +.\" notice identical to this one. +.\" +.\" Permission is granted to copy and distribute translations of this manual +.\" into another language, under the above conditions for modified versions, +.\" except that this permission notice may be stated in a translation approved +.\" by the Foundation. +.\" +.TH AUTOMAKE 1 "28 Jan 2002" +.SH NAME +automake - automatically create Makefile.in's from Makefile.am's +.SH SYNOPSIS +.B automake +[ +.B -a +| +.B --add-missing +] [ +.BR --amdir= DIR +] [ +.BR --build-dir= DIR +] [ +.B -c +| +.B --copy +] [ +.B --cygnus +] [ +.B -f +| +.B --force-missing +] [ +.B --foreign +] [ +.B --gnits +] [ +.B --gnu +] [ +.B --help +] [ +.B -i +| +.B --ignore-deps +] [ +.B --include-deps +] [ +.B --no-force +] [ +.B -o +DIR +] [ +.BR --output-dir= DIR +] [ +.BR --srcdir-name= DIR +] [ +.B -v +| +.B --verbose +] [ +.B --version +] [ +.B --Werror +| +.B --Wno-error +] +.SH DESCRIPTION +.PP +To create all the +.BR Makefile.in s +for a package, run the +.B automake +program in the top level directory, with no arguments. +.B automake +will automatically find each appropriate +.B Makefile.am +(by scanning +.BR configure.in ) +and generate the corresponding +.BR Makefile.in . +Note that +.B automake +has a rather simplistic view of what constitutes a package; it assumes +that a package has only one +.BR configure.in , +at the +top. If your package has multiple +.BR configure.in s, +then you must run +.B automake +in each directory holding a +.BR configure.in . +.PP +You can optionally give +.B automake +an argument; +.B .am +is appended to the argument and the result is used as the name of the +input file. This feature is generally only used to automatically +rebuild an out-of-date +.BR Makefile.in . +Note that +.I automake +must always be run from the topmost directory of a project, even if +being used to regenerate the +.B Makefile.in +in some subdirectory. This is necessary +because +.I automake +must scan +.BR configure.in , +and because +.I automake +uses the knowledge that a +.B Makefile.in +is in a subdirectory to change its behavior in some cases. +.PP +.I automake +accepts the following options: +.TP +.BI -a +.TP +.BI --add-missing +Automake requires certain common files to exist in certain +situations; for instance +.B config.guess +is required if +.B configure.in +runs +.BR AC_CANONICAL_HOST . +Automake is distributed with several of these files; this option will +cause the missing ones to be automatically added to the package, +whenever possible. In general if Automake tells you a file is +missing, try using this option. By default Automake tries to make a +symbolic link pointing to its own copy of the missing file; this can +be changed with \fB--copy\fP. +.TP +.BI --libdir=\fRDIR +Look for Automake data files in directory DIR instead of in the +installation directory. This is typically used for debugging. +.TP +.BI -c +.TP +.BI --copy +When used with \fB--add-missing\fP, causes installed files to be copied. +The default is to make a symbolic link. +.TP +.BI --cygnus +Causes the generated +.BR Makefile.in s +to follow Cygnus rules, instead of GNU or Gnits rules. +.TP +.BI -f +.TP +.BI --force-missing +When used with \fB--add-missing\fP, causes standard files to be rebuilt +even if they already exist in the source tree. +This involves removing the file from the source tree before creating the +new symlink (or, with \fB--copy\fP, copying the new file). +.TP +.BI --foreign +Set the global strictness to +.BR foreign . +.TP +.BI --gnits +Set the global strictness to +.BR gnits . +.TP +.BI --gnu +Set the global strictness to +.BR gnu . +This is the default strictness. +.TP +.BI --help +Print a summary of the command line options and exit. +.TP +.BI -i +.TP +.BI --ignore-deps +This disables the dependency tracking feature. +.TP +.BI --include-deps +This enables the dependency tracking feature. This feature is +enabled by default. This option is provided for historical +reasons only and probably should not be used. +.TP +.BI --no-force +Ordinarily +.B automake +creates all +.BR Makefile.in s +mentioned in +.BR configure.in . +This option causes it to only update those +.BR Makefile.in s +which are out of date with respect to one of their dependents. +.TP +.BI -o\ \fRDIR +.TP +.BI --output-dir=\fRDIR +Put the generated +.B Makefile.in +in the directory DIR. Ordinarily +each +.B Makefile.in +is created in the directory of the +corresponding +.BR Makefile.am . +This option is used when making +distributions. +.TP +.BI -v +.TP +.BI --verbose +Cause Automake to print information about which files are being read +or created. +.TP +.BI --version +Print the version number of Automake and exit. +.TP +.BI --Werror +.TP +.BI --Wno-error +.B --Werror +will cause all warnings issued by +.I automake +to become errors. Errors affect the exit status of +\fIautomake\fP, while warnings do not. +\fB--Wno-error\fP, the default, causes warning to be treated as warnings only. +.PP +.SH "SEE ALSO" +.BR aclocal (1), +and the Texinfo documentation for automake +.SH AUTHORS +Automake was written primarily by David Mackenzie and Tom Tromey. +This manpage written by Ben Pfaff for the +Debian GNU/Linux +.B automake +package. --- automake1.10-1.10.1.orig/debian/watch +++ automake1.10-1.10.1/debian/watch @@ -0,0 +1,3 @@ +version=3 + +http://ftp.gnu.org/gnu/automake/automake-(.*)\.tar\.gz --- automake1.10-1.10.1.orig/debian/lintian.overrides +++ automake1.10-1.10.1/debian/lintian.overrides @@ -0,0 +1 @@ +automake: extra-license-file usr/share/automake-1.10/COPYING --- automake1.10-1.10.1.orig/debian/automake.doc-base +++ automake1.10-1.10.1/debian/automake.doc-base @@ -0,0 +1,17 @@ +Document: automake-1.10 +Title: automake-1.10 +Abstract: Automake is a tool for automatically generating `Makefile.in's from + files called `Makefile.am'. + . + The goal of Automake is to remove the burden of Makefile maintenance + from the back of the individual GNU maintainer (and put it on the back + of the Automake maintainer). + . + The `Makefile.am' is basically a series of `make' macro definitions + (with rules being thrown in occasionally). The generated + `Makefile.in's are compliant with the GNU Makefile standards. +Section: Apps/programming + +Format: info +Index: /usr/share/info/automake-1.10.info.gz +Files: /usr/share/info/automake-1.10.info* --- automake1.10-1.10.1.orig/debian/automake.docs +++ automake1.10-1.10.1/debian/automake.docs @@ -0,0 +1,3 @@ +README +AUTHORS +NEWS --- automake1.10-1.10.1.orig/debian/changelog +++ automake1.10-1.10.1/debian/changelog @@ -0,0 +1,141 @@ +automake1.10 (1:1.10.1-3) unstable; urgency=low + + * debian/automake.postinst: Bump up the priority to 28 so that it wins + the priority war. This should have happened after etch was + released. (Closes: #464883) + + -- Eric Dorland Sat, 09 Feb 2008 21:43:37 -0500 + +automake1.10 (1:1.10.1-2) unstable; urgency=low + + * The "Must Obey lintian" release. + + * debian/lintian.overrides: Fix the package name in the override. + * debian/automake.doc-base: Fix spurious space in paragraph separator. + + -- Eric Dorland Sun, 27 Jan 2008 21:42:41 -0500 + +automake1.10 (1:1.10.1-1) unstable; urgency=low + + * The "Revenge of the Documentation" release. + * New upstream release. The documentation now contains no invariant + sections or cover texts, so moving the documentation back into the + package. (Closes: #462148) + + * debian/rules: Add back the documentation building rules. + * debian/automake.info, debian/automake.doc-base: Add back these + document files. + * debian/control: + - Conflict and Replace automake1.10-doc. + - Remove Suggests on automake1.10-doc. + - Standards-Version to 3.7.3. + - Add Homepage and Vcs-* headers. + * doc/automake.texi: Rename the info file to automake-1.10.info. + + -- Eric Dorland Sun, 27 Jan 2008 19:51:43 -0500 + +automake1.10 (1:1.10+nogfdl-1) unstable; urgency=low + + * New upstream major release. + + -- Eric Dorland Thu, 19 Oct 2006 00:03:24 -0400 + +automake1.9 (1.9.6+nogfdl-2) unstable; urgency=low + + * debian/automake1.9.doc-base: Remove, no more docs. (Closes: #385915) + + -- Eric Dorland Sun, 3 Sep 2006 19:30:48 -0400 + +automake1.9 (1.9.6+nogfdl-1) unstable; urgency=low + + * New tarball with GFDL documentation stripped out because of Cover + Texts. (Closes: #374570) + * debian/automake1.9.info: Remove, no more docs. + * configure.ac, Makefile.am: Remove references to the doc dir. Run + reautoconf as well. + * debian/rules: Remove building of now non-existant docs. + * debian/control: Suggest automake1.9-doc. + + -- Eric Dorland Sun, 3 Sep 2006 00:46:58 -0400 + +automake1.9 (1.9.6-5) unstable; urgency=low + + * debian/control: + - Standards-Version to 3.7.2.1. + - Use Build-Depends instead of Build-Depends-Indep for things + that need to be there for the clean target. + * automake.in: Fix for extension detection of .info files. + + -- Eric Dorland Sat, 15 Jul 2006 00:28:25 -0400 + +automake1.9 (1.9.6-4) unstable; urgency=low + + * debian/watch: Add watch file. + * debian/copyright: Excellent patch from Joost van Baal to iterate all + the licenses used in the package, not just the GPL. (Closes: #355869) + + -- Eric Dorland Sat, 11 Mar 2006 23:08:34 -0500 + +automake1.9 (1.9.6-3) unstable; urgency=low + + * debian/control: Build depend on texinfo >= 4.3 because we use + @tie. Thanks Wolfram Gloger (Closes: #349349) + + -- Eric Dorland Fri, 27 Jan 2006 01:15:17 -0500 + +automake1.9 (1.9.6-2) unstable; urgency=low + + * tests/txinfo13.test, lib/am/texinfos.am: Apply patch from Alexandre + Duret-Lutz to reduce the number of files make dist slurps up. (Closes: + #321689) + * debian/automake1.9.postinst: Up the priority of automake1.9 to make it + take priority over automake1.4. (Closes: #228604) + + -- Eric Dorland Fri, 20 Jan 2006 20:45:06 -0500 + +automake1.9 (1.9.6-1) unstable; urgency=low + + * New upstream release. + + -- Eric Dorland Wed, 13 Jul 2005 01:34:05 -0400 + +automake1.9 (1.9.5-1) unstable; urgency=low + + * New upstream release. + * debian/copyright: Add full copyright citation. + + -- Eric Dorland Wed, 16 Feb 2005 01:06:55 -0500 + +automake1.9 (1.9.4-1) unstable; urgency=medium + + * New upstream release. Fixes some long-standing issues, so lets get it + into sarge. + + -- Eric Dorland Sat, 18 Dec 2004 23:53:26 -0500 + +automake1.9 (1.9.3-1) unstable; urgency=medium + + * New upstream release. Urgency medium since there's no reason for this + not to move to testing. + * doc/autmake.texi: Resolve CVS conflict about document name on upgrade. + + -- Eric Dorland Wed, 3 Nov 2004 00:04:38 -0500 + +automake1.9 (1.9.2-1) unstable; urgency=medium + + * New upstream release. Urgency medium since there's no reason for this + not to move to testing. + + -- Eric Dorland Sun, 19 Sep 2004 18:45:46 -0400 + +automake1.9 (1.9.1-1) unstable; urgency=low + + * New upstream release. + + -- Eric Dorland Thu, 12 Aug 2004 22:17:17 -0400 + +automake1.9 (1.9-1) unstable; urgency=low + + * New upstream release. + + -- Eric Dorland Wed, 28 Jul 2004 17:21:22 -0400 --- automake1.10-1.10.1.orig/debian/automake.postinst +++ automake1.10-1.10.1/debian/automake.postinst @@ -0,0 +1,14 @@ +#!/bin/sh -e + +ver=1.10 +prio=28 + +update-alternatives --install /usr/bin/automake automake \ + /usr/bin/automake-$ver $prio \ + --slave /usr/bin/aclocal aclocal /usr/bin/aclocal-$ver \ + --slave /usr/share/man/man1/automake.1.gz automake.1.gz \ + /usr/share/man/man1/automake-$ver.1.gz \ + --slave /usr/share/man/man1/aclocal.1.gz aclocal.1.gz \ + /usr/share/man/man1/aclocal-$ver.1.gz + +#DEBHELPER# --- automake1.10-1.10.1.orig/debian/automake.prerm +++ automake1.10-1.10.1/debian/automake.prerm @@ -0,0 +1,9 @@ +#!/bin/sh -e + +ver=1.10 + +if [ "$1" = "remove" ]; then + update-alternatives --remove automake /usr/bin/automake-$ver +fi + +#DEBHELPER# --- automake1.10-1.10.1.orig/debian/automake.links +++ automake1.10-1.10.1/debian/automake.links @@ -0,0 +1,2 @@ +usr/share/misc/config.sub usr/share/automake-1.10/config.sub +usr/share/misc/config.guess usr/share/automake-1.10/config.guess --- automake1.10-1.10.1.orig/debian/automake.install +++ automake1.10-1.10.1/debian/automake.install @@ -0,0 +1,2 @@ +debian/tmp/usr/bin/*-1.10 usr/bin/ +debian/tmp/usr/share/*-1.10 usr/share/ --- automake1.10-1.10.1.orig/debian/copyright +++ automake1.10-1.10.1/debian/copyright @@ -0,0 +1,104 @@ +This is the Debian prepackaged version of GNU automake. + +This package was debianized by Eric Dorland . + +It was downloaded from ftp://ftp.gnu.org/gnu/automake/. + +Authors +======= + +Automake was originally written by David Mackenzie . +Perl reimplementation by Tom Tromey . + + +Copyright Holders +================= + +lib/ansi2knr.c: Copyright (C) 1989, 2000 Aladdin Enterprises. + +lib/install-sh: Copyright (C) 1994 X Consortium + +debian/automake-1.9.1 (automake manpage): Copyright (C) 1992, 1993, 1994, +1995, 1996 Free Software Foundation, Inc., Copyright (C) 1998 Ben Pfaff + +all other files: Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005 Free Software Foundation, Inc. + + +License +======= + +Automake Manual (doc/automake.texi): + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation License, + Version 1.2 or any later version published by the Free Software + Foundation; with no Invariant Sections, with the Front-Cover texts + being ``A GNU Manual,'' and with the Back-Cover Texts as in (a) + below. A copy of the license is included in the section entitled + ``GNU Free Documentation License.'' + + (a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify this + GNU Manual, like GNU software. Copies published by the Free Software + Foundation raise funds for GNU development.'' + +lib/install-sh: + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN + AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- + TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of the X Consortium shall not + be used in advertising or otherwise to promote the sale, use or other deal- + ings in this Software without prior written authorization from the X Consor- + tium. + + FSF changes to this file are in the public domain. + +debian/automake-1.9.1: + + Permission is granted to make and distribute verbatim copies of + this manual provided the copyright notice and this permission notice + are preserved on all copies. + + Permission is granted to copy and distribute modified versions of this + manual under the conditions for verbatim copying, provided that the entire + resulting derived work is distributed under the terms of a permission + notice identical to this one. + + Permission is granted to copy and distribute translations of this manual + into another language, under the above conditions for modified versions, + except that this permission notice may be stated in a translation approved + by the Foundation. + +all other files: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. --- automake1.10-1.10.1.orig/debian/README.Debian +++ automake1.10-1.10.1/debian/README.Debian @@ -0,0 +1,11 @@ +automake1.10 for Debian +---------------------- + +Automake 1.10 introduces several changes. It is not strictly backwards +compatible with older versions of automake. It must be used in +conjunction with autoconf 2.60 or greater. Using it with a earlier +version will generate broken Makefiles. Also, it no longer invokes +libtoolize. This job has fallen upon the autoconf utility +`autoreconf'. + + -- Eric Dorland , Wed, 18 Oct 2006 23:48:22 -0400 --- automake1.10-1.10.1.orig/debian/automake.info +++ automake1.10-1.10.1/debian/automake.info @@ -0,0 +1 @@ +doc/automake-1.10.info* --- automake1.10-1.10.1.orig/debian/automake.dirs +++ automake1.10-1.10.1/debian/automake.dirs @@ -0,0 +1 @@ +usr/share/lintian/overrides/ --- automake1.10-1.10.1.orig/debian/rules +++ automake1.10-1.10.1/debian/rules @@ -0,0 +1,24 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk + +package=automake +version=1.10 +infodir=doc + +DEB_DESTDIR=$(CURDIR)/debian/tmp + +common-install-indep:: +# install lintian overrides + cp debian/lintian.overrides \ + debian/$(package)/usr/share/lintian/overrides/$(package) +# remove automake's versions + rm -f $(CURDIR)/debian/tmp/usr/share/automake-$(version)/config.sub + rm -f \ + $(CURDIR)/debian/tmp/usr/share/automake-$(version)/config.guess +# Rebuild the info files + cd $(infodir) && makeinfo automake.texi + +clean:: + rm -f $(infodir)/automake-$(version).info* \ No newline at end of file --- automake1.10-1.10.1.orig/debian/control +++ automake1.10-1.10.1/debian/control @@ -0,0 +1,33 @@ +Source: automake1.10 +Section: devel +Priority: optional +Maintainer: Eric Dorland +Standards-Version: 3.7.3 +Build-Depends: cdbs, debhelper (>= 4.1.0) +Build-Depends-Indep: autoconf (>= 2.60), autotools-dev (>= 20020320.1), texinfo (>= 4.3) +Homepage: http://www.gnu.org/software/automake/ +Vcs-Git: git://git.debian.org/~eric/automake1.10.git +Vcs-Browser: http://git.debian.org/?p=users/eric/automake1.10.git + +Package: automake +Architecture: all +Provides: automaken, automake1.10 +Depends: autoconf (>= 2.60), autotools-dev (>= 20020320.1) +Conflicts: automake1.6 (<< 1.6.1-4), automake (<< 1:1.4-p5-1), automake1.5 (<< 1.5-2), automake1.10-doc +Replaces: automake1.10-doc +Description: A tool for generating GNU Standards-compliant Makefiles + Automake is a tool for automatically generating `Makefile.in's from + files called `Makefile.am'. + . + The goal of Automake is to remove the burden of Makefile maintenance + from the back of the individual GNU maintainer (and put it on the back + of the Automake maintainer). + . + The `Makefile.am' is basically a series of `make' macro definitions + (with rules being thrown in occasionally). The generated + `Makefile.in's are compliant with the GNU Makefile standards. + . + Automake 1.10 fails to work in a number of situations that Automake + 1.4, 1.6, 1.7, 1.8 and 1.9 did, so has been renamed so that the + previous version can continue to be made available. + --- automake1.10-1.10.1.orig/doc/automake.texi +++ automake1.10-1.10.1/doc/automake.texi @@ -1,7 +1,7 @@ \input texinfo @c -*-texinfo-*- @c %**start of header -@setfilename automake.info -@settitle automake +@setfilename automake-1.10.info +@settitle automake-1.10 @setchapternewpage off @c %**end of header @@ -32,13 +32,13 @@ @c (Autoconf has a similar setup.) @dircategory Software development @direntry -* Automake: (automake). Making GNU standards-compliant Makefiles. +* Automake: (automake-1.10). Making GNU standards-compliant Makefiles. @end direntry @dircategory Individual utilities @direntry -* aclocal: (automake)Invoking aclocal. Generating aclocal.m4. -* automake: (automake)Invoking Automake. Generating Makefile.in. +* aclocal: (automake-1.10)Invoking aclocal. Generating aclocal.m4. +* automake: (automake-1.10)Invoking Automake. Generating Makefile.in. @end direntry @titlepage --- automake1.10-1.10.1.orig/lib/Automake/Makefile.in +++ automake1.10-1.10.1/lib/Automake/Makefile.in @@ -35,14 +35,7 @@ DIST_COMMON = $(dist_perllib_DATA) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/amversion.m4 \ - $(top_srcdir)/m4/auxdir.m4 $(top_srcdir)/m4/init.m4 \ - $(top_srcdir)/m4/install-sh.m4 $(top_srcdir)/m4/lead-dot.m4 \ - $(top_srcdir)/m4/missing.m4 $(top_srcdir)/m4/mkdirp.m4 \ - $(top_srcdir)/m4/options.m4 $(top_srcdir)/m4/runlog.m4 \ - $(top_srcdir)/m4/sanity.m4 $(top_srcdir)/m4/strip.m4 \ - $(top_srcdir)/m4/substnot.m4 $(top_srcdir)/m4/tar.m4 \ - $(top_srcdir)/configure.ac +am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/lib/mkinstalldirs