[csw-devel] SF.net SVN: gar:[7385] csw/mgar/pkg/autoconf/trunk
dmichelsen at users.sourceforge.net
dmichelsen at users.sourceforge.net
Sun Nov 22 22:35:18 CET 2009
Revision: 7385
http://gar.svn.sourceforge.net/gar/?rev=7385&view=rev
Author: dmichelsen
Date: 2009-11-22 21:35:18 +0000 (Sun, 22 Nov 2009)
Log Message:
-----------
autoconf: Update to 2.65
Modified Paths:
--------------
csw/mgar/pkg/autoconf/trunk/Makefile
csw/mgar/pkg/autoconf/trunk/checksums
Added Paths:
-----------
csw/mgar/pkg/autoconf/trunk/files/0001-Prefer-CSW-tools.patch
Removed Paths:
-------------
csw/mgar/pkg/autoconf/trunk/files/CSWautoconf.depend
csw/mgar/pkg/autoconf/trunk/files/use-csw-tools.patch
Modified: csw/mgar/pkg/autoconf/trunk/Makefile
===================================================================
--- csw/mgar/pkg/autoconf/trunk/Makefile 2009-11-22 21:34:36 UTC (rev 7384)
+++ csw/mgar/pkg/autoconf/trunk/Makefile 2009-11-22 21:35:18 UTC (rev 7385)
@@ -1,5 +1,5 @@
GARNAME = autoconf
-GARVERSION = 2.64
+GARVERSION = 2.65
CATEGORIES = devel
DESCRIPTION = GNU auto-configuration tool
@@ -15,7 +15,7 @@
UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
-PATCHFILES = use-csw-tools.patch
+PATCHFILES = 0001-Prefer-CSW-tools.patch
PREREQUISITE_PKGS = CSWhelp2man
REQUIRED_PKGS = CSWgawk CSWgm4 CSWperl
@@ -38,6 +38,4 @@
post-install:
@echo " ==> Fixing install anomalies"
-
- @rm -f $(DESTDIR)$(prefix)/share/info/dir
@rm -f $(DESTDIR)$(prefix)/share/info/standards.info
Modified: csw/mgar/pkg/autoconf/trunk/checksums
===================================================================
--- csw/mgar/pkg/autoconf/trunk/checksums 2009-11-22 21:34:36 UTC (rev 7384)
+++ csw/mgar/pkg/autoconf/trunk/checksums 2009-11-22 21:35:18 UTC (rev 7385)
@@ -1,2 +1,2 @@
-30a198cef839471dd4926e92ab485361 download/autoconf-2.64.tar.gz
-56db22eb8fa63698b15f6e2eeadb3caa download/use-csw-tools.patch
+ac233d38923d5bebe91a64d68983c3c0 0001-Prefer-CSW-tools.patch
+46cfb40e0babf4c64f8325f03da81c9b autoconf-2.65.tar.gz
Copied: csw/mgar/pkg/autoconf/trunk/files/0001-Prefer-CSW-tools.patch (from rev 7360, csw/mgar/pkg/autoconf/trunk/files/use-csw-tools.patch)
===================================================================
--- csw/mgar/pkg/autoconf/trunk/files/0001-Prefer-CSW-tools.patch (rev 0)
+++ csw/mgar/pkg/autoconf/trunk/files/0001-Prefer-CSW-tools.patch 2009-11-22 21:35:18 UTC (rev 7385)
@@ -0,0 +1,33 @@
+From bcf37e64f81ff412b506a4d1c0d52f1a7fc8a615 Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Sun, 22 Nov 2009 22:30:05 +0100
+Subject: [PATCH] Prefer CSW tools
+
+---
+ bin/autoreconf.in | 10 +++++-----
+ 1 files changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/bin/autoreconf.in b/bin/autoreconf.in
+index 9f82071..139bf34 100644
+--- a/bin/autoreconf.in
++++ b/bin/autoreconf.in
+@@ -110,11 +110,11 @@ Written by David J. MacKenzie and Akim Demaille.
+ my $autoconf = $ENV{'AUTOCONF'} || '@bindir@/@autoconf-name@';
+ my $autoheader = $ENV{'AUTOHEADER'} || '@bindir@/@autoheader-name@';
+ my $autom4te = $ENV{'AUTOM4TE'} || '@bindir@/@autom4te-name@';
+-my $automake = $ENV{'AUTOMAKE'} || 'automake';
+-my $aclocal = $ENV{'ACLOCAL'} || 'aclocal';
+-my $libtoolize = $ENV{'LIBTOOLIZE'} || 'libtoolize';
+-my $autopoint = $ENV{'AUTOPOINT'} || 'autopoint';
+-my $make = $ENV{'MAKE'} || 'make';
++my $automake = $ENV{'AUTOMAKE'} || '@bindir@/automake';
++my $aclocal = $ENV{'ACLOCAL'} || '@bindir@/aclocal';
++my $libtoolize = $ENV{'LIBTOOLIZE'} || '@bindir@/libtoolize';
++my $autopoint = $ENV{'AUTOPOINT'} || '@bindir@/gautopoint';
++my $make = $ENV{'MAKE'} || '@bindir@/gmake';
+
+ # --install -- as --add-missing in other tools.
+ my $install = 0;
+--
+1.6.5.1
+
Deleted: csw/mgar/pkg/autoconf/trunk/files/CSWautoconf.depend
===================================================================
--- csw/mgar/pkg/autoconf/trunk/files/CSWautoconf.depend 2009-11-22 21:34:36 UTC (rev 7384)
+++ csw/mgar/pkg/autoconf/trunk/files/CSWautoconf.depend 2009-11-22 21:35:18 UTC (rev 7385)
@@ -1,3 +0,0 @@
-P CSWgawk gawk - GNU AWK
-P CSWgm4 gm4 - GNU m4 Unix macro processor
-P CSWperl perl - A high-level, general-purpose programming language.
Deleted: csw/mgar/pkg/autoconf/trunk/files/use-csw-tools.patch
===================================================================
--- csw/mgar/pkg/autoconf/trunk/files/use-csw-tools.patch 2009-11-22 21:34:36 UTC (rev 7384)
+++ csw/mgar/pkg/autoconf/trunk/files/use-csw-tools.patch 2009-11-22 21:35:18 UTC (rev 7385)
@@ -1,20 +0,0 @@
-diff -Naur autoconf-2.63.orig/bin/autoreconf.in autoconf-2.63/bin/autoreconf.in
---- autoconf-2.63.orig/bin/autoreconf.in 2008-08-28 04:08:10.000000000 +0200
-+++ autoconf-2.63/bin/autoreconf.in 2008-09-18 18:22:49.127382000 +0200
-@@ -109,11 +109,11 @@
- # Lib files.
- my $autoconf = $ENV{'AUTOCONF'} || '@bindir@/@autoconf-name@';
- my $autoheader = $ENV{'AUTOHEADER'} || '@bindir@/@autoheader-name@';
--my $automake = $ENV{'AUTOMAKE'} || 'automake';
--my $aclocal = $ENV{'ACLOCAL'} || 'aclocal';
--my $libtoolize = $ENV{'LIBTOOLIZE'} || 'libtoolize';
--my $autopoint = $ENV{'AUTOPOINT'} || 'autopoint';
--my $make = $ENV{'MAKE'} || 'make';
-+my $automake = $ENV{'AUTOMAKE'} || '@bindir@/automake';
-+my $aclocal = $ENV{'ACLOCAL'} || '@bindir@/aclocal';
-+my $libtoolize = $ENV{'LIBTOOLIZE'} || '@bindir@/libtoolize';
-+my $autopoint = $ENV{'AUTOPOINT'} || '@bindir@/gautopoint';
-+my $make = $ENV{'MAKE'} || '@bindir@/gmake';
-
- # --install -- as --add-missing in other tools.
- my $install = 0;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list