diff options
author | Ade Lovett <ade@FreeBSD.org> | 2004-03-30 04:28:13 +0000 |
---|---|---|
committer | Ade Lovett <ade@FreeBSD.org> | 2004-03-30 04:28:13 +0000 |
commit | d484c2a8037ff7869499447ca881b23d24e61e3e (patch) | |
tree | b0cb460f11a729f662306d7b577c943c4e6142d2 /devel/gnu-automake | |
parent | 72f584a91eac9bed4d5600b95115e30b5f8ca257 (diff) | |
download | ports-d484c2a8037ff7869499447ca881b23d24e61e3e.tar.gz ports-d484c2a8037ff7869499447ca881b23d24e61e3e.zip |
Notes
Diffstat (limited to 'devel/gnu-automake')
-rw-r--r-- | devel/gnu-automake/Makefile | 1 | ||||
-rw-r--r-- | devel/gnu-automake/files/patch-lib::Automake::Config.in | 18 | ||||
-rw-r--r-- | devel/gnu-automake/files/patch-lib::Automake::Makefile.in | 10 |
3 files changed, 29 insertions, 0 deletions
diff --git a/devel/gnu-automake/Makefile b/devel/gnu-automake/Makefile index db69f70a4678..0747bdae69f0 100644 --- a/devel/gnu-automake/Makefile +++ b/devel/gnu-automake/Makefile @@ -7,6 +7,7 @@ PORTNAME= automake PORTVERSION= 1.8.3 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= automake diff --git a/devel/gnu-automake/files/patch-lib::Automake::Config.in b/devel/gnu-automake/files/patch-lib::Automake::Config.in new file mode 100644 index 000000000000..c9c17688d004 --- /dev/null +++ b/devel/gnu-automake/files/patch-lib::Automake::Config.in @@ -0,0 +1,18 @@ +--- lib/Automake/Config.in.orig Thu Dec 25 10:00:29 2003 ++++ lib/Automake/Config.in Mon Mar 29 20:23:13 2004 +@@ -25,5 +25,5 @@ + @ISA = qw (Exporter); +-@EXPORT = qw ($APIVERSION $PACKAGE $VERSION $libdir); ++@EXPORT = qw ($APIVERSION $APIPVERSION $PACKAGE $VERSION $libdir); + +-use vars qw ($APIVERSION $PACKAGE $VERSION $libdir); ++use vars qw ($APIVERSION $APIPVERSION $PACKAGE $VERSION $libdir); + +@@ -32,5 +32,6 @@ + $APIVERSION = '@APIVERSION@'; ++$APIPVERSION = '@APIPVERSION@'; + $PACKAGE = '@PACKAGE@'; + $VERSION = '@VERSION@'; +-$libdir = '@datadir@/@PACKAGE@-@APIVERSION@'; ++$libdir = '@datadir@/@PACKAGE@@APIPVERSION@'; + diff --git a/devel/gnu-automake/files/patch-lib::Automake::Makefile.in b/devel/gnu-automake/files/patch-lib::Automake::Makefile.in new file mode 100644 index 000000000000..a1ae8ffe243e --- /dev/null +++ b/devel/gnu-automake/files/patch-lib::Automake::Makefile.in @@ -0,0 +1,10 @@ +--- lib/Automake/Makefile.in.orig Sun Mar 7 09:04:33 2004 ++++ lib/Automake/Makefile.in Mon Mar 29 20:22:26 2004 +@@ -70,2 +70,3 @@ + APIVERSION = @APIVERSION@ ++APIPVERSION = @APIPVERSION@ + AUTOCONF = @AUTOCONF@ +@@ -161,2 +162,3 @@ + -e 's,[@]APIVERSION[@],$(APIVERSION),g' \ ++ -e 's,[@]APIPVERSION[@],$(APIPVERSION),g' \ + -e 's,[@]PACKAGE[@],$(PACKAGE),g' \ |