Index: head/Mk/bsd.autotools.mk =================================================================== --- head/Mk/bsd.autotools.mk (revision 137572) +++ head/Mk/bsd.autotools.mk (revision 137573) @@ -1,393 +1,346 @@ #-*- mode: makefile; tab-width: 4; -*- # ex:ts=4 # # $FreeBSD$ # # Please view me with 4 column tabs! # # Please make sure all changes to this file are passed either through # the maintainer, or portmgr@FreeBSD.org Autotools_Include_MAINTAINER= ade@FreeBSD.org #--------------------------------------------------------------------------- +# IMPORTANT! READ ME! YES, THAT MEANS YOU! +# +# The "versioned" autotools referenced here are for BUILDING other ports +# only. THIS CANNOT BE STRESSED HIGHLY ENOUGH. Things WILL BREAK if you +# try to use them for anything other than ports/ work. This particularly +# includes use as a run-time dependency. +# +# If you need unmodified versions of autotools, such as for use in an +# IDE, then you MUST use the devel/gnu-* equivalents, and NOT these. +# See devel/anjuta and devel/kdevelop for examples. +# +# You have been WARNED! +#--------------------------------------------------------------------------- + +#--------------------------------------------------------------------------- # Entry points into the autotools system #--------------------------------------------------------------------------- # # USE_AUTOMAKE_VER= # - Port wishes to use automake, including the configuration step # - Implies GNU_CONFIGURE?=yes and WANT_AUTOMAKE_VER= # # WANT_AUTOMAKE_VER= # - Port needs access to the automake build environment # -# WANT_AUTOMAKE_RUN=yes -# - Port also needs access to automake as a run-time dependency -# This is a NULL-OP if neither {USE,WANT}_AUTOMAKE_VER are defined -# # AUTOMAKE_ARGS=... # - Extra arguments passed to automake during configure step # #--------------------------------------------------------------------------- # # USE_AUTOCONF_VER= # - Port wishes to use autoconf, including the configuration step # - Implies GNU_CONFIGURE?=yes and WANT_AUTOCONF_VER= # # USE_AUTOHEADER_VER= # - Port wishes to use autoheader in the configuration step # - Implies USE_AUTOCONF_VER= # # WANT_AUTOCONF_VER= # - Port needs access to the autoconf build environment # -# WANT_AUTOCONF_RUN=yes -# - Port also needs access to autoconf as a run-time dependency -# This is a NULL-OP if neither {USE,WANT}_AUTOCONF_VER are defined -# # AUTOCONF_ARGS=... # - Extra arguments passed to autoconf during configure step # # AUTOHEADER_ARGS=... # - Extra arguments passed to autoheader during configure step # #--------------------------------------------------------------------------- # # USE_LIBLTDL=yes # - Convenience knob to depend on the library from devel/libltdl15 # # USE_LIBTOOL_VER= # - Port wishes to use libtool, including the configuration step # - Port will use the ports version of libtool # - Implies GNU_CONFIGURE?=yes and WANT_LIBTOOL_VER= # # USE_INC_LIBTOOL_VER= # - Port wishes to use libtool, including the configuration step # - Port will use its own included version of libtool # - Implies GNU_CONFIGURE?=yes and WANT_LIBTOOL_VER= # # WANT_LIBTOOL_VER= # - Port needs access to the libtool build environment # -# WANT_LIBTOOL_RUN=yes -# - Port also needs access to autoconf as a run-time dependency -# This is a NULL-OP if neither {USE,WANT}_LIBTOOL_VER are defined -# # LIBTOOLFLAGS= # - Arguments passed to libtool during configure step # Currently defaults to "--disable-ltlibs", but this will be going # away when libtool .la files are brought back # # LIBTOOLFILES= # - A list of files to patch during libtool pre-configuration # Defaults to "aclocal.m4" if autoconf is in use, otherwise "configure" # #--------------------------------------------------------------------------- -# Major changes: -# -# - USE_AUTOMAKE, USE_AUTOCONF, USE_AUTOHEADER, and USE_LIBTOOL have -# been deprecated in favor of USE__VER=... -# As of 4/21/2004, changes should be made as follows: -# USE_AUTOMAKE -> USE_AUTOMAKE_VER=14 -# USE_AUTOCONF -> USE_AUTOCONF_VER=213 -# USE_AUTOHEADER -> USE_AUTOHEADER_VER=213 -# USE_LIBTOOL -> USE_LIBTOOL_VER=13 -# -# - additional variables WANT_{AUTOMAKE,AUTOCONF,AUTOHEADER,LIBTOOL}_RUN -# have been added to include a run-time dependency on the appropriate -# autotools port, as part of work in progress to remove ALL explicit -# dependencies on autotools in port Makefiles, in favor of using the -# autotools knobs -# -# - USE_LIBLTDL has been added as a convenience function to provide -# a lib dependency on devel/libltdl15, so that if the major version -# number changes in future, only one item has to be updated -# -# - {WANT,USE}_AUTOMAKE_VER no longer automatically brings in -# autoconf as before, to allow for greater flexibility in version -# matching, and to simplify bsd.autotools.mk -# It is now the port Makefile responsibility to specifically bring -# in the "appropriate" version of autoconf if automake is specified. -# The mappings are as follows (automake,autoconf pairs): -# (14,213) (15,253) (18,259) -# -# - Only set GNU_CONFIGURE automatically if USE__VER is specified, -# since WANT__VER implies that we want the environment, but not -# the configuration steps. -# -# Things to do: -# - Work on killing off as many "old" autotools ports as possible -# -# - Bring back the installation of libtool .la files by default, removing -# those FreeBSD-specific knobs added to prevent this -# -# - Migrate the myriad of autotools-related knobs into a single -# USE_AUTOTOOLS=... (to be defined) variable, akin to USE_GNOME=... #--------------------------------------------------------------------------- # DEPRECATED ENTRY POINTS #--------------------------------------------------------------------------- - .for i in AUTOMAKE AUTOCONF AUTOHEADER LIBTOOL . if defined(USE_${i}) BROKEN= "USE_${i} deprecated: replace with USE_${i}_VER=..." . endif . if defined(WANT_${i}) BROKEN= "WANT_${i} deprecated: replace with WANT_${i}_VER=..." . endif .endfor #--------------------------------------------------------------------------- # AUTOMAKE #--------------------------------------------------------------------------- .if defined(USE_AUTOMAKE_VER) WANT_AUTOMAKE_VER?= ${USE_AUTOMAKE_VER} GNU_CONFIGURE?= yes .endif .if defined(WANT_AUTOMAKE_VER) AUTOMAKE_SUFFIX= ${WANT_AUTOMAKE_VER} # Make sure we specified a legal version of automake # . if !exists(${PORTSDIR}/devel/automake${AUTOMAKE_SUFFIX}/Makefile) BROKEN= "Unknown AUTOMAKE version: ${WANT_AUTOMAKE_VER}" . endif # Set up the automake environment # AUTOMAKE= ${LOCALBASE}/bin/automake${AUTOMAKE_SUFFIX} AUTOMAKE_DIR= ${LOCALBASE}/share/automake${AUTOMAKE_SUFFIX} ACLOCAL= ${LOCALBASE}/bin/aclocal${AUTOMAKE_SUFFIX} ACLOCAL_DIR= ${LOCALBASE}/share/aclocal${AUTOMAKE_SUFFIX} AUTOMAKE_PATH= ${LOCALBASE}/libexec/automake${AUTOMAKE_SUFFIX}: AUTOMAKE_VARS= ACLOCAL=${ACLOCAL} AUTOMAKE=${AUTOMAKE} AUTOMAKE_VERSION= ${WANT_AUTOMAKE_VER} AUTOMAKE_DEPENDS= ${AUTOMAKE}:${PORTSDIR}/devel/automake${AUTOMAKE_SUFFIX} BUILD_DEPENDS+= ${AUTOMAKE_DEPENDS} -. if defined(WANT_AUTOMAKE_RUN) -RUN_DEPENDS+= ${AUTOMAKE_DEPENDS} -. endif # XXX: here be dragons, for some reason # . if ${WANT_AUTOMAKE_VER} == 14 AUTOMAKE_ARGS+= -i . endif .endif #--------------------------------------------------------------------------- # AUTOCONF/AUTOHEADER #--------------------------------------------------------------------------- .if defined(USE_AUTOHEADER_VER) USE_AUTOCONF_VER?= ${USE_AUTOHEADER_VER} .endif .if defined(USE_AUTOCONF_VER) WANT_AUTOCONF_VER?= ${USE_AUTOCONF_VER} GNU_CONFIGURE?= yes .endif # Sanity checking - we can't use a different version of # autoheader and autoconf # .if defined(USE_AUTOHEADER_VER) && defined(USE_AUTOCONF_VER) && \ ${USE_AUTOHEADER_VER} != ${USE_AUTOCONF_VER} BROKEN= "Incompatible autoheader ${USE_AUTOHEADER_VER} and autoconf ${USE_AUTOCONF_VER}" .endif .if defined(WANT_AUTOHEADER_VER) && defined(WANT_AUTOCONF_VER) && \ ${WANT_AUTOHEADER_VER} != ${WANT_AUTOCONF_VER} BROKEN= "Incompatible autoheader ${WANT_AUTOHEADER_VER} and autoconf ${WANT_AUTOCONF_VER}" .endif .if defined(WANT_AUTOCONF_VER) AUTOCONF_SUFFIX= ${WANT_AUTOCONF_VER} # Make sure we specified a legal version of autoconf # . if !exists(${PORTSDIR}/devel/autoconf${AUTOCONF_SUFFIX}/Makefile) BROKEN= "Unknown AUTOCONF version: ${WANT_AUTOCONF_VER}" . endif # Set up the autoconf/autoheader environment # AUTOCONF= ${LOCALBASE}/bin/autoconf${AUTOCONF_SUFFIX} AUTOCONF_DIR= ${LOCALBASE}/share/autoconf${AUTOCONF_SUFFIX} AUTOHEADER= ${LOCALBASE}/bin/autoheader${AUTOCONF_SUFFIX} AUTOIFNAMES= ${LOCALBASE}/bin/ifnames${AUTOCONF_SUFFIX} AUTOM4TE= ${LOCALBASE}/bin/autom4te${AUTOCONF_SUFFIX} AUTORECONF= ${LOCALBASE}/bin/autoreconf${AUTOCONF_SUFFIX} AUTOSCAN= ${LOCALBASE}/bin/autoscan${AUTOCONF_SUFFIX} AUTOUPDATE= ${LOCALBASE}/bin/autoupdate${AUTOCONF_SUFFIX} AUTOCONF_PATH= ${LOCALBASE}/libexec/autoconf${AUTOCONF_SUFFIX}: AUTOCONF_VARS= AUTOCONF=${AUTOCONF} AUTOHEADER=${AUTOHEADER} AUTOIFNAMES=${AUTOIFNAMES} AUTOM4TE=${AUTOM4TE} AUTORECONF=${AUTORECONF} AUTOSCAN=${AUTOSCAN} AUTOUPDATE=${AUTOUPDATE} AUTOCONF_VERSION= ${WANT_AUTOCONF_VER} AUTOCONF_DEPENDS= ${AUTOCONF}:${PORTSDIR}/devel/autoconf${AUTOCONF_SUFFIX} BUILD_DEPENDS+= ${AUTOCONF_DEPENDS} -. if defined(WANT_AUTOCONF_RUN) || defined(WANT_AUTOHEADER_RUN) -RUN_DEPENDS+= ${AUTOCONF_DEPENDS} -. endif .endif #--------------------------------------------------------------------------- # LIBTOOL/LIBLTDL #--------------------------------------------------------------------------- # Convenience function to save people having to depend directly on # devel/libltdl15 # .if defined(USE_LIBLTDL) LIB_DEPENDS+= ltdl.4:${PORTSDIR}/devel/libltdl15 .endif .if defined(USE_LIBTOOL_VER) GNU_CONFIGURE?= yes WANT_LIBTOOL_VER?= ${USE_LIBTOOL_VER} .elif defined(USE_INC_LIBTOOL_VER) GNU_CONFIGURE?= yes WANT_LIBTOOL_VER?= ${USE_INC_LIBTOOL_VER} .endif .if defined(WANT_LIBTOOL_VER) LIBTOOL_SUFFIX= ${WANT_LIBTOOL_VER} # Make sure we specified a legal version of libtool # . if !exists(${PORTSDIR}/devel/libtool${LIBTOOL_SUFFIX}/Makefile) BROKEN= "Unknown LIBTOOL version: ${WANT_LIBTOOL_VER}" . endif # Set up the libtool environment # LIBTOOL= ${LOCALBASE}/bin/libtool${LIBTOOL_SUFFIX} LIBTOOLIZE= ${LOCALBASE}/bin/libtoolize${LIBTOOL_SUFFIX} LIBTOOL_LIBEXECDIR= ${LOCALBASE}/libexec/libtool${LIBTOOL_SUFFIX} LIBTOOL_SHAREDIR= ${LOCALBASE}/share/libtool${LIBTOOL_SUFFIX} LIBTOOL_VERSION= ${WANT_LIBTOOL_VER} LIBTOOL_M4= ${LOCALBASE}/share/aclocal/libtool${LIBTOOL_VERSION}.m4 LTMAIN= ${LIBTOOL_SHAREDIR}/ltmain.sh . if ${LIBTOOL_VERSION} == 13 LTCONFIG= ${LIBTOOL_SHAREDIR}/ltconfig${LIBTOOL_VERSION} . else LTCONFIG= ${TRUE} . endif LIBTOOL_PATH= ${LIBTOOL_LIBEXECDIR}: LIBTOOL_VARS= LIBTOOL=${LIBTOOL} LIBTOOLIZE=${LIBTOOLIZE} LIBTOOL_M4=${LIBTOOL_M4} LTCONFIG=${LTCONFIG} LIBTOOL_DEPENDS= ${LIBTOOL}:${PORTSDIR}/devel/libtool${LIBTOOL_SUFFIX} BUILD_DEPENDS+= ${LIBTOOL_DEPENDS} -. if defined(WANT_LIBTOOL_RUN) -RUN_DEPENDS+= ${LIBTOOL_DEPENDS} -. endif LIBTOOLFLAGS?= --disable-ltlibs # XXX: probably not useful . if defined(USE_AUTOCONF_VER) LIBTOOLFILES?= aclocal.m4 . else LIBTOOLFILES?= configure . endif .endif #--------------------------------------------------------------------------- # Environmental handling # Now that we've got our environments defined for autotools, add them # in so that the rest of the world can handle them # AUTOTOOLS_PATH= ${AUTOMAKE_PATH}${AUTOCONF_PATH}${LIBTOOL_PATH} AUTOTOOLS_VARS= ${AUTOMAKE_VARS} ${AUTOCONF_VARS} ${LIBTOOL_VARS} .if defined(AUTOTOOLS_PATH) && (${AUTOTOOLS_PATH} != "") AUTOTOOLS_ENV+= PATH=${AUTOTOOLS_PATH}${PATH} CONFIGURE_ENV+= PATH=${AUTOTOOLS_PATH}${PATH} MAKE_ENV+= PATH=${AUTOTOOLS_PATH}${PATH} SCRIPTS_ENV+= PATH=${AUTOTOOLS_PATH}${PATH} . if defined(WANT_AUTOMAKE_VER) AUTOMAKE_ENV+= PATH=${AUTOTOOLS_PATH}${PATH} . endif . if defined(WANT_AUTOCONF_VER) AUTOCONF_ENV+= PATH=${AUTOTOOLS_PATH}${PATH} . endif . if defined(WANT_AUTOHEADER_VER) AUTOHEADER_ENV+=PATH=${AUTOTOOLS_PATH}${PATH} . endif .endif .if defined(AUTOTOOLS_VARS) && (${AUTOTOOLS_VARS} != "") AUTOTOOLS_ENV+= ${AUTOTOOLS_VARS} CONFIGURE_ENV+= ${AUTOTOOLS_VARS} MAKE_ENV+= ${AUTOTOOLS_VARS} SCRIPTS_ENV+= ${AUTOTOOLS_VARS} . if defined(WANT_AUTOMAKE_VER) AUTOMAKE_ENV+= ${AUTOTOOLS_VARS} . endif . if defined(WANT_AUTOCONF_VER) AUTOCONF_ENV+= ${AUTOTOOLS_VARS} . endif . if defined(WANT_AUTOHEADER_VER) AUTOHEADER_ENV+=${AUTOTOOLS_VARS} . endif .endif #--------------------------------------------------------------------------- # Make targets #--------------------------------------------------------------------------- # run-autotools # # Part of the configure set - run appropriate programs prior to # the actual configure target if autotools are in use # .if !target(run-autotools) run-autotools: . if defined(USE_AUTOMAKE_VER) @(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOMAKE} \ ${AUTOMAKE_ARGS}) . endif . if defined(USE_AUTOCONF_VER) @(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOCONF} \ ${AUTOCONF_ARGS}) . endif . if defined(USE_AUTOHEADER_VER) @(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOHEADER} \ ${AUTOHEADER_ARGS}) . endif .endif # patch-autotools # # Special target to automatically make libtool using ports use the # libtool port. See above for default values of LIBTOOLFILES. # .if !target(patch-autotools) patch-autotools: . if defined(USE_INC_LIBTOOL_VER) @(cd ${PATCH_WRKSRC}; \ for file in ${LIBTOOLFILES}; do \ ${CP} $$file $$file.tmp; \ ${SED} -e "s^\$$ac_aux_dir/ltconfig^${LTCONFIG}^g" \ -e "/^ltmain=/!s^\$$ac_aux_dir/ltmain.sh^${LIBTOOLFLAGS} ${LTMAIN}^g" \ $$file.tmp > $$file; \ ${RM} $$file.tmp; \ done); . elif defined(USE_LIBTOOL_VER) @(cd ${PATCH_WRKSRC}; \ for file in ${LIBTOOLFILES}; do \ ${CP} $$file $$file.tmp; \ ${SED} -e "s^\$$ac_aux_dir/ltconfig^${LTCONFIG}^g" \ -e "/^ltmain=/!s^\$$ac_aux_dir/ltmain.sh^${LIBTOOLFLAGS} ${LTMAIN}^g" \ -e '/^LIBTOOL=/s^\$$(top_builddir)/libtool^${LIBTOOL}^g' \ $$file.tmp > $$file; \ ${RM} $$file.tmp; \ done); . else @${DO_NADA} . endif .endif Property changes on: head/Mk/bsd.autotools.mk ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.9 \ No newline at end of property +1.10 \ No newline at end of property Index: head/devel/autoconf213/Makefile =================================================================== --- head/devel/autoconf213/Makefile (revision 137572) +++ head/devel/autoconf213/Makefile (revision 137573) @@ -1,52 +1,50 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.13.000227 PORTREVISION= 5 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= ade/gnu DISTNAME= autoconf-000227 MAINTAINER= ade@FreeBSD.org -COMMENT= Automatically configure source code on many Un*x platforms (legacy 2.13 version) - -DEPRECATED= Please use devel/autoconf259 instead +COMMENT= Automatically configure source code on many Un*x platforms (2.13) BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 BUILD_VERSION= 213 PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} LATEST_LINK= autoconf${BUILD_VERSION} USE_BZIP2= yes USE_PERL5= yes GNU_CONFIGURE= yes 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 post-install: @${CHMOD} +x ${PREFIX}/share/autoconf${BUILD_VERSION}/config.* @${INSTALL_SCRIPT} ${WRKSRC}/install-sh \ ${PREFIX}/share/autoconf${BUILD_VERSION} @-${RM} -fr ${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} \ ${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i} .endfor @install-info ${PREFIX}/info/autoconf${BUILD_VERSION}.info \ ${PREFIX}/info/dir .include Property changes on: head/devel/autoconf213/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.59 \ No newline at end of property +1.60 \ No newline at end of property Index: head/devel/autoconf253/Makefile =================================================================== --- head/devel/autoconf253/Makefile (revision 137572) +++ head/devel/autoconf253/Makefile (revision 137573) @@ -1,70 +1,68 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.53 PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf MAINTAINER= ade@FreeBSD.org -COMMENT= Automatically configure source code on many Un*x platforms (version 2.53) - -DEPRECATED= Please use devel/autoconf259 instead +COMMENT= Automatically configure source code on many Un*x platforms (2.53) BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 BUILD_VERSION= 253 PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} LATEST_LINK= autoconf${BUILD_VERSION} 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 CONFIGURE_ARGS= --program-suffix=${BUILD_VERSION} --without-lispdir CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} GENERIC_TOOLS= config.guess config.sub elisp-comp install-sh mdate-sh \ missing mkinstalldirs MAN1_PAGES= autoconf autoheader autom4te autoreconf autoscan \ autoupdate config.guess config.sub ifnames MAN1= ${MAN1_PAGES:S/$/${BUILD_VERSION}.1/g} post-patch: @(cd ${WRKSRC} && ${REINPLACE_CMD} -E 's,(PACKAGE=autoconf),\1${BUILD_VERSION},' configure) @(cd ${WRKSRC}/man && \ for file in *.[1x]; do \ ${REINPLACE_CMD} -E 's,([^-]auto)(conf|make|reconf|update|header|scan),\1\2${BUILD_VERSION},g ; \ s,(config\.guess|config\.sub|ifnames),\1${BUILD_VERSION},g' $$file ; \ done) @(cd ${WRKSRC}/doc && \ ${RM} -f *.info && \ ${MV} autoconf.texi autoconf${BUILD_VERSION}.texi && \ ${MV} standards.texi standards${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(autoconf)\),\1${BUILD_VERSION}\),g' autoconf${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(autoconf|standards)\.(info|texi),\1${BUILD_VERSION}\.\2,g' Makefile.in) post-install: .for FILE in ${GENERIC_TOOLS} @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION} .endfor @-${RM} -fr ${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} \ ${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i} .endfor .include Property changes on: head/devel/autoconf253/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.54 \ No newline at end of property +1.55 \ No newline at end of property Index: head/devel/autoconf259/Makefile =================================================================== --- head/devel/autoconf259/Makefile (revision 137572) +++ head/devel/autoconf259/Makefile (revision 137573) @@ -1,70 +1,70 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.59 PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf DISTNAME= autoconf-${PORTVERSION} MAINTAINER= ade@FreeBSD.org -COMMENT= Automatically configure source code on many Un*x platforms (version 2.59) +COMMENT= Automatically configure source code on many Un*x platforms (2.59) BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 BUILD_VERSION= 259 PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} LATEST_LINK= autoconf${BUILD_VERSION} 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} CONFIGURE_ENV+= M4=${LOCALBASE}/bin/gm4 CONFIGURE_ARGS= --program-suffix=${BUILD_VERSION} --without-lispdir CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} GENERIC_TOOLS= config.guess config.sub elisp-comp install-sh mdate-sh \ missing mkinstalldirs MAN1_PAGES= autoconf autoheader autom4te autoreconf autoscan \ autoupdate config.guess config.sub ifnames MAN1= ${MAN1_PAGES:S/$/${BUILD_VERSION}.1/g} post-patch: @(cd ${WRKSRC} && ${REINPLACE_CMD} -E 's,(PACKAGE=autoconf),\1${BUILD_VERSION},' configure) @(cd ${WRKSRC}/man && \ for file in *.[1x]; do \ ${REINPLACE_CMD} -E 's,([^-]auto)(conf|make|reconf|update|header|scan),\1\2${BUILD_VERSION},g ; \ s,(config\.guess|config\.sub|ifnames),\1${BUILD_VERSION},g' $$file ; \ done) @(cd ${WRKSRC}/doc && \ ${RM} -f *.info && \ ${MV} autoconf.texi autoconf${BUILD_VERSION}.texi && \ ${MV} standards.texi standards${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(autoconf)\),\1${BUILD_VERSION}\),g' autoconf${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(autoconf|standards)\.(info|texi),\1${BUILD_VERSION}\.\2,g' Makefile.in) post-install: .for FILE in ${GENERIC_TOOLS} @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION} .endfor @-${RM} -fr ${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} \ ${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i} .endfor .include Property changes on: head/devel/autoconf259/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.62 \ No newline at end of property +1.63 \ No newline at end of property Index: head/devel/autoconf26/Makefile =================================================================== --- head/devel/autoconf26/Makefile (revision 137572) +++ head/devel/autoconf26/Makefile (revision 137573) @@ -1,70 +1,70 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.59 PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf DISTNAME= autoconf-${PORTVERSION} MAINTAINER= ade@FreeBSD.org -COMMENT= Automatically configure source code on many Un*x platforms (version 2.59) +COMMENT= Automatically configure source code on many Un*x platforms (2.59) BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 BUILD_VERSION= 259 PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} LATEST_LINK= autoconf${BUILD_VERSION} 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} CONFIGURE_ENV+= M4=${LOCALBASE}/bin/gm4 CONFIGURE_ARGS= --program-suffix=${BUILD_VERSION} --without-lispdir CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} GENERIC_TOOLS= config.guess config.sub elisp-comp install-sh mdate-sh \ missing mkinstalldirs MAN1_PAGES= autoconf autoheader autom4te autoreconf autoscan \ autoupdate config.guess config.sub ifnames MAN1= ${MAN1_PAGES:S/$/${BUILD_VERSION}.1/g} post-patch: @(cd ${WRKSRC} && ${REINPLACE_CMD} -E 's,(PACKAGE=autoconf),\1${BUILD_VERSION},' configure) @(cd ${WRKSRC}/man && \ for file in *.[1x]; do \ ${REINPLACE_CMD} -E 's,([^-]auto)(conf|make|reconf|update|header|scan),\1\2${BUILD_VERSION},g ; \ s,(config\.guess|config\.sub|ifnames),\1${BUILD_VERSION},g' $$file ; \ done) @(cd ${WRKSRC}/doc && \ ${RM} -f *.info && \ ${MV} autoconf.texi autoconf${BUILD_VERSION}.texi && \ ${MV} standards.texi standards${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(autoconf)\),\1${BUILD_VERSION}\),g' autoconf${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(autoconf|standards)\.(info|texi),\1${BUILD_VERSION}\.\2,g' Makefile.in) post-install: .for FILE in ${GENERIC_TOOLS} @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION} .endfor @-${RM} -fr ${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} \ ${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i} .endfor .include Property changes on: head/devel/autoconf26/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.62 \ No newline at end of property +1.63 \ No newline at end of property Index: head/devel/autoconf261/Makefile =================================================================== --- head/devel/autoconf261/Makefile (revision 137572) +++ head/devel/autoconf261/Makefile (revision 137573) @@ -1,70 +1,70 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.59 PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf DISTNAME= autoconf-${PORTVERSION} MAINTAINER= ade@FreeBSD.org -COMMENT= Automatically configure source code on many Un*x platforms (version 2.59) +COMMENT= Automatically configure source code on many Un*x platforms (2.59) BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 BUILD_VERSION= 259 PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} LATEST_LINK= autoconf${BUILD_VERSION} 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} CONFIGURE_ENV+= M4=${LOCALBASE}/bin/gm4 CONFIGURE_ARGS= --program-suffix=${BUILD_VERSION} --without-lispdir CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} GENERIC_TOOLS= config.guess config.sub elisp-comp install-sh mdate-sh \ missing mkinstalldirs MAN1_PAGES= autoconf autoheader autom4te autoreconf autoscan \ autoupdate config.guess config.sub ifnames MAN1= ${MAN1_PAGES:S/$/${BUILD_VERSION}.1/g} post-patch: @(cd ${WRKSRC} && ${REINPLACE_CMD} -E 's,(PACKAGE=autoconf),\1${BUILD_VERSION},' configure) @(cd ${WRKSRC}/man && \ for file in *.[1x]; do \ ${REINPLACE_CMD} -E 's,([^-]auto)(conf|make|reconf|update|header|scan),\1\2${BUILD_VERSION},g ; \ s,(config\.guess|config\.sub|ifnames),\1${BUILD_VERSION},g' $$file ; \ done) @(cd ${WRKSRC}/doc && \ ${RM} -f *.info && \ ${MV} autoconf.texi autoconf${BUILD_VERSION}.texi && \ ${MV} standards.texi standards${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(autoconf)\),\1${BUILD_VERSION}\),g' autoconf${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(autoconf|standards)\.(info|texi),\1${BUILD_VERSION}\.\2,g' Makefile.in) post-install: .for FILE in ${GENERIC_TOOLS} @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION} .endfor @-${RM} -fr ${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} \ ${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i} .endfor .include Property changes on: head/devel/autoconf261/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.62 \ No newline at end of property +1.63 \ No newline at end of property Index: head/devel/autoconf262/Makefile =================================================================== --- head/devel/autoconf262/Makefile (revision 137572) +++ head/devel/autoconf262/Makefile (revision 137573) @@ -1,70 +1,70 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.59 PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf DISTNAME= autoconf-${PORTVERSION} MAINTAINER= ade@FreeBSD.org -COMMENT= Automatically configure source code on many Un*x platforms (version 2.59) +COMMENT= Automatically configure source code on many Un*x platforms (2.59) BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 BUILD_VERSION= 259 PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} LATEST_LINK= autoconf${BUILD_VERSION} 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} CONFIGURE_ENV+= M4=${LOCALBASE}/bin/gm4 CONFIGURE_ARGS= --program-suffix=${BUILD_VERSION} --without-lispdir CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} GENERIC_TOOLS= config.guess config.sub elisp-comp install-sh mdate-sh \ missing mkinstalldirs MAN1_PAGES= autoconf autoheader autom4te autoreconf autoscan \ autoupdate config.guess config.sub ifnames MAN1= ${MAN1_PAGES:S/$/${BUILD_VERSION}.1/g} post-patch: @(cd ${WRKSRC} && ${REINPLACE_CMD} -E 's,(PACKAGE=autoconf),\1${BUILD_VERSION},' configure) @(cd ${WRKSRC}/man && \ for file in *.[1x]; do \ ${REINPLACE_CMD} -E 's,([^-]auto)(conf|make|reconf|update|header|scan),\1\2${BUILD_VERSION},g ; \ s,(config\.guess|config\.sub|ifnames),\1${BUILD_VERSION},g' $$file ; \ done) @(cd ${WRKSRC}/doc && \ ${RM} -f *.info && \ ${MV} autoconf.texi autoconf${BUILD_VERSION}.texi && \ ${MV} standards.texi standards${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(autoconf)\),\1${BUILD_VERSION}\),g' autoconf${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(autoconf|standards)\.(info|texi),\1${BUILD_VERSION}\.\2,g' Makefile.in) post-install: .for FILE in ${GENERIC_TOOLS} @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION} .endfor @-${RM} -fr ${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} \ ${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i} .endfor .include Property changes on: head/devel/autoconf262/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.62 \ No newline at end of property +1.63 \ No newline at end of property Index: head/devel/autoconf267/Makefile =================================================================== --- head/devel/autoconf267/Makefile (revision 137572) +++ head/devel/autoconf267/Makefile (revision 137573) @@ -1,70 +1,70 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.59 PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf DISTNAME= autoconf-${PORTVERSION} MAINTAINER= ade@FreeBSD.org -COMMENT= Automatically configure source code on many Un*x platforms (version 2.59) +COMMENT= Automatically configure source code on many Un*x platforms (2.59) BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 BUILD_VERSION= 259 PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} LATEST_LINK= autoconf${BUILD_VERSION} 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} CONFIGURE_ENV+= M4=${LOCALBASE}/bin/gm4 CONFIGURE_ARGS= --program-suffix=${BUILD_VERSION} --without-lispdir CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} GENERIC_TOOLS= config.guess config.sub elisp-comp install-sh mdate-sh \ missing mkinstalldirs MAN1_PAGES= autoconf autoheader autom4te autoreconf autoscan \ autoupdate config.guess config.sub ifnames MAN1= ${MAN1_PAGES:S/$/${BUILD_VERSION}.1/g} post-patch: @(cd ${WRKSRC} && ${REINPLACE_CMD} -E 's,(PACKAGE=autoconf),\1${BUILD_VERSION},' configure) @(cd ${WRKSRC}/man && \ for file in *.[1x]; do \ ${REINPLACE_CMD} -E 's,([^-]auto)(conf|make|reconf|update|header|scan),\1\2${BUILD_VERSION},g ; \ s,(config\.guess|config\.sub|ifnames),\1${BUILD_VERSION},g' $$file ; \ done) @(cd ${WRKSRC}/doc && \ ${RM} -f *.info && \ ${MV} autoconf.texi autoconf${BUILD_VERSION}.texi && \ ${MV} standards.texi standards${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(autoconf)\),\1${BUILD_VERSION}\),g' autoconf${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(autoconf|standards)\.(info|texi),\1${BUILD_VERSION}\.\2,g' Makefile.in) post-install: .for FILE in ${GENERIC_TOOLS} @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION} .endfor @-${RM} -fr ${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} \ ${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i} .endfor .include Property changes on: head/devel/autoconf267/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.62 \ No newline at end of property +1.63 \ No newline at end of property Index: head/devel/autoconf268/Makefile =================================================================== --- head/devel/autoconf268/Makefile (revision 137572) +++ head/devel/autoconf268/Makefile (revision 137573) @@ -1,70 +1,70 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.59 PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf DISTNAME= autoconf-${PORTVERSION} MAINTAINER= ade@FreeBSD.org -COMMENT= Automatically configure source code on many Un*x platforms (version 2.59) +COMMENT= Automatically configure source code on many Un*x platforms (2.59) BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 BUILD_VERSION= 259 PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} LATEST_LINK= autoconf${BUILD_VERSION} 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} CONFIGURE_ENV+= M4=${LOCALBASE}/bin/gm4 CONFIGURE_ARGS= --program-suffix=${BUILD_VERSION} --without-lispdir CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} GENERIC_TOOLS= config.guess config.sub elisp-comp install-sh mdate-sh \ missing mkinstalldirs MAN1_PAGES= autoconf autoheader autom4te autoreconf autoscan \ autoupdate config.guess config.sub ifnames MAN1= ${MAN1_PAGES:S/$/${BUILD_VERSION}.1/g} post-patch: @(cd ${WRKSRC} && ${REINPLACE_CMD} -E 's,(PACKAGE=autoconf),\1${BUILD_VERSION},' configure) @(cd ${WRKSRC}/man && \ for file in *.[1x]; do \ ${REINPLACE_CMD} -E 's,([^-]auto)(conf|make|reconf|update|header|scan),\1\2${BUILD_VERSION},g ; \ s,(config\.guess|config\.sub|ifnames),\1${BUILD_VERSION},g' $$file ; \ done) @(cd ${WRKSRC}/doc && \ ${RM} -f *.info && \ ${MV} autoconf.texi autoconf${BUILD_VERSION}.texi && \ ${MV} standards.texi standards${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(autoconf)\),\1${BUILD_VERSION}\),g' autoconf${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(autoconf|standards)\.(info|texi),\1${BUILD_VERSION}\.\2,g' Makefile.in) post-install: .for FILE in ${GENERIC_TOOLS} @${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION} .endfor @-${RM} -fr ${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} \ ${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i} .endfor .include Property changes on: head/devel/autoconf268/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.62 \ No newline at end of property +1.63 \ No newline at end of property Index: head/devel/automake110/Makefile =================================================================== --- head/devel/automake110/Makefile (revision 137572) +++ head/devel/automake110/Makefile (revision 137573) @@ -1,54 +1,55 @@ # New ports collection makefile for: automake19 # Date created: 15 Feb 2003 # Whom: Udo Schweigert # # $FreeBSD$ # PORTNAME= automake PORTVERSION= 1.9.5 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= automake DISTNAME= automake-${PORTVERSION} MAINTAINER= ade@FreeBSD.org -COMMENT= GNU Standards-compliant Makefile generator (version 1.9) +COMMENT= GNU Standards-compliant Makefile generator (1.9) +RUN_DEPENDS= ${AUTOCONF_DEPENDS} + WANT_AUTOCONF_VER=259 -WANT_AUTOCONF_RUN=yes BUILD_VERSION= 19 PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} LATEST_LINK= automake${BUILD_VERSION} USE_BZIP2= yes USE_PERL5= yes GNU_CONFIGURE= yes CONFIGURE_ENV= AUTOCONF=autoconf259 AUTOHEADER=autoheader259 MAKEINFO=makeinfo CONFIGURE_ARGS= --program-suffix=${BUILD_VERSION} \ --infodir=${PREFIX}/info CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} USE_REINPLACE= yes INFO= automake${BUILD_VERSION} post-patch: @(cd ${WRKSRC}/doc && \ ${RM} -f *.info && \ ${MV} automake.texi automake${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(automake)\.(info),\1${BUILD_VERSION}\.\2,g' automake${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(automake)\.(info|texi),\1${BUILD_VERSION}\.\2,g' Makefile.in \ ) @${REINPLACE_CMD} -e 's,%%X11BASE%%,${X11BASE},g' ${WRKSRC}/aclocal.in pre-su-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} post-install: .for i in aclocal automake @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \ ${PREFIX}/libexec/automake${BUILD_VERSION}/${i} .endfor .include Property changes on: head/devel/automake110/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.63 \ No newline at end of property +1.64 \ No newline at end of property Index: head/devel/automake14/Makefile =================================================================== --- head/devel/automake14/Makefile (revision 137572) +++ head/devel/automake14/Makefile (revision 137573) @@ -1,57 +1,56 @@ # New ports collection makefile for: automake # Date created: 15 March 1997 # Whom: FUJIMOTO Kensaku # # $FreeBSD$ # PORTNAME= automake PORTVERSION= 1.4.6 PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= automake DISTNAME= automake-1.4-p6 MAINTAINER= ade@FreeBSD.org -COMMENT= GNU Standards-compliant Makefile generator (legacy version 1.4) +COMMENT= GNU Standards-compliant Makefile generator (1.4) -DEPRECATED= Please use devel/automake19 instead +RUN_DEPENDS= ${AUTOCONF_DEPENDS} WANT_AUTOCONF_VER=213 -WANT_AUTOCONF_RUN=yes BUILD_VERSION= 14 PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} LATEST_LINK= automake${BUILD_VERSION} GNU_CONFIGURE= yes CONFIGURE_ENV= PERL=${PERL} CONFIGURE_ARGS= --program-suffix=${BUILD_VERSION} USE_PERL5= yes USE_REINPLACE= yes INFO= automake${BUILD_VERSION} STRIP= # none post-patch: @${MV} ${WRKSRC}/automake.texi ${WRKSRC}/automake${BUILD_VERSION}.texi @${RM} ${WRKSRC}/*.info* ${WRKSRC}/*.dvi >/dev/null 2>&1 || true pre-configure: @${REINPLACE_CMD} -i -e "s,%%X11BASE%%,${X11BASE}," \ ${WRKSRC}/aclocal.in pre-su-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} post-install: .for i in aclocal automake @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \ ${PREFIX}/libexec/automake${BUILD_VERSION}/${i} .endfor @install-info ${PREFIX}/info/automake${BUILD_VERSION}.info \ ${PREFIX}/info/dir .include Property changes on: head/devel/automake14/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.56 \ No newline at end of property +1.57 \ No newline at end of property Index: head/devel/automake15/Makefile =================================================================== --- head/devel/automake15/Makefile (revision 137572) +++ head/devel/automake15/Makefile (revision 137573) @@ -1,55 +1,54 @@ # New ports collection makefile for: automake # Date created: 15 March 1997 # Whom: FUJIMOTO Kensaku # # $FreeBSD$ # PORTNAME= automake PORTVERSION= 1.5 PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= automake MAINTAINER= ade@FreeBSD.org -COMMENT= GNU Standards-compliant Makefile generator (version 1.5) +COMMENT= GNU Standards-compliant Makefile generator (1.5) -DEPRECATED= Please use devel/automake19 instead +RUN_DEPENDS= ${AUTOCONF_DEPENDS} WANT_AUTOCONF_VER=253 -WANT_AUTOCONF_RUN=yes BUILD_VERSION= 15 PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} LATEST_LINK= automake${BUILD_VERSION} USE_PERL5= yes GNU_CONFIGURE= yes CONFIGURE_ENV= AUTOCONF=autoconf253 AUTOHEADER=autoheader253 MAKEINFO=makeinfo CONFIGURE_ARGS= --program-suffix=${BUILD_VERSION} CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} USE_REINPLACE= yes post-patch: @(cd ${WRKSRC} && \ ${RM} -f *.info && \ ${MV} automake.texi automake${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(automake)\.(info),\1${BUILD_VERSION}\.\2,g' automake${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(automake)\.(info|texi),\1${BUILD_VERSION}\.\2,g' Makefile.in && \ ${REINPLACE_CMD} -e 's,%%BUILD_VERSION%%,${BUILD_VERSION},g; \ s,%%X11BASE%%,${X11BASE},g' aclocal.in \ ) pre-su-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} post-install: .for i in aclocal automake @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \ ${PREFIX}/libexec/automake${BUILD_VERSION}/${i} .endfor .include Property changes on: head/devel/automake15/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.47 \ No newline at end of property +1.48 \ No newline at end of property Index: head/devel/automake19/Makefile =================================================================== --- head/devel/automake19/Makefile (revision 137572) +++ head/devel/automake19/Makefile (revision 137573) @@ -1,54 +1,55 @@ # New ports collection makefile for: automake19 # Date created: 15 Feb 2003 # Whom: Udo Schweigert # # $FreeBSD$ # PORTNAME= automake PORTVERSION= 1.9.5 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= automake DISTNAME= automake-${PORTVERSION} MAINTAINER= ade@FreeBSD.org -COMMENT= GNU Standards-compliant Makefile generator (version 1.9) +COMMENT= GNU Standards-compliant Makefile generator (1.9) +RUN_DEPENDS= ${AUTOCONF_DEPENDS} + WANT_AUTOCONF_VER=259 -WANT_AUTOCONF_RUN=yes BUILD_VERSION= 19 PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} LATEST_LINK= automake${BUILD_VERSION} USE_BZIP2= yes USE_PERL5= yes GNU_CONFIGURE= yes CONFIGURE_ENV= AUTOCONF=autoconf259 AUTOHEADER=autoheader259 MAKEINFO=makeinfo CONFIGURE_ARGS= --program-suffix=${BUILD_VERSION} \ --infodir=${PREFIX}/info CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} USE_REINPLACE= yes INFO= automake${BUILD_VERSION} post-patch: @(cd ${WRKSRC}/doc && \ ${RM} -f *.info && \ ${MV} automake.texi automake${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(automake)\.(info),\1${BUILD_VERSION}\.\2,g' automake${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(automake)\.(info|texi),\1${BUILD_VERSION}\.\2,g' Makefile.in \ ) @${REINPLACE_CMD} -e 's,%%X11BASE%%,${X11BASE},g' ${WRKSRC}/aclocal.in pre-su-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} post-install: .for i in aclocal automake @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \ ${PREFIX}/libexec/automake${BUILD_VERSION}/${i} .endfor .include Property changes on: head/devel/automake19/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.63 \ No newline at end of property +1.64 \ No newline at end of property Index: head/devel/libtool13/Makefile =================================================================== --- head/devel/libtool13/Makefile (revision 137572) +++ head/devel/libtool13/Makefile (revision 137573) @@ -1,52 +1,50 @@ # New ports collection makefile for: libtool # Date created: 6 May 1998 # Whom: Motoyuki Kasahara # # $FreeBSD$ # PORTNAME= libtool PORTVERSION= 1.3.5 PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= libtool DISTNAME= libtool-${PORTVERSION} MAINTAINER= ade@FreeBSD.org -COMMENT= Generic shared library support script (version 1.3) - -DEPRECATED= Please use devel/libtool15 instead +COMMENT= Generic shared library support script (1.3) BUILD_VERSION= 13 PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} LATEST_LINK= libtool${BUILD_VERSION} GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-ltdl-install \ --program-suffix=${BUILD_VERSION} CONFIGURE_ENV= PREFIX=${PREFIX} PACKAGE=libtool${BUILD_VERSION} CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} USE_REINPLACE= yes INFO= libtool${BUILD_VERSION} post-patch: @(cd ${WRKSRC}/doc && \ ${RM} -f *.info* && \ ${MV} libtool.texi libtool${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(libtool|libtoolize)\),\1${BUILDVERSION}\),g' libtool${BUILD_VERSION}.texi) @${MV} -f ${WRKSRC}/libtool.m4 ${WRKSRC}/libtool${BUILD_VERSION}.m4 @${REINPLACE_CMD} -e 's|libtool.m4|libtool${BUILD_VERSION}.m4|g' ${WRKSRC}/Makefile.in post-install: @-${RM} -fr ${PREFIX}/libexec/libtool${BUILD_VERSION} @${MKDIR} ${PREFIX}/libexec/libtool${BUILD_VERSION} .for i in libtool libtoolize @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} ${PREFIX}/libexec/libtool${BUILD_VERSION}/${i} .endfor .for i in config.guess config.sub @${MV} ${PREFIX}/share/libtool${BUILD_VERSION}/${i}${BUILD_VERSION} ${PREFIX}/share/libtool${BUILD_VERSION}/${i} .endfor @${LN} -sf ${PREFIX}/share/libtool${BUILD_VERSION}/ltconfig${BUILD_VERSION} \ ${PREFIX}/share/libtool${BUILD_VERSION}/ltconfig .include Property changes on: head/devel/libtool13/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.39 \ No newline at end of property +1.40 \ No newline at end of property Index: head/devel/libtool15/Makefile =================================================================== --- head/devel/libtool15/Makefile (revision 137572) +++ head/devel/libtool15/Makefile (revision 137573) @@ -1,54 +1,54 @@ # New ports collection makefile for: libtool # Date created: 6 May 1998 # Whom: Motoyuki Kasahara # # $FreeBSD$ # PORTNAME?= libtool PORTVERSION= 1.5.10 PORTREVISION?= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= libtool DISTNAME= libtool-${PORTVERSION} MAINTAINER= ade@FreeBSD.org -COMMENT?= Generic shared library support script (version 1.5) +COMMENT?= Generic shared library support script (1.5) BUILD_VERSION= 15 LATEST_LINK?= libtool${BUILD_VERSION} PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} GNU_CONFIGURE= yes CONFIGURE_ARGS?= --disable-ltdl-install CONFIGURE_ARGS+= --program-suffix=${BUILD_VERSION} CONFIGURE_ENV= PREFIX=${PREFIX} PACKAGE=libtool${BUILD_VERSION} CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} USE_REINPLACE= yes .if ${PORTNAME} == "libtool" INFO= libtool${BUILD_VERSION} .endif post-patch: @(cd ${WRKSRC}/doc && \ ${RM} -f *.info* && \ ${MV} libtool.texi libtool${BUILD_VERSION}.texi && \ ${REINPLACE_CMD} -E 's,(libtool|libtoolize)\),\1${BUILDVERSION}\),g' libtool${BUILD_VERSION}.texi) @${MV} -f ${WRKSRC}/libtool.m4 ${WRKSRC}/libtool${BUILD_VERSION}.m4 @${MV} -f ${WRKSRC}/ltdl.m4 ${WRKSRC}/ltdl${BUILD_VERSION}.m4 @${REINPLACE_CMD} -e 's|libtool.m4|libtool${BUILD_VERSION}.m4|g' \ -e 's|ltdl.m4|ltdl${BUILD_VERSION}.m4|g' ${WRKSRC}/Makefile.in .if ${PORTNAME} == "libtool" post-install: @-${RM} -fr ${PREFIX}/libexec/libtool${BUILD_VERSION} @${MKDIR} ${PREFIX}/libexec/libtool${BUILD_VERSION} .for i in libtool libtoolize @${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} ${PREFIX}/libexec/libtool${BUILD_VERSION}/${i} .endfor @install-info ${PREFIX}/info/libtool${BUILD_VERSION}.info \ ${PREFIX}/info/dir .endif .include Property changes on: head/devel/libtool15/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.46 \ No newline at end of property +1.47 \ No newline at end of property