aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--devel/autoconf213/Makefile7
-rw-r--r--devel/autoconf213/pkg-plist3
-rw-r--r--devel/autoconf253/Makefile7
-rw-r--r--devel/autoconf253/files/patch-autoconf.texi24
-rw-r--r--devel/autoconf253/pkg-plist6
-rw-r--r--devel/autoconf259/Makefile7
-rw-r--r--devel/autoconf259/files/patch-autoconf.texi26
-rw-r--r--devel/autoconf259/pkg-plist6
-rw-r--r--devel/autoconf26/Makefile7
-rw-r--r--devel/autoconf26/files/patch-autoconf.texi26
-rw-r--r--devel/autoconf26/pkg-plist6
-rw-r--r--devel/autoconf261/Makefile7
-rw-r--r--devel/autoconf261/files/patch-autoconf.texi26
-rw-r--r--devel/autoconf261/pkg-plist6
-rw-r--r--devel/autoconf262/Makefile7
-rw-r--r--devel/autoconf262/files/patch-autoconf.texi26
-rw-r--r--devel/autoconf262/pkg-plist6
-rw-r--r--devel/autoconf267/Makefile7
-rw-r--r--devel/autoconf267/files/patch-autoconf.texi26
-rw-r--r--devel/autoconf267/pkg-plist6
-rw-r--r--devel/autoconf268/Makefile7
-rw-r--r--devel/autoconf268/files/patch-autoconf.texi26
-rw-r--r--devel/autoconf268/pkg-plist6
-rw-r--r--devel/automake14/Makefile13
-rw-r--r--devel/automake14/files/patch-automake.texi26
-rw-r--r--devel/automake14/pkg-plist3
-rw-r--r--devel/automake15/Makefile12
-rw-r--r--devel/automake15/files/patch-automake.texi16
-rw-r--r--devel/automake18/Makefile13
-rw-r--r--devel/automake18/files/patch-doc::automake.texi16
-rw-r--r--devel/automake18/pkg-plist3
-rw-r--r--devel/gnu-autoconf/Makefile7
-rw-r--r--devel/gnu-autoconf/files/patch-autoconf.texi26
-rw-r--r--devel/gnu-autoconf/pkg-plist6
34 files changed, 264 insertions, 158 deletions
diff --git a/devel/autoconf213/Makefile b/devel/autoconf213/Makefile
index 377f5056bf31..e8a019605461 100644
--- a/devel/autoconf213/Makefile
+++ b/devel/autoconf213/Makefile
@@ -31,6 +31,7 @@ CONFIGURE_ENV= CONFIG_SHELL=${SH} M4=${LOCALBASE}/bin/gm4
CONFIGURE_ARGS= --program-suffix=${BUILD_VERSION}
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
WRKSRC= ${WRKDIR}/autoconf
+INFO= autoconf${BUILD_VERSION}
post-patch:
@${RM} ${WRKSRC}/*.info* >/dev/null 2>&1 || true
@@ -40,12 +41,12 @@ post-install:
@${INSTALL_SCRIPT} ${WRKSRC}/install-sh \
${PREFIX}/share/autoconf${BUILD_VERSION}
@-${RM} -fr ${PREFIX}/libexec/autoconf${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
.for i in autoconf autoheader autoreconf autoscan autoupdate ifnames
- ${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
+ @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i}
.endfor
- install-info ${PREFIX}/info/autoconf${BUILD_VERSION}.info \
+ @install-info ${PREFIX}/info/autoconf${BUILD_VERSION}.info \
${PREFIX}/info/dir
.include <bsd.port.mk>
diff --git a/devel/autoconf213/pkg-plist b/devel/autoconf213/pkg-plist
index f16aaab9fd77..bc5307aebbbe 100644
--- a/devel/autoconf213/pkg-plist
+++ b/devel/autoconf213/pkg-plist
@@ -4,9 +4,6 @@ bin/autoreconf%%BUILD_VERSION%%
bin/autoscan%%BUILD_VERSION%%
bin/autoupdate%%BUILD_VERSION%%
bin/ifnames%%BUILD_VERSION%%
-@unexec install-info --delete %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-info/autoconf%%BUILD_VERSION%%.info
-@exec install-info %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
libexec/autoconf%%BUILD_VERSION%%/autoconf
libexec/autoconf%%BUILD_VERSION%%/autoheader
libexec/autoconf%%BUILD_VERSION%%/autoreconf
diff --git a/devel/autoconf253/Makefile b/devel/autoconf253/Makefile
index 99004bf717ad..ecc6801ef07a 100644
--- a/devel/autoconf253/Makefile
+++ b/devel/autoconf253/Makefile
@@ -28,6 +28,7 @@ USE_BZIP2= yes
USE_GMAKE= yes
USE_PERL5_RUN= yes
USE_REINPLACE= yes
+INFO= autoconf${BUILD_VERSION} standards${BUILD_VERSION}
GNU_CONFIGURE= yes
CONFIGURE_ENV= CONFIG_SHELL=${SH} M4=${LOCALBASE}/bin/gm4
@@ -57,12 +58,12 @@ post-patch:
post-install:
.for FILE in ${GENERIC_TOOLS}
- ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
+ @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
.endfor
@-${RM} -fr ${PREFIX}/libexec/autoconf${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
.for i in autoconf autoheader autoreconf autoscan autoupdate ifnames
- ${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
+ @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i}
.endfor
diff --git a/devel/autoconf253/files/patch-autoconf.texi b/devel/autoconf253/files/patch-autoconf.texi
index 2793085ce840..96be39a790c3 100644
--- a/devel/autoconf253/files/patch-autoconf.texi
+++ b/devel/autoconf253/files/patch-autoconf.texi
@@ -1,5 +1,5 @@
---- doc/autoconf.texi.orig Fri Mar 8 04:57:41 2002
-+++ doc/autoconf.texi Wed Feb 11 00:10:07 2004
+--- doc/autoconf.texi.orig Fri Mar 8 12:57:41 2002
++++ doc/autoconf.texi Thu Oct 14 20:14:14 2004
@@ -2,4 +2,4 @@
@c %**start of header
-@setfilename autoconf.info
@@ -7,8 +7,26 @@
+@setfilename autoconf253.info
+@settitle Autoconf253
-@@ -36,3 +36,3 @@
+@@ -36,21 +36,3 @@
@direntry
-* Autoconf: (autoconf). Create source code configuration scripts
+-@end direntry
+-
+-@dircategory Individual utilities
+-@direntry
+-* autoscan: (autoconf)autoscan Invocation.
+- Semi-automatic @file{configure.ac} writing
+-* ifnames: (autoconf)ifnames Invocation.
+- Listing the conditionals in source code
+-* autoconf: (autoconf)autoconf Invocation.
+- How to create configuration scripts
+-* autoreconf: (autoconf)autoreconf Invocation.
+- Remaking multiple @command{configure} scripts
+-* configure: (autoconf)configure Invocation.
+- Configuring a package
+-* config.status: (autoconf)config.status Invocation.
+- Recreating a configuration
+-* testsuite: (autoconf)testsuite Invocation.
+- Running an Autotest test suite
+* Autoconf253: (autoconf253). Create source code configuration scripts
@end direntry
diff --git a/devel/autoconf253/pkg-plist b/devel/autoconf253/pkg-plist
index f73365c680b2..c8c9fde3e23c 100644
--- a/devel/autoconf253/pkg-plist
+++ b/devel/autoconf253/pkg-plist
@@ -11,12 +11,6 @@ libexec/autoconf%%BUILD_VERSION%%/autoreconf
libexec/autoconf%%BUILD_VERSION%%/autoscan
libexec/autoconf%%BUILD_VERSION%%/autoupdate
libexec/autoconf%%BUILD_VERSION%%/ifnames
-@unexec install-info --delete %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@unexec install-info --delete %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
-info/autoconf%%BUILD_VERSION%%.info
-info/standards%%BUILD_VERSION%%.info
-@exec install-info %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@exec install-info %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
share/autoconf%%BUILD_VERSION%%/Autom4te/General.pm
share/autoconf%%BUILD_VERSION%%/Autom4te/Struct.pm
share/autoconf%%BUILD_VERSION%%/Autom4te/XFile.pm
diff --git a/devel/autoconf259/Makefile b/devel/autoconf259/Makefile
index a4d570063b67..aa6be53c07c7 100644
--- a/devel/autoconf259/Makefile
+++ b/devel/autoconf259/Makefile
@@ -27,6 +27,7 @@ USE_BZIP2= yes
USE_GMAKE= yes
USE_PERL5= yes
USE_REINPLACE= yes
+INFO= autoconf${BUILD_VERSION} standards${BUILD_VERSION}
GNU_CONFIGURE= yes
CONFIGURE_ENV+= CONFIG_SHELL=${SH}
@@ -57,12 +58,12 @@ post-patch:
post-install:
.for FILE in ${GENERIC_TOOLS}
- ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
+ @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
.endfor
@-${RM} -fr ${PREFIX}/libexec/autoconf${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
.for i in autoconf autoheader autoreconf autoscan autoupdate ifnames
- ${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
+ @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i}
.endfor
diff --git a/devel/autoconf259/files/patch-autoconf.texi b/devel/autoconf259/files/patch-autoconf.texi
index 5454129a2eb6..32c58797956f 100644
--- a/devel/autoconf259/files/patch-autoconf.texi
+++ b/devel/autoconf259/files/patch-autoconf.texi
@@ -1,5 +1,5 @@
---- doc/autoconf.texi.orig Wed Nov 5 02:38:29 2003
-+++ doc/autoconf.texi Sun Mar 14 16:46:41 2004
+--- doc/autoconf.texi.orig Wed Nov 5 10:38:29 2003
++++ doc/autoconf.texi Thu Oct 14 20:17:35 2004
@@ -3,5 +3,5 @@
@comment %**start of header
-@setfilename autoconf.info
@@ -8,8 +8,28 @@
-@settitle Autoconf
+@settitle Autoconf259
@setchapternewpage odd
-@@ -212,3 +212,3 @@
+@@ -212,23 +212,3 @@
@direntry
-* Autoconf: (autoconf). Create source code configuration scripts.
+-@end direntry
+-
+-@dircategory Individual utilities
+-@direntry
+-* autoscan: (autoconf)autoscan Invocation.
+- Semi-automatic @file{configure.ac} writing
+-* ifnames: (autoconf)ifnames Invocation. Listing conditionals in source.
+-* autoconf: (autoconf)autoconf Invocation.
+- How to create configuration scripts
+-* autoreconf: (autoconf)autoreconf Invocation.
+- Remaking multiple @command{configure} scripts
+-* autoheader: (autoconf)autoheader Invocation.
+- How to create configuration templates
+-* autom4te: (autoconf)autom4te Invocation.
+- The Autoconf executables backbone
+-* configure: (autoconf)configure Invocation. Configuring a package.
+-* autoupdate: (autoconf)autoupdate Invocation.
+- Automatic update of @file{configure.ac}
+-* config.status: (autoconf)config.status Invocation. Recreating configurations.
+-* testsuite: (autoconf)testsuite Invocation. Running an Autotest test suite.
+* Autoconf259: (autoconf259). Create source code configuration scripts.
@end direntry
diff --git a/devel/autoconf259/pkg-plist b/devel/autoconf259/pkg-plist
index 2e8fa133b5a8..ac4409d55537 100644
--- a/devel/autoconf259/pkg-plist
+++ b/devel/autoconf259/pkg-plist
@@ -5,12 +5,6 @@ bin/autoreconf%%BUILD_VERSION%%
bin/autoscan%%BUILD_VERSION%%
bin/autoupdate%%BUILD_VERSION%%
bin/ifnames%%BUILD_VERSION%%
-@unexec install-info --delete %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@unexec install-info --delete %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
-info/autoconf%%BUILD_VERSION%%.info
-info/standards%%BUILD_VERSION%%.info
-@exec install-info %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@exec install-info %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
libexec/autoconf%%BUILD_VERSION%%/autoconf
libexec/autoconf%%BUILD_VERSION%%/autoheader
libexec/autoconf%%BUILD_VERSION%%/autoreconf
diff --git a/devel/autoconf26/Makefile b/devel/autoconf26/Makefile
index a4d570063b67..aa6be53c07c7 100644
--- a/devel/autoconf26/Makefile
+++ b/devel/autoconf26/Makefile
@@ -27,6 +27,7 @@ USE_BZIP2= yes
USE_GMAKE= yes
USE_PERL5= yes
USE_REINPLACE= yes
+INFO= autoconf${BUILD_VERSION} standards${BUILD_VERSION}
GNU_CONFIGURE= yes
CONFIGURE_ENV+= CONFIG_SHELL=${SH}
@@ -57,12 +58,12 @@ post-patch:
post-install:
.for FILE in ${GENERIC_TOOLS}
- ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
+ @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
.endfor
@-${RM} -fr ${PREFIX}/libexec/autoconf${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
.for i in autoconf autoheader autoreconf autoscan autoupdate ifnames
- ${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
+ @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i}
.endfor
diff --git a/devel/autoconf26/files/patch-autoconf.texi b/devel/autoconf26/files/patch-autoconf.texi
index 5454129a2eb6..32c58797956f 100644
--- a/devel/autoconf26/files/patch-autoconf.texi
+++ b/devel/autoconf26/files/patch-autoconf.texi
@@ -1,5 +1,5 @@
---- doc/autoconf.texi.orig Wed Nov 5 02:38:29 2003
-+++ doc/autoconf.texi Sun Mar 14 16:46:41 2004
+--- doc/autoconf.texi.orig Wed Nov 5 10:38:29 2003
++++ doc/autoconf.texi Thu Oct 14 20:17:35 2004
@@ -3,5 +3,5 @@
@comment %**start of header
-@setfilename autoconf.info
@@ -8,8 +8,28 @@
-@settitle Autoconf
+@settitle Autoconf259
@setchapternewpage odd
-@@ -212,3 +212,3 @@
+@@ -212,23 +212,3 @@
@direntry
-* Autoconf: (autoconf). Create source code configuration scripts.
+-@end direntry
+-
+-@dircategory Individual utilities
+-@direntry
+-* autoscan: (autoconf)autoscan Invocation.
+- Semi-automatic @file{configure.ac} writing
+-* ifnames: (autoconf)ifnames Invocation. Listing conditionals in source.
+-* autoconf: (autoconf)autoconf Invocation.
+- How to create configuration scripts
+-* autoreconf: (autoconf)autoreconf Invocation.
+- Remaking multiple @command{configure} scripts
+-* autoheader: (autoconf)autoheader Invocation.
+- How to create configuration templates
+-* autom4te: (autoconf)autom4te Invocation.
+- The Autoconf executables backbone
+-* configure: (autoconf)configure Invocation. Configuring a package.
+-* autoupdate: (autoconf)autoupdate Invocation.
+- Automatic update of @file{configure.ac}
+-* config.status: (autoconf)config.status Invocation. Recreating configurations.
+-* testsuite: (autoconf)testsuite Invocation. Running an Autotest test suite.
+* Autoconf259: (autoconf259). Create source code configuration scripts.
@end direntry
diff --git a/devel/autoconf26/pkg-plist b/devel/autoconf26/pkg-plist
index 2e8fa133b5a8..ac4409d55537 100644
--- a/devel/autoconf26/pkg-plist
+++ b/devel/autoconf26/pkg-plist
@@ -5,12 +5,6 @@ bin/autoreconf%%BUILD_VERSION%%
bin/autoscan%%BUILD_VERSION%%
bin/autoupdate%%BUILD_VERSION%%
bin/ifnames%%BUILD_VERSION%%
-@unexec install-info --delete %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@unexec install-info --delete %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
-info/autoconf%%BUILD_VERSION%%.info
-info/standards%%BUILD_VERSION%%.info
-@exec install-info %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@exec install-info %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
libexec/autoconf%%BUILD_VERSION%%/autoconf
libexec/autoconf%%BUILD_VERSION%%/autoheader
libexec/autoconf%%BUILD_VERSION%%/autoreconf
diff --git a/devel/autoconf261/Makefile b/devel/autoconf261/Makefile
index a4d570063b67..aa6be53c07c7 100644
--- a/devel/autoconf261/Makefile
+++ b/devel/autoconf261/Makefile
@@ -27,6 +27,7 @@ USE_BZIP2= yes
USE_GMAKE= yes
USE_PERL5= yes
USE_REINPLACE= yes
+INFO= autoconf${BUILD_VERSION} standards${BUILD_VERSION}
GNU_CONFIGURE= yes
CONFIGURE_ENV+= CONFIG_SHELL=${SH}
@@ -57,12 +58,12 @@ post-patch:
post-install:
.for FILE in ${GENERIC_TOOLS}
- ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
+ @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
.endfor
@-${RM} -fr ${PREFIX}/libexec/autoconf${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
.for i in autoconf autoheader autoreconf autoscan autoupdate ifnames
- ${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
+ @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i}
.endfor
diff --git a/devel/autoconf261/files/patch-autoconf.texi b/devel/autoconf261/files/patch-autoconf.texi
index 5454129a2eb6..32c58797956f 100644
--- a/devel/autoconf261/files/patch-autoconf.texi
+++ b/devel/autoconf261/files/patch-autoconf.texi
@@ -1,5 +1,5 @@
---- doc/autoconf.texi.orig Wed Nov 5 02:38:29 2003
-+++ doc/autoconf.texi Sun Mar 14 16:46:41 2004
+--- doc/autoconf.texi.orig Wed Nov 5 10:38:29 2003
++++ doc/autoconf.texi Thu Oct 14 20:17:35 2004
@@ -3,5 +3,5 @@
@comment %**start of header
-@setfilename autoconf.info
@@ -8,8 +8,28 @@
-@settitle Autoconf
+@settitle Autoconf259
@setchapternewpage odd
-@@ -212,3 +212,3 @@
+@@ -212,23 +212,3 @@
@direntry
-* Autoconf: (autoconf). Create source code configuration scripts.
+-@end direntry
+-
+-@dircategory Individual utilities
+-@direntry
+-* autoscan: (autoconf)autoscan Invocation.
+- Semi-automatic @file{configure.ac} writing
+-* ifnames: (autoconf)ifnames Invocation. Listing conditionals in source.
+-* autoconf: (autoconf)autoconf Invocation.
+- How to create configuration scripts
+-* autoreconf: (autoconf)autoreconf Invocation.
+- Remaking multiple @command{configure} scripts
+-* autoheader: (autoconf)autoheader Invocation.
+- How to create configuration templates
+-* autom4te: (autoconf)autom4te Invocation.
+- The Autoconf executables backbone
+-* configure: (autoconf)configure Invocation. Configuring a package.
+-* autoupdate: (autoconf)autoupdate Invocation.
+- Automatic update of @file{configure.ac}
+-* config.status: (autoconf)config.status Invocation. Recreating configurations.
+-* testsuite: (autoconf)testsuite Invocation. Running an Autotest test suite.
+* Autoconf259: (autoconf259). Create source code configuration scripts.
@end direntry
diff --git a/devel/autoconf261/pkg-plist b/devel/autoconf261/pkg-plist
index 2e8fa133b5a8..ac4409d55537 100644
--- a/devel/autoconf261/pkg-plist
+++ b/devel/autoconf261/pkg-plist
@@ -5,12 +5,6 @@ bin/autoreconf%%BUILD_VERSION%%
bin/autoscan%%BUILD_VERSION%%
bin/autoupdate%%BUILD_VERSION%%
bin/ifnames%%BUILD_VERSION%%
-@unexec install-info --delete %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@unexec install-info --delete %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
-info/autoconf%%BUILD_VERSION%%.info
-info/standards%%BUILD_VERSION%%.info
-@exec install-info %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@exec install-info %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
libexec/autoconf%%BUILD_VERSION%%/autoconf
libexec/autoconf%%BUILD_VERSION%%/autoheader
libexec/autoconf%%BUILD_VERSION%%/autoreconf
diff --git a/devel/autoconf262/Makefile b/devel/autoconf262/Makefile
index a4d570063b67..aa6be53c07c7 100644
--- a/devel/autoconf262/Makefile
+++ b/devel/autoconf262/Makefile
@@ -27,6 +27,7 @@ USE_BZIP2= yes
USE_GMAKE= yes
USE_PERL5= yes
USE_REINPLACE= yes
+INFO= autoconf${BUILD_VERSION} standards${BUILD_VERSION}
GNU_CONFIGURE= yes
CONFIGURE_ENV+= CONFIG_SHELL=${SH}
@@ -57,12 +58,12 @@ post-patch:
post-install:
.for FILE in ${GENERIC_TOOLS}
- ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
+ @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
.endfor
@-${RM} -fr ${PREFIX}/libexec/autoconf${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
.for i in autoconf autoheader autoreconf autoscan autoupdate ifnames
- ${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
+ @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i}
.endfor
diff --git a/devel/autoconf262/files/patch-autoconf.texi b/devel/autoconf262/files/patch-autoconf.texi
index 5454129a2eb6..32c58797956f 100644
--- a/devel/autoconf262/files/patch-autoconf.texi
+++ b/devel/autoconf262/files/patch-autoconf.texi
@@ -1,5 +1,5 @@
---- doc/autoconf.texi.orig Wed Nov 5 02:38:29 2003
-+++ doc/autoconf.texi Sun Mar 14 16:46:41 2004
+--- doc/autoconf.texi.orig Wed Nov 5 10:38:29 2003
++++ doc/autoconf.texi Thu Oct 14 20:17:35 2004
@@ -3,5 +3,5 @@
@comment %**start of header
-@setfilename autoconf.info
@@ -8,8 +8,28 @@
-@settitle Autoconf
+@settitle Autoconf259
@setchapternewpage odd
-@@ -212,3 +212,3 @@
+@@ -212,23 +212,3 @@
@direntry
-* Autoconf: (autoconf). Create source code configuration scripts.
+-@end direntry
+-
+-@dircategory Individual utilities
+-@direntry
+-* autoscan: (autoconf)autoscan Invocation.
+- Semi-automatic @file{configure.ac} writing
+-* ifnames: (autoconf)ifnames Invocation. Listing conditionals in source.
+-* autoconf: (autoconf)autoconf Invocation.
+- How to create configuration scripts
+-* autoreconf: (autoconf)autoreconf Invocation.
+- Remaking multiple @command{configure} scripts
+-* autoheader: (autoconf)autoheader Invocation.
+- How to create configuration templates
+-* autom4te: (autoconf)autom4te Invocation.
+- The Autoconf executables backbone
+-* configure: (autoconf)configure Invocation. Configuring a package.
+-* autoupdate: (autoconf)autoupdate Invocation.
+- Automatic update of @file{configure.ac}
+-* config.status: (autoconf)config.status Invocation. Recreating configurations.
+-* testsuite: (autoconf)testsuite Invocation. Running an Autotest test suite.
+* Autoconf259: (autoconf259). Create source code configuration scripts.
@end direntry
diff --git a/devel/autoconf262/pkg-plist b/devel/autoconf262/pkg-plist
index 2e8fa133b5a8..ac4409d55537 100644
--- a/devel/autoconf262/pkg-plist
+++ b/devel/autoconf262/pkg-plist
@@ -5,12 +5,6 @@ bin/autoreconf%%BUILD_VERSION%%
bin/autoscan%%BUILD_VERSION%%
bin/autoupdate%%BUILD_VERSION%%
bin/ifnames%%BUILD_VERSION%%
-@unexec install-info --delete %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@unexec install-info --delete %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
-info/autoconf%%BUILD_VERSION%%.info
-info/standards%%BUILD_VERSION%%.info
-@exec install-info %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@exec install-info %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
libexec/autoconf%%BUILD_VERSION%%/autoconf
libexec/autoconf%%BUILD_VERSION%%/autoheader
libexec/autoconf%%BUILD_VERSION%%/autoreconf
diff --git a/devel/autoconf267/Makefile b/devel/autoconf267/Makefile
index a4d570063b67..aa6be53c07c7 100644
--- a/devel/autoconf267/Makefile
+++ b/devel/autoconf267/Makefile
@@ -27,6 +27,7 @@ USE_BZIP2= yes
USE_GMAKE= yes
USE_PERL5= yes
USE_REINPLACE= yes
+INFO= autoconf${BUILD_VERSION} standards${BUILD_VERSION}
GNU_CONFIGURE= yes
CONFIGURE_ENV+= CONFIG_SHELL=${SH}
@@ -57,12 +58,12 @@ post-patch:
post-install:
.for FILE in ${GENERIC_TOOLS}
- ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
+ @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
.endfor
@-${RM} -fr ${PREFIX}/libexec/autoconf${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
.for i in autoconf autoheader autoreconf autoscan autoupdate ifnames
- ${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
+ @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i}
.endfor
diff --git a/devel/autoconf267/files/patch-autoconf.texi b/devel/autoconf267/files/patch-autoconf.texi
index 5454129a2eb6..32c58797956f 100644
--- a/devel/autoconf267/files/patch-autoconf.texi
+++ b/devel/autoconf267/files/patch-autoconf.texi
@@ -1,5 +1,5 @@
---- doc/autoconf.texi.orig Wed Nov 5 02:38:29 2003
-+++ doc/autoconf.texi Sun Mar 14 16:46:41 2004
+--- doc/autoconf.texi.orig Wed Nov 5 10:38:29 2003
++++ doc/autoconf.texi Thu Oct 14 20:17:35 2004
@@ -3,5 +3,5 @@
@comment %**start of header
-@setfilename autoconf.info
@@ -8,8 +8,28 @@
-@settitle Autoconf
+@settitle Autoconf259
@setchapternewpage odd
-@@ -212,3 +212,3 @@
+@@ -212,23 +212,3 @@
@direntry
-* Autoconf: (autoconf). Create source code configuration scripts.
+-@end direntry
+-
+-@dircategory Individual utilities
+-@direntry
+-* autoscan: (autoconf)autoscan Invocation.
+- Semi-automatic @file{configure.ac} writing
+-* ifnames: (autoconf)ifnames Invocation. Listing conditionals in source.
+-* autoconf: (autoconf)autoconf Invocation.
+- How to create configuration scripts
+-* autoreconf: (autoconf)autoreconf Invocation.
+- Remaking multiple @command{configure} scripts
+-* autoheader: (autoconf)autoheader Invocation.
+- How to create configuration templates
+-* autom4te: (autoconf)autom4te Invocation.
+- The Autoconf executables backbone
+-* configure: (autoconf)configure Invocation. Configuring a package.
+-* autoupdate: (autoconf)autoupdate Invocation.
+- Automatic update of @file{configure.ac}
+-* config.status: (autoconf)config.status Invocation. Recreating configurations.
+-* testsuite: (autoconf)testsuite Invocation. Running an Autotest test suite.
+* Autoconf259: (autoconf259). Create source code configuration scripts.
@end direntry
diff --git a/devel/autoconf267/pkg-plist b/devel/autoconf267/pkg-plist
index 2e8fa133b5a8..ac4409d55537 100644
--- a/devel/autoconf267/pkg-plist
+++ b/devel/autoconf267/pkg-plist
@@ -5,12 +5,6 @@ bin/autoreconf%%BUILD_VERSION%%
bin/autoscan%%BUILD_VERSION%%
bin/autoupdate%%BUILD_VERSION%%
bin/ifnames%%BUILD_VERSION%%
-@unexec install-info --delete %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@unexec install-info --delete %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
-info/autoconf%%BUILD_VERSION%%.info
-info/standards%%BUILD_VERSION%%.info
-@exec install-info %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@exec install-info %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
libexec/autoconf%%BUILD_VERSION%%/autoconf
libexec/autoconf%%BUILD_VERSION%%/autoheader
libexec/autoconf%%BUILD_VERSION%%/autoreconf
diff --git a/devel/autoconf268/Makefile b/devel/autoconf268/Makefile
index a4d570063b67..aa6be53c07c7 100644
--- a/devel/autoconf268/Makefile
+++ b/devel/autoconf268/Makefile
@@ -27,6 +27,7 @@ USE_BZIP2= yes
USE_GMAKE= yes
USE_PERL5= yes
USE_REINPLACE= yes
+INFO= autoconf${BUILD_VERSION} standards${BUILD_VERSION}
GNU_CONFIGURE= yes
CONFIGURE_ENV+= CONFIG_SHELL=${SH}
@@ -57,12 +58,12 @@ post-patch:
post-install:
.for FILE in ${GENERIC_TOOLS}
- ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
+ @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
.endfor
@-${RM} -fr ${PREFIX}/libexec/autoconf${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
.for i in autoconf autoheader autoreconf autoscan autoupdate ifnames
- ${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
+ @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i}
.endfor
diff --git a/devel/autoconf268/files/patch-autoconf.texi b/devel/autoconf268/files/patch-autoconf.texi
index 5454129a2eb6..32c58797956f 100644
--- a/devel/autoconf268/files/patch-autoconf.texi
+++ b/devel/autoconf268/files/patch-autoconf.texi
@@ -1,5 +1,5 @@
---- doc/autoconf.texi.orig Wed Nov 5 02:38:29 2003
-+++ doc/autoconf.texi Sun Mar 14 16:46:41 2004
+--- doc/autoconf.texi.orig Wed Nov 5 10:38:29 2003
++++ doc/autoconf.texi Thu Oct 14 20:17:35 2004
@@ -3,5 +3,5 @@
@comment %**start of header
-@setfilename autoconf.info
@@ -8,8 +8,28 @@
-@settitle Autoconf
+@settitle Autoconf259
@setchapternewpage odd
-@@ -212,3 +212,3 @@
+@@ -212,23 +212,3 @@
@direntry
-* Autoconf: (autoconf). Create source code configuration scripts.
+-@end direntry
+-
+-@dircategory Individual utilities
+-@direntry
+-* autoscan: (autoconf)autoscan Invocation.
+- Semi-automatic @file{configure.ac} writing
+-* ifnames: (autoconf)ifnames Invocation. Listing conditionals in source.
+-* autoconf: (autoconf)autoconf Invocation.
+- How to create configuration scripts
+-* autoreconf: (autoconf)autoreconf Invocation.
+- Remaking multiple @command{configure} scripts
+-* autoheader: (autoconf)autoheader Invocation.
+- How to create configuration templates
+-* autom4te: (autoconf)autom4te Invocation.
+- The Autoconf executables backbone
+-* configure: (autoconf)configure Invocation. Configuring a package.
+-* autoupdate: (autoconf)autoupdate Invocation.
+- Automatic update of @file{configure.ac}
+-* config.status: (autoconf)config.status Invocation. Recreating configurations.
+-* testsuite: (autoconf)testsuite Invocation. Running an Autotest test suite.
+* Autoconf259: (autoconf259). Create source code configuration scripts.
@end direntry
diff --git a/devel/autoconf268/pkg-plist b/devel/autoconf268/pkg-plist
index 2e8fa133b5a8..ac4409d55537 100644
--- a/devel/autoconf268/pkg-plist
+++ b/devel/autoconf268/pkg-plist
@@ -5,12 +5,6 @@ bin/autoreconf%%BUILD_VERSION%%
bin/autoscan%%BUILD_VERSION%%
bin/autoupdate%%BUILD_VERSION%%
bin/ifnames%%BUILD_VERSION%%
-@unexec install-info --delete %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@unexec install-info --delete %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
-info/autoconf%%BUILD_VERSION%%.info
-info/standards%%BUILD_VERSION%%.info
-@exec install-info %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@exec install-info %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
libexec/autoconf%%BUILD_VERSION%%/autoconf
libexec/autoconf%%BUILD_VERSION%%/autoheader
libexec/autoconf%%BUILD_VERSION%%/autoreconf
diff --git a/devel/automake14/Makefile b/devel/automake14/Makefile
index c43427fc9bba..490fc7b2afc3 100644
--- a/devel/automake14/Makefile
+++ b/devel/automake14/Makefile
@@ -16,7 +16,7 @@ DISTNAME= automake-1.4-p6
MAINTAINER= ade@FreeBSD.org
COMMENT= GNU Standards-compliant Makefile generator (legacy version 1.4)
-DEPRECATED= Please use devel/automake18 instead
+DEPRECATED= Please use devel/automake19 instead
WANT_AUTOCONF_VER=213
WANT_AUTOCONF_RUN=yes
@@ -28,6 +28,7 @@ CONFIGURE_ENV= PERL=${PERL5}
CONFIGURE_ARGS= --program-suffix=${BUILD_VERSION}
USE_PERL5= yes
USE_REINPLACE= yes
+INFO= automake${BUILD_VERSION}
STRIP= # none
@@ -40,14 +41,14 @@ pre-configure:
${WRKSRC}/aclocal.in
pre-install:
- ${RM} -fr ${PREFIX}/share/automake${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/share/automake${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/share/aclocal${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/libexec/automake${BUILD_VERSION}
+ @${RM} -fr ${PREFIX}/share/automake${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/share/automake${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/share/aclocal${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/libexec/automake${BUILD_VERSION}
post-install:
.for i in aclocal automake
- ${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
+ @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
${PREFIX}/libexec/automake${BUILD_VERSION}/${i}
.endfor
@install-info ${PREFIX}/info/automake${BUILD_VERSION}.info \
diff --git a/devel/automake14/files/patch-automake.texi b/devel/automake14/files/patch-automake.texi
index d6d5eb6a0656..6ef38d01c313 100644
--- a/devel/automake14/files/patch-automake.texi
+++ b/devel/automake14/files/patch-automake.texi
@@ -1,7 +1,6 @@
---- automake.texi.orig Wed Jan 6 08:01:26 1999
-+++ automake.texi Mon Mar 18 21:44:51 2002
-@@ -1,7 +1,8 @@
- \input texinfo @c -*-texinfo-*-
+--- automake.texi.orig Wed Jan 6 13:01:26 1999
++++ automake.texi Thu Oct 14 20:28:26 2004
+@@ -2,4 +2,5 @@
@c %**start of header
-@setfilename automake.info
-@settitle automake
@@ -9,20 +8,13 @@
+@dircategory Programming & development tools
+@settitle Automake14
@setchapternewpage off
- @c %**end of header
-
-@@ -9,12 +10,12 @@
-
- @dircategory GNU admin
+@@ -11,8 +12,3 @@
@direntry
-* automake: (automake). Making Makefile.in's
-+* Automake14: (automake14). Making Makefile.in's
- @end direntry
-
- @dircategory Individual utilities
- @direntry
+-@end direntry
+-
+-@dircategory Individual utilities
+-@direntry
-* aclocal: (automake)Invoking aclocal. Generating aclocal.m4
-+* Aclocal14: (automake14) Invoking aclocal. Generating aclocal.m4
++* Automake14: (automake14). Making Makefile.in's
@end direntry
-
- @ifinfo
diff --git a/devel/automake14/pkg-plist b/devel/automake14/pkg-plist
index 1c9903f5a4e5..ab759af96a04 100644
--- a/devel/automake14/pkg-plist
+++ b/devel/automake14/pkg-plist
@@ -1,8 +1,5 @@
bin/aclocal%%BUILD_VERSION%%
bin/automake%%BUILD_VERSION%%
-@unexec install-info --delete %D/info/automake%%BUILD_VERSION%%.info %D/info/dir
-info/automake%%BUILD_VERSION%%.info
-@exec install-info %D/info/automake%%BUILD_VERSION%%.info %D/info/dir
libexec/automake%%BUILD_VERSION%%/aclocal
libexec/automake%%BUILD_VERSION%%/automake
share/aclocal%%BUILD_VERSION%%/amversion.m4
diff --git a/devel/automake15/Makefile b/devel/automake15/Makefile
index 531776cda3e3..49acf728d674 100644
--- a/devel/automake15/Makefile
+++ b/devel/automake15/Makefile
@@ -16,7 +16,7 @@ MASTER_SITE_SUBDIR= automake
MAINTAINER= ade@FreeBSD.org
COMMENT= GNU Standards-compliant Makefile generator (version 1.5)
-DEPRECATED= Please use devel/automake18 instead
+DEPRECATED= Please use devel/automake19 instead
WANT_AUTOCONF_VER=253
WANT_AUTOCONF_RUN=yes
@@ -41,14 +41,14 @@ post-patch:
)
pre-install:
- ${RM} -fr ${PREFIX}/share/automake${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/share/automake${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/share/aclocal${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/libexec/automake${BUILD_VERSION}
+ @${RM} -fr ${PREFIX}/share/automake${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/share/automake${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/share/aclocal${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/libexec/automake${BUILD_VERSION}
post-install:
.for i in aclocal automake
- ${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
+ @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
${PREFIX}/libexec/automake${BUILD_VERSION}/${i}
.endfor
diff --git a/devel/automake15/files/patch-automake.texi b/devel/automake15/files/patch-automake.texi
index 76b62213929c..ab8cc6955ff3 100644
--- a/devel/automake15/files/patch-automake.texi
+++ b/devel/automake15/files/patch-automake.texi
@@ -1,5 +1,5 @@
---- automake.texi.orig Wed Aug 22 22:40:36 2001
-+++ automake.texi Wed Feb 11 00:51:59 2004
+--- automake.texi.orig Thu Aug 23 05:40:36 2001
++++ automake.texi Thu Oct 14 20:29:56 2004
@@ -2,4 +2,5 @@
@c %**start of header
-@setfilename automake.info
@@ -8,13 +8,13 @@
+@dircategory Programming & development tools
+@settitle Automake15
@setchapternewpage off
-@@ -11,3 +12,3 @@
+@@ -11,8 +12,3 @@
@direntry
-* automake: (automake). Making Makefile.in's
-+* Automake15: (automake15). Making Makefile.in's
- @end direntry
-@@ -16,3 +17,3 @@
- @direntry
+-@end direntry
+-
+-@dircategory Individual utilities
+-@direntry
-* aclocal: (automake)Invoking aclocal. Generating aclocal.m4
-+* aclocal15: (automake15)Invoking aclocal. Generating aclocal.m4
++* Automake15: (automake15). Making Makefile.in's
@end direntry
diff --git a/devel/automake18/Makefile b/devel/automake18/Makefile
index f7e72ae75b79..c1dae6851674 100644
--- a/devel/automake18/Makefile
+++ b/devel/automake18/Makefile
@@ -16,6 +16,8 @@ DISTNAME= automake-${PORTVERSION}
MAINTAINER= ade@FreeBSD.org
COMMENT= GNU Standards-compliant Makefile generator (version 1.8)
+DEPRECATED= Please use devel/automake19 instead
+
WANT_AUTOCONF_VER=259
WANT_AUTOCONF_RUN=yes
BUILD_VERSION= 18
@@ -28,6 +30,7 @@ CONFIGURE_ENV= AUTOCONF=autoconf259 AUTOHEADER=autoheader259 MAKEINFO=makeinfo
CONFIGURE_ARGS= --program-suffix=${BUILD_VERSION}
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
USE_REINPLACE= yes
+INFO= automake${BUILD_VERSION}
post-patch:
@(cd ${WRKSRC}/doc && \
@@ -39,14 +42,14 @@ post-patch:
@${REINPLACE_CMD} -e 's,%%X11BASE%%,${X11BASE},g' ${WRKSRC}/aclocal.in
pre-install:
- ${RM} -fr ${PREFIX}/share/automake${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/share/automake${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/share/aclocal${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/libexec/automake${BUILD_VERSION}
+ @${RM} -fr ${PREFIX}/share/automake${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/share/automake${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/share/aclocal${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/libexec/automake${BUILD_VERSION}
post-install:
.for i in aclocal automake
- ${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
+ @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
${PREFIX}/libexec/automake${BUILD_VERSION}/${i}
.endfor
diff --git a/devel/automake18/files/patch-doc::automake.texi b/devel/automake18/files/patch-doc::automake.texi
index 3e2e8cd439f4..74e7a004a731 100644
--- a/devel/automake18/files/patch-doc::automake.texi
+++ b/devel/automake18/files/patch-doc::automake.texi
@@ -1,5 +1,5 @@
---- doc/automake.texi.orig Sun Feb 15 10:01:40 2004
-+++ doc/automake.texi Sun Mar 14 17:13:45 2004
+--- doc/automake.texi.orig Thu May 13 20:41:35 2004
++++ doc/automake.texi Thu Oct 14 20:32:26 2004
@@ -2,4 +2,4 @@
@c %**start of header
-@setfilename automake.info
@@ -7,13 +7,13 @@
+@setfilename automake18.info
+@settitle automake18
@setchapternewpage off
-@@ -36,3 +36,3 @@
+@@ -36,8 +36,3 @@
@direntry
-* automake: (automake). Making Makefile.in's.
-+* automake18: (automake18). Making Makefile.in's.
- @end direntry
-@@ -41,3 +41,3 @@
- @direntry
+-@end direntry
+-
+-@dircategory Individual utilities
+-@direntry
-* aclocal: (automake)Invoking aclocal. Generating aclocal.m4.
-+* aclocal18: (automake18)Invoking aclocal. Generating aclocal.m4.
++* automake18: (automake18). Making Makefile.in's.
@end direntry
diff --git a/devel/automake18/pkg-plist b/devel/automake18/pkg-plist
index 2e307b872175..cf2be6d499d2 100644
--- a/devel/automake18/pkg-plist
+++ b/devel/automake18/pkg-plist
@@ -1,8 +1,5 @@
bin/aclocal%%BUILD_VERSION%%
bin/automake%%BUILD_VERSION%%
-@unexec install-info --delete %D/info/automake%%BUILD_VERSION%%.info %D/info/dir
-info/automake%%BUILD_VERSION%%.info
-@exec install-info %D/info/automake%%BUILD_VERSION%%.info %D/info/dir
libexec/automake%%BUILD_VERSION%%/aclocal
libexec/automake%%BUILD_VERSION%%/automake
share/aclocal%%BUILD_VERSION%%/amversion.m4
diff --git a/devel/gnu-autoconf/Makefile b/devel/gnu-autoconf/Makefile
index a4d570063b67..aa6be53c07c7 100644
--- a/devel/gnu-autoconf/Makefile
+++ b/devel/gnu-autoconf/Makefile
@@ -27,6 +27,7 @@ USE_BZIP2= yes
USE_GMAKE= yes
USE_PERL5= yes
USE_REINPLACE= yes
+INFO= autoconf${BUILD_VERSION} standards${BUILD_VERSION}
GNU_CONFIGURE= yes
CONFIGURE_ENV+= CONFIG_SHELL=${SH}
@@ -57,12 +58,12 @@ post-patch:
post-install:
.for FILE in ${GENERIC_TOOLS}
- ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
+ @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION}
.endfor
@-${RM} -fr ${PREFIX}/libexec/autoconf${BUILD_VERSION}
- ${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
+ @${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION}
.for i in autoconf autoheader autoreconf autoscan autoupdate ifnames
- ${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
+ @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \
${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i}
.endfor
diff --git a/devel/gnu-autoconf/files/patch-autoconf.texi b/devel/gnu-autoconf/files/patch-autoconf.texi
index 5454129a2eb6..32c58797956f 100644
--- a/devel/gnu-autoconf/files/patch-autoconf.texi
+++ b/devel/gnu-autoconf/files/patch-autoconf.texi
@@ -1,5 +1,5 @@
---- doc/autoconf.texi.orig Wed Nov 5 02:38:29 2003
-+++ doc/autoconf.texi Sun Mar 14 16:46:41 2004
+--- doc/autoconf.texi.orig Wed Nov 5 10:38:29 2003
++++ doc/autoconf.texi Thu Oct 14 20:17:35 2004
@@ -3,5 +3,5 @@
@comment %**start of header
-@setfilename autoconf.info
@@ -8,8 +8,28 @@
-@settitle Autoconf
+@settitle Autoconf259
@setchapternewpage odd
-@@ -212,3 +212,3 @@
+@@ -212,23 +212,3 @@
@direntry
-* Autoconf: (autoconf). Create source code configuration scripts.
+-@end direntry
+-
+-@dircategory Individual utilities
+-@direntry
+-* autoscan: (autoconf)autoscan Invocation.
+- Semi-automatic @file{configure.ac} writing
+-* ifnames: (autoconf)ifnames Invocation. Listing conditionals in source.
+-* autoconf: (autoconf)autoconf Invocation.
+- How to create configuration scripts
+-* autoreconf: (autoconf)autoreconf Invocation.
+- Remaking multiple @command{configure} scripts
+-* autoheader: (autoconf)autoheader Invocation.
+- How to create configuration templates
+-* autom4te: (autoconf)autom4te Invocation.
+- The Autoconf executables backbone
+-* configure: (autoconf)configure Invocation. Configuring a package.
+-* autoupdate: (autoconf)autoupdate Invocation.
+- Automatic update of @file{configure.ac}
+-* config.status: (autoconf)config.status Invocation. Recreating configurations.
+-* testsuite: (autoconf)testsuite Invocation. Running an Autotest test suite.
+* Autoconf259: (autoconf259). Create source code configuration scripts.
@end direntry
diff --git a/devel/gnu-autoconf/pkg-plist b/devel/gnu-autoconf/pkg-plist
index 2e8fa133b5a8..ac4409d55537 100644
--- a/devel/gnu-autoconf/pkg-plist
+++ b/devel/gnu-autoconf/pkg-plist
@@ -5,12 +5,6 @@ bin/autoreconf%%BUILD_VERSION%%
bin/autoscan%%BUILD_VERSION%%
bin/autoupdate%%BUILD_VERSION%%
bin/ifnames%%BUILD_VERSION%%
-@unexec install-info --delete %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@unexec install-info --delete %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
-info/autoconf%%BUILD_VERSION%%.info
-info/standards%%BUILD_VERSION%%.info
-@exec install-info %D/info/autoconf%%BUILD_VERSION%%.info %D/info/dir
-@exec install-info %D/info/standards%%BUILD_VERSION%%.info %D/info/dir
libexec/autoconf%%BUILD_VERSION%%/autoconf
libexec/autoconf%%BUILD_VERSION%%/autoheader
libexec/autoconf%%BUILD_VERSION%%/autoreconf