Update of /cvsroot/fink/experimental/beren12/finkinfo/devel
In directory sc8-pr-cvs1:/tmp/cvs-serv17605

Added Files:
        autoconf2.5-2.54-1.info autoconf25-2.54-2.info 
        automake-1.6.3-2.info automake1.5-1.5-2.info 
        automake1.5-1.5-2.patch automake1.6-1.6.3-1.info 
        automake1.7-1.7.2-1.info automake15-1.5-3.info 
Log Message:
rename upgrade path

--- NEW FILE: autoconf2.5-2.54-1.info ---
Package: autoconf2.5
Version: 2.54
Revision: 1
Depends: m4
Conflicts: autoconf, autoconf25 ( <= 2.54-1 )
Replaces: autoconf, autoconf25 ( <= 2.54-1 )
Source: mirror:gnu:autoconf/autoconf-%v.tar.bz2
Source-MD5: 572ef5257f6927ad21dbad395f3da799
ConfigureParams: --infodir='${prefix}/share/info' --mandir='${prefix}/share/man'
InstallScript: <<
 make install DESTDIR=%d
 cd doc &&  make html && cd ..
 install -d -m 755 %i/share/doc/%n/html
 install -m 644 doc/*.html  %i/share/doc/%n/html/
<<
DocFiles: README COPYING AUTHORS NEWS THANKS
InfoDocs: autoconf.info standards.info
#
Description: System for generating configure scripts
DescDetail: <<
GNU Autoconf is a package for generating configure scripts.
These scripts are present in a large number of free software packages
and are used to detect system features at compilation time.

This package installs the latest Autoconf version. It has some
compatibility problems with older packages. If you want to work on a
package that requires Autoconf 2.13, install the autoconf package
instead.

Previously by Christoph Pfisterer <[EMAIL PROTECTED]>
<<
DescPort: <<
The patch gets rid of code that sets CDPATH. Setting CDPATH causes the
new directory to be printed on a cd, and this breaks some constructs.
<<
License: GPL
Homepage: http://www.gnu.org/software/autoconf/
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>

--- NEW FILE: autoconf25-2.54-2.info ---
Package: autoconf25
Version: 2.54
Revision: 2
Depends: autoconf2.5
Conflicts: autoconf
Replaces: autoconf
Type: NoSource
InstallScript: <<
 mkdir -p %i/share/doc/%n
 echo "It is safe to remove this empty package after the upgrade is complete." > 
%i/share/doc/%n/README
<<
Description: Upgrade package -> autoconf2.5
DescDetail: <<
It is safe to remove this empty package after the upgrade is complete.
<<
License: GPL
Homepage: http://www.gnu.org/software/autoconf/
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>

--- NEW FILE: automake-1.6.3-2.info ---
Package: automake
Version: 1.6.3
Revision: 2
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Depends: automake1.6
Type: NoSource
InstallScript: <<
 mkdir -p %i/share/doc/%n
 echo "It is safe to remove this empty package after the upgrade is complete." > 
%i/share/doc/%n/README
<<
Description: Upgrade package -> automake1.6
DescDetail: <<
It is safe to remove this empty package after the upgrade is complete.
<<
License: GPL
Homepage: http://www.gnu.org/software/automake/

--- NEW FILE: automake1.5-1.5-2.info ---
Package: automake1.5
Version: 1.5
Revision: 2
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Source: mirror:gnu:automake/automake-%v.tar.gz
Patch: %f.patch
Conflicts: automake, automake1.7, automake15, automake1.6
Replaces: automake, automake1.7, automake15, automake1.6
Provides: automaken
ConfigureParams: --infodir=%p/share/info
InstallScript: <<
  make install DESTDIR=%d
  rm -rf %i/share/info
<<
DocFiles: COPYING README AUTHORS NEWS THANKS
Description: Tool for generating GNU Standards-compliant Makefiles
DescDetail: <<
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.5 fails to work in a number of situations that Automake 1.4 did, so has 
been renamed so that the previous version can continue to be made available.
<<
DescPackaging: <<
Previous versions by Christoph Pfisterer, Max Horn.
Desc from debian :-)
<<
DescPort: <<
Sets CDPATH in several places, which results in disrupting output from zsh. Removed 
through a patch.
<<
License: GPL
Homepage: http://www.gnu.org/software/automake/

--- NEW FILE: automake1.5-1.5-2.patch ---
diff -uNbr automake-1.5/aclocal.in automake-new/aclocal.in
--- automake-1.5/aclocal.in     Tue Jul 17 01:36:23 2001
+++ automake-new/aclocal.in     Fri May  3 21:35:04 2002
@@ -33,6 +33,7 @@
 $prefix = "@prefix@";
 # Note that this isn't pkgdatadir, but a separate directory.
 $acdir = "@datadir@/aclocal";
+$default_acdir = $acdir;
 
 # Some globals.
 
@@ -206,8 +207,17 @@
        exit 0;
     }
 
-    # Search our install directory last.
-    push (@dirlist, $acdir);
+    # Search the versioned directory near the end, and then the
+    # unversioned directory last.  Only do this if the user didn't
+    # override acdir.
+    push (@dirlist, "$acdir-1.5")
+       if $acdir eq $default_acdir;
+
+    # By default $(datadir)/aclocal doesn't exist.  We don't want to
+    # get an error in the case where we are searching the default
+    # directory and it hasn't been created.
+    push (@dirlist, $acdir)
+       unless $acdir eq $default_acdir && ! -d $acdir;
 
     return @dirlist;
 }
diff -uNbr automake-1.5/configure automake-new/configure
--- automake-1.5/configure      Thu Aug 23 01:49:52 2001
+++ automake-new/configure      Fri May  3 21:35:04 2002
@@ -558,7 +558,7 @@
 
 
 # expand $ac_aux_dir to an absolute path
-am_aux_dir=`CDPATH=:; cd $ac_aux_dir && pwd`
+am_aux_dir=`cd $ac_aux_dir && pwd`
 
 # Find a good install program.  We prefer a C program (faster),
 # so one script is as good as another.  But avoid the broken or
@@ -787,13 +787,13 @@
 
 
 # test to see if srcdir already configured
-if test "`CDPATH=:; cd $srcdir && pwd`" != "`pwd`" &&
+if test "`cd $srcdir && pwd`" != "`pwd`" &&
    test -f $srcdir/config.status; then
   { echo "configure: error: source directory already configured; run \"make 
distclean\" there first" 1>&2; exit 1; }
 fi
 
 # Define the identity of the package.
-PACKAGE=automake
+PACKAGE=automake-1.5
 VERSION=1.5
 cat >> confdefs.h <<EOF
 #define PACKAGE "$PACKAGE"
diff -uNbr automake-1.5/m4/Makefile.in automake-new/m4/Makefile.in
--- automake-1.5/m4/Makefile.in Thu Aug 23 01:49:56 2001
+++ automake-new/m4/Makefile.in Fri May  3 21:35:04 2002
@@ -68,7 +68,7 @@
 am__quote = @am__quote@
 install_sh = @install_sh@
 
-m4datadir = $(datadir)/aclocal
+m4datadir = $(datadir)/aclocal-1.5
 m4data_DATA = as.m4 auxdir.m4 ccstdc.m4 cond.m4 depend.m4 depout.m4 \
 dmalloc.m4 error.m4 gcj.m4 header.m4 init.m4 install-sh.m4 lex.m4 \
 lispdir.m4 make.m4 maintainer.m4 minuso.m4 missing.m4 multi.m4 \
diff -uNbr automake-1.5/m4/auxdir.m4 automake-new/m4/auxdir.m4
--- automake-1.5/m4/auxdir.m4   Wed Aug  1 12:19:57 2001
+++ automake-new/m4/auxdir.m4   Fri May  3 21:35:04 2002
@@ -40,5 +40,5 @@
 
 AC_DEFUN([AM_AUX_DIR_EXPAND], [
 # expand $ac_aux_dir to an absolute path
-am_aux_dir=`CDPATH=:; cd $ac_aux_dir && pwd`
+am_aux_dir=`cd $ac_aux_dir && pwd`
 ])
diff -uNbr automake-1.5/m4/init.m4 automake-new/m4/init.m4
--- automake-1.5/m4/init.m4     Fri Aug  3 04:28:20 2001
+++ automake-new/m4/init.m4     Fri May  3 21:37:48 2002
@@ -33,7 +33,7 @@
 AC_DEFUN([AM_INIT_AUTOMAKE],
 [AC_REQUIRE([AC_PROG_INSTALL])dnl
 # test to see if srcdir already configured
-if test "`CDPATH=:; cd $srcdir && pwd`" != "`pwd`" &&
+if test "`cd $srcdir && pwd`" != "`pwd`" &&
    test -f $srcdir/config.status; then
   AC_MSG_ERROR([source directory already configured; run \"make distclean\" there 
first])
 fi
@@ -64,9 +64,9 @@
 # Some tools Automake needs.
 AC_REQUIRE([AM_SANITY_CHECK])dnl
 AC_REQUIRE([AC_ARG_PROGRAM])dnl
-AM_MISSING_PROG(ACLOCAL, aclocal)
+AM_MISSING_PROG(ACLOCAL, aclocal-1.5)
 AM_MISSING_PROG(AUTOCONF, autoconf)
-AM_MISSING_PROG(AUTOMAKE, automake)
+AM_MISSING_PROG(AUTOMAKE, automake-1.5)
 AM_MISSING_PROG(AUTOHEADER, autoheader)
 AM_MISSING_PROG(MAKEINFO, makeinfo)
 AM_MISSING_PROG(AMTAR, tar)

--- NEW FILE: automake1.6-1.6.3-1.info ---
Package: automake1.6
Version: 1.6.3
Revision: 1
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Depends: autoconf2.5 (>= 2.52-1)
Conflicts: automake1.5, automake, automake1.7, automake15
Replaces: automake1.5, automake, automake1.7, automake15
Provides: automaken
Source: mirror:gnu:automake/automake-%v.tar.bz2
Source-MD5: 2e8053609e9d318f80db0fce29dca7e9
ConfigureParams: --infodir=%p/share/info
InstallScript: make install DESTDIR=%d
DocFiles: COPYING README AUTHORS NEWS THANKS
InfoDocs: automake.info

Description: Tool for generating GNU Standards-compliant Makefiles
DescDetail: <<
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.6 fails to work in a number of situations that Automake 1.4 and 1.5 did, so 
has been renamed so that the previous version can continue to be made available.
<<
DescPackaging: <<
Previous versions by Christoph Pfisterer, Max Horn.
Desc from debian :-)
<<
License: GPL
Homepage: http://www.gnu.org/software/automake/

--- NEW FILE: automake1.7-1.7.2-1.info ---
Package: automake1.7
Version: 1.7.2
Revision: 1
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Depends: autoconf2.5 (>= 2.52-1)
Conflicts: automake1.5, automake, automake1.6, automake15
Replaces: automake1.5, automake, automake1.6, automake15
Provides: automaken
Source: mirror:gnu:automake/automake-%v.tar.bz2
Source-MD5: 
ConfigureParams: --infodir=%p/share/info
InstallScript: make install DESTDIR=%d
DocFiles: COPYING README AUTHORS NEWS THANKS
InfoDocs: automake.info

Description: Tool for generating GNU Standards-compliant Makefiles
DescDetail: <<
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.7 fails to work in a number of situations that Automake 1.4 and 1.5 did, so 
has been renamed so that the previous version can continue to be made available.
<<
DescPackaging: <<
Previous versions by Christoph Pfisterer, Max Horn.
Desc from debian :-)
<<
License: GPL
Homepage: http://www.gnu.org/software/automake/

--- NEW FILE: automake15-1.5-3.info ---
Package: automake15
Version: 1.5
Revision: 3
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Depends: automake1.5
Type: NoSource
InstallScript: <<
 mkdir -p %i/share/doc/%n
 echo "It is safe to remove this empty package after the upgrade is complete." > 
%i/share/doc/%n/README
<<
Description: Upgrade package -> automake1.5
DescDetail: <<
It is safe to remove this empty package after the upgrade is complete.
<<
License: GPL
Homepage: http://www.gnu.org/software/automake/



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to