Index: head/devel/autoconf/Makefile =================================================================== --- head/devel/autoconf/Makefile (revision 66431) +++ head/devel/autoconf/Makefile (revision 66432) @@ -1,48 +1,57 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.53 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf MAINTAINER= ports@geeksrus.net -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ + help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 -CONFIGURE_ARGS= --without-lispdir + +.if exists(${LOCALBASE}/bin/emacs) +PLIST_SUB+= EMACS="" EMACSDIR=share/emacs +.elif exists(${LOCALBASE}/bin/xemacs) +PLIST_SUB+= EMACS="" EMACSDIR=lib/xemacs +.else +PLIST_SUB+= EMACS="@comment " EMACSDIR="" +.endif GENERIC_TOOLS= config.guess \ config.sub \ elisp-comp \ install-sh \ mdate-sh \ missing \ mkinstalldirs MAN1= autoconf.1 \ autoheader.1 \ autom4te.1 \ autoreconf.1 \ autoscan.1 \ autoupdate.1 \ config.guess.1 \ config.sub.1 \ ifnames.1 post-install: .for FILE in ${GENERIC_TOOLS} ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf .endfor .include Property changes on: head/devel/autoconf/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.33 \ No newline at end of property +1.34 \ No newline at end of property Index: head/devel/autoconf/files/patch-bin-autoscan.in =================================================================== --- head/devel/autoconf/files/patch-bin-autoscan.in (nonexistent) +++ head/devel/autoconf/files/patch-bin-autoscan.in (revision 66432) @@ -0,0 +1,15 @@ +--- bin/autoscan.in.orig Fri Mar 8 06:52:41 2002 ++++ bin/autoscan.in Mon Sep 16 03:56:50 2002 +@@ -192,7 +192,11 @@ + sub used ($$;$) + { + my ($kind, $word, $where) = @_; +- $where ||= "$File::Find::name:$."; ++ my $lineno = 0; ++ if (defined($.)) { ++ $lineno = $.; ++ } ++ $where ||= "$File::Find::name:$lineno"; + push (@{$used{$kind}{$word}}, $where); + } + Property changes on: head/devel/autoconf/files/patch-bin-autoscan.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/devel/autoconf/pkg-plist =================================================================== --- head/devel/autoconf/pkg-plist (revision 66431) +++ head/devel/autoconf/pkg-plist (revision 66432) @@ -1,62 +1,69 @@ bin/autoconf bin/autoheader bin/autom4te bin/autoreconf bin/autoscan bin/autoupdate bin/ifnames share/autoconf/Autom4te/General.pm share/autoconf/Autom4te/Struct.pm share/autoconf/Autom4te/XFile.pm share/autoconf/INSTALL share/autoconf/autoconf/autoconf.m4 share/autoconf/autoconf/autoconf.m4f share/autoconf/autoconf/autoheader.m4 share/autoconf/autoconf/autotest.m4 share/autoconf/autoconf/autoupdate.m4 share/autoconf/autoconf/c.m4 share/autoconf/autoconf/fortran.m4 share/autoconf/autoconf/functions.m4 share/autoconf/autoconf/general.m4 share/autoconf/autoconf/headers.m4 share/autoconf/autoconf/lang.m4 share/autoconf/autoconf/libs.m4 share/autoconf/autoconf/oldnames.m4 share/autoconf/autoconf/programs.m4 share/autoconf/autoconf/specific.m4 share/autoconf/autoconf/status.m4 share/autoconf/autoconf/types.m4 share/autoconf/autom4te.cfg share/autoconf/autoscan/functions share/autoconf/autoscan/headers share/autoconf/autoscan/identifiers share/autoconf/autoscan/libraries share/autoconf/autoscan/makevars share/autoconf/autoscan/programs share/autoconf/autotest/autotest.m4 share/autoconf/autotest/autotest.m4f share/autoconf/autotest/general.m4 share/autoconf/config.guess share/autoconf/config.sub share/autoconf/elisp-comp share/autoconf/install-sh share/autoconf/m4sugar/m4sh.m4 share/autoconf/m4sugar/m4sh.m4f share/autoconf/m4sugar/m4sugar.m4 share/autoconf/m4sugar/m4sugar.m4f share/autoconf/m4sugar/version.m4 share/autoconf/mdate-sh share/autoconf/missing share/autoconf/mkinstalldirs +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.elc +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.elc +@comment directories +%%EMACS%%@dirrm %%EMACSDIR%%/site-lisp +%%EMACS%%@dirrm %%EMACSDIR%% @dirrm share/autoconf/m4sugar @dirrm share/autoconf/autotest @dirrm share/autoconf/autoscan @dirrm share/autoconf/autoconf @dirrm share/autoconf/Autom4te @dirrm share/autoconf @unexec install-info --delete %D/info/autoconf.info %D/info/dir @unexec install-info --delete %D/info/standards.info %D/info/dir info/autoconf.info info/standards.info @exec install-info %D/info/autoconf.info %D/info/dir @exec install-info %D/info/standards.info %D/info/dir Property changes on: head/devel/autoconf/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/devel/autoconf253/Makefile =================================================================== --- head/devel/autoconf253/Makefile (revision 66431) +++ head/devel/autoconf253/Makefile (revision 66432) @@ -1,48 +1,57 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.53 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf MAINTAINER= ports@geeksrus.net -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ + help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 -CONFIGURE_ARGS= --without-lispdir + +.if exists(${LOCALBASE}/bin/emacs) +PLIST_SUB+= EMACS="" EMACSDIR=share/emacs +.elif exists(${LOCALBASE}/bin/xemacs) +PLIST_SUB+= EMACS="" EMACSDIR=lib/xemacs +.else +PLIST_SUB+= EMACS="@comment " EMACSDIR="" +.endif GENERIC_TOOLS= config.guess \ config.sub \ elisp-comp \ install-sh \ mdate-sh \ missing \ mkinstalldirs MAN1= autoconf.1 \ autoheader.1 \ autom4te.1 \ autoreconf.1 \ autoscan.1 \ autoupdate.1 \ config.guess.1 \ config.sub.1 \ ifnames.1 post-install: .for FILE in ${GENERIC_TOOLS} ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf .endfor .include Property changes on: head/devel/autoconf253/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.33 \ No newline at end of property +1.34 \ No newline at end of property Index: head/devel/autoconf253/files/patch-bin-autoscan.in =================================================================== --- head/devel/autoconf253/files/patch-bin-autoscan.in (nonexistent) +++ head/devel/autoconf253/files/patch-bin-autoscan.in (revision 66432) @@ -0,0 +1,15 @@ +--- bin/autoscan.in.orig Fri Mar 8 06:52:41 2002 ++++ bin/autoscan.in Mon Sep 16 03:56:50 2002 +@@ -192,7 +192,11 @@ + sub used ($$;$) + { + my ($kind, $word, $where) = @_; +- $where ||= "$File::Find::name:$."; ++ my $lineno = 0; ++ if (defined($.)) { ++ $lineno = $.; ++ } ++ $where ||= "$File::Find::name:$lineno"; + push (@{$used{$kind}{$word}}, $where); + } + Property changes on: head/devel/autoconf253/files/patch-bin-autoscan.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/devel/autoconf253/pkg-plist =================================================================== --- head/devel/autoconf253/pkg-plist (revision 66431) +++ head/devel/autoconf253/pkg-plist (revision 66432) @@ -1,62 +1,69 @@ bin/autoconf bin/autoheader bin/autom4te bin/autoreconf bin/autoscan bin/autoupdate bin/ifnames share/autoconf/Autom4te/General.pm share/autoconf/Autom4te/Struct.pm share/autoconf/Autom4te/XFile.pm share/autoconf/INSTALL share/autoconf/autoconf/autoconf.m4 share/autoconf/autoconf/autoconf.m4f share/autoconf/autoconf/autoheader.m4 share/autoconf/autoconf/autotest.m4 share/autoconf/autoconf/autoupdate.m4 share/autoconf/autoconf/c.m4 share/autoconf/autoconf/fortran.m4 share/autoconf/autoconf/functions.m4 share/autoconf/autoconf/general.m4 share/autoconf/autoconf/headers.m4 share/autoconf/autoconf/lang.m4 share/autoconf/autoconf/libs.m4 share/autoconf/autoconf/oldnames.m4 share/autoconf/autoconf/programs.m4 share/autoconf/autoconf/specific.m4 share/autoconf/autoconf/status.m4 share/autoconf/autoconf/types.m4 share/autoconf/autom4te.cfg share/autoconf/autoscan/functions share/autoconf/autoscan/headers share/autoconf/autoscan/identifiers share/autoconf/autoscan/libraries share/autoconf/autoscan/makevars share/autoconf/autoscan/programs share/autoconf/autotest/autotest.m4 share/autoconf/autotest/autotest.m4f share/autoconf/autotest/general.m4 share/autoconf/config.guess share/autoconf/config.sub share/autoconf/elisp-comp share/autoconf/install-sh share/autoconf/m4sugar/m4sh.m4 share/autoconf/m4sugar/m4sh.m4f share/autoconf/m4sugar/m4sugar.m4 share/autoconf/m4sugar/m4sugar.m4f share/autoconf/m4sugar/version.m4 share/autoconf/mdate-sh share/autoconf/missing share/autoconf/mkinstalldirs +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.elc +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.elc +@comment directories +%%EMACS%%@dirrm %%EMACSDIR%%/site-lisp +%%EMACS%%@dirrm %%EMACSDIR%% @dirrm share/autoconf/m4sugar @dirrm share/autoconf/autotest @dirrm share/autoconf/autoscan @dirrm share/autoconf/autoconf @dirrm share/autoconf/Autom4te @dirrm share/autoconf @unexec install-info --delete %D/info/autoconf.info %D/info/dir @unexec install-info --delete %D/info/standards.info %D/info/dir info/autoconf.info info/standards.info @exec install-info %D/info/autoconf.info %D/info/dir @exec install-info %D/info/standards.info %D/info/dir Property changes on: head/devel/autoconf253/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/devel/autoconf254/Makefile =================================================================== --- head/devel/autoconf254/Makefile (revision 66431) +++ head/devel/autoconf254/Makefile (revision 66432) @@ -1,48 +1,57 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.53 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf MAINTAINER= ports@geeksrus.net -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ + help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 -CONFIGURE_ARGS= --without-lispdir + +.if exists(${LOCALBASE}/bin/emacs) +PLIST_SUB+= EMACS="" EMACSDIR=share/emacs +.elif exists(${LOCALBASE}/bin/xemacs) +PLIST_SUB+= EMACS="" EMACSDIR=lib/xemacs +.else +PLIST_SUB+= EMACS="@comment " EMACSDIR="" +.endif GENERIC_TOOLS= config.guess \ config.sub \ elisp-comp \ install-sh \ mdate-sh \ missing \ mkinstalldirs MAN1= autoconf.1 \ autoheader.1 \ autom4te.1 \ autoreconf.1 \ autoscan.1 \ autoupdate.1 \ config.guess.1 \ config.sub.1 \ ifnames.1 post-install: .for FILE in ${GENERIC_TOOLS} ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf .endfor .include Property changes on: head/devel/autoconf254/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.33 \ No newline at end of property +1.34 \ No newline at end of property Index: head/devel/autoconf254/files/patch-bin-autoscan.in =================================================================== --- head/devel/autoconf254/files/patch-bin-autoscan.in (nonexistent) +++ head/devel/autoconf254/files/patch-bin-autoscan.in (revision 66432) @@ -0,0 +1,15 @@ +--- bin/autoscan.in.orig Fri Mar 8 06:52:41 2002 ++++ bin/autoscan.in Mon Sep 16 03:56:50 2002 +@@ -192,7 +192,11 @@ + sub used ($$;$) + { + my ($kind, $word, $where) = @_; +- $where ||= "$File::Find::name:$."; ++ my $lineno = 0; ++ if (defined($.)) { ++ $lineno = $.; ++ } ++ $where ||= "$File::Find::name:$lineno"; + push (@{$used{$kind}{$word}}, $where); + } + Property changes on: head/devel/autoconf254/files/patch-bin-autoscan.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/devel/autoconf254/pkg-plist =================================================================== --- head/devel/autoconf254/pkg-plist (revision 66431) +++ head/devel/autoconf254/pkg-plist (revision 66432) @@ -1,62 +1,69 @@ bin/autoconf bin/autoheader bin/autom4te bin/autoreconf bin/autoscan bin/autoupdate bin/ifnames share/autoconf/Autom4te/General.pm share/autoconf/Autom4te/Struct.pm share/autoconf/Autom4te/XFile.pm share/autoconf/INSTALL share/autoconf/autoconf/autoconf.m4 share/autoconf/autoconf/autoconf.m4f share/autoconf/autoconf/autoheader.m4 share/autoconf/autoconf/autotest.m4 share/autoconf/autoconf/autoupdate.m4 share/autoconf/autoconf/c.m4 share/autoconf/autoconf/fortran.m4 share/autoconf/autoconf/functions.m4 share/autoconf/autoconf/general.m4 share/autoconf/autoconf/headers.m4 share/autoconf/autoconf/lang.m4 share/autoconf/autoconf/libs.m4 share/autoconf/autoconf/oldnames.m4 share/autoconf/autoconf/programs.m4 share/autoconf/autoconf/specific.m4 share/autoconf/autoconf/status.m4 share/autoconf/autoconf/types.m4 share/autoconf/autom4te.cfg share/autoconf/autoscan/functions share/autoconf/autoscan/headers share/autoconf/autoscan/identifiers share/autoconf/autoscan/libraries share/autoconf/autoscan/makevars share/autoconf/autoscan/programs share/autoconf/autotest/autotest.m4 share/autoconf/autotest/autotest.m4f share/autoconf/autotest/general.m4 share/autoconf/config.guess share/autoconf/config.sub share/autoconf/elisp-comp share/autoconf/install-sh share/autoconf/m4sugar/m4sh.m4 share/autoconf/m4sugar/m4sh.m4f share/autoconf/m4sugar/m4sugar.m4 share/autoconf/m4sugar/m4sugar.m4f share/autoconf/m4sugar/version.m4 share/autoconf/mdate-sh share/autoconf/missing share/autoconf/mkinstalldirs +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.elc +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.elc +@comment directories +%%EMACS%%@dirrm %%EMACSDIR%%/site-lisp +%%EMACS%%@dirrm %%EMACSDIR%% @dirrm share/autoconf/m4sugar @dirrm share/autoconf/autotest @dirrm share/autoconf/autoscan @dirrm share/autoconf/autoconf @dirrm share/autoconf/Autom4te @dirrm share/autoconf @unexec install-info --delete %D/info/autoconf.info %D/info/dir @unexec install-info --delete %D/info/standards.info %D/info/dir info/autoconf.info info/standards.info @exec install-info %D/info/autoconf.info %D/info/dir @exec install-info %D/info/standards.info %D/info/dir Property changes on: head/devel/autoconf254/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/devel/autoconf257/Makefile =================================================================== --- head/devel/autoconf257/Makefile (revision 66431) +++ head/devel/autoconf257/Makefile (revision 66432) @@ -1,48 +1,57 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.53 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf MAINTAINER= ports@geeksrus.net -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ + help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 -CONFIGURE_ARGS= --without-lispdir + +.if exists(${LOCALBASE}/bin/emacs) +PLIST_SUB+= EMACS="" EMACSDIR=share/emacs +.elif exists(${LOCALBASE}/bin/xemacs) +PLIST_SUB+= EMACS="" EMACSDIR=lib/xemacs +.else +PLIST_SUB+= EMACS="@comment " EMACSDIR="" +.endif GENERIC_TOOLS= config.guess \ config.sub \ elisp-comp \ install-sh \ mdate-sh \ missing \ mkinstalldirs MAN1= autoconf.1 \ autoheader.1 \ autom4te.1 \ autoreconf.1 \ autoscan.1 \ autoupdate.1 \ config.guess.1 \ config.sub.1 \ ifnames.1 post-install: .for FILE in ${GENERIC_TOOLS} ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf .endfor .include Property changes on: head/devel/autoconf257/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.33 \ No newline at end of property +1.34 \ No newline at end of property Index: head/devel/autoconf257/files/patch-bin-autoscan.in =================================================================== --- head/devel/autoconf257/files/patch-bin-autoscan.in (nonexistent) +++ head/devel/autoconf257/files/patch-bin-autoscan.in (revision 66432) @@ -0,0 +1,15 @@ +--- bin/autoscan.in.orig Fri Mar 8 06:52:41 2002 ++++ bin/autoscan.in Mon Sep 16 03:56:50 2002 +@@ -192,7 +192,11 @@ + sub used ($$;$) + { + my ($kind, $word, $where) = @_; +- $where ||= "$File::Find::name:$."; ++ my $lineno = 0; ++ if (defined($.)) { ++ $lineno = $.; ++ } ++ $where ||= "$File::Find::name:$lineno"; + push (@{$used{$kind}{$word}}, $where); + } + Property changes on: head/devel/autoconf257/files/patch-bin-autoscan.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/devel/autoconf257/pkg-plist =================================================================== --- head/devel/autoconf257/pkg-plist (revision 66431) +++ head/devel/autoconf257/pkg-plist (revision 66432) @@ -1,62 +1,69 @@ bin/autoconf bin/autoheader bin/autom4te bin/autoreconf bin/autoscan bin/autoupdate bin/ifnames share/autoconf/Autom4te/General.pm share/autoconf/Autom4te/Struct.pm share/autoconf/Autom4te/XFile.pm share/autoconf/INSTALL share/autoconf/autoconf/autoconf.m4 share/autoconf/autoconf/autoconf.m4f share/autoconf/autoconf/autoheader.m4 share/autoconf/autoconf/autotest.m4 share/autoconf/autoconf/autoupdate.m4 share/autoconf/autoconf/c.m4 share/autoconf/autoconf/fortran.m4 share/autoconf/autoconf/functions.m4 share/autoconf/autoconf/general.m4 share/autoconf/autoconf/headers.m4 share/autoconf/autoconf/lang.m4 share/autoconf/autoconf/libs.m4 share/autoconf/autoconf/oldnames.m4 share/autoconf/autoconf/programs.m4 share/autoconf/autoconf/specific.m4 share/autoconf/autoconf/status.m4 share/autoconf/autoconf/types.m4 share/autoconf/autom4te.cfg share/autoconf/autoscan/functions share/autoconf/autoscan/headers share/autoconf/autoscan/identifiers share/autoconf/autoscan/libraries share/autoconf/autoscan/makevars share/autoconf/autoscan/programs share/autoconf/autotest/autotest.m4 share/autoconf/autotest/autotest.m4f share/autoconf/autotest/general.m4 share/autoconf/config.guess share/autoconf/config.sub share/autoconf/elisp-comp share/autoconf/install-sh share/autoconf/m4sugar/m4sh.m4 share/autoconf/m4sugar/m4sh.m4f share/autoconf/m4sugar/m4sugar.m4 share/autoconf/m4sugar/m4sugar.m4f share/autoconf/m4sugar/version.m4 share/autoconf/mdate-sh share/autoconf/missing share/autoconf/mkinstalldirs +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.elc +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.elc +@comment directories +%%EMACS%%@dirrm %%EMACSDIR%%/site-lisp +%%EMACS%%@dirrm %%EMACSDIR%% @dirrm share/autoconf/m4sugar @dirrm share/autoconf/autotest @dirrm share/autoconf/autoscan @dirrm share/autoconf/autoconf @dirrm share/autoconf/Autom4te @dirrm share/autoconf @unexec install-info --delete %D/info/autoconf.info %D/info/dir @unexec install-info --delete %D/info/standards.info %D/info/dir info/autoconf.info info/standards.info @exec install-info %D/info/autoconf.info %D/info/dir @exec install-info %D/info/standards.info %D/info/dir Property changes on: head/devel/autoconf257/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/devel/autoconf259/Makefile =================================================================== --- head/devel/autoconf259/Makefile (revision 66431) +++ head/devel/autoconf259/Makefile (revision 66432) @@ -1,48 +1,57 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.53 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf MAINTAINER= ports@geeksrus.net -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ + help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 -CONFIGURE_ARGS= --without-lispdir + +.if exists(${LOCALBASE}/bin/emacs) +PLIST_SUB+= EMACS="" EMACSDIR=share/emacs +.elif exists(${LOCALBASE}/bin/xemacs) +PLIST_SUB+= EMACS="" EMACSDIR=lib/xemacs +.else +PLIST_SUB+= EMACS="@comment " EMACSDIR="" +.endif GENERIC_TOOLS= config.guess \ config.sub \ elisp-comp \ install-sh \ mdate-sh \ missing \ mkinstalldirs MAN1= autoconf.1 \ autoheader.1 \ autom4te.1 \ autoreconf.1 \ autoscan.1 \ autoupdate.1 \ config.guess.1 \ config.sub.1 \ ifnames.1 post-install: .for FILE in ${GENERIC_TOOLS} ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf .endfor .include Property changes on: head/devel/autoconf259/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.33 \ No newline at end of property +1.34 \ No newline at end of property Index: head/devel/autoconf259/files/patch-bin-autoscan.in =================================================================== --- head/devel/autoconf259/files/patch-bin-autoscan.in (nonexistent) +++ head/devel/autoconf259/files/patch-bin-autoscan.in (revision 66432) @@ -0,0 +1,15 @@ +--- bin/autoscan.in.orig Fri Mar 8 06:52:41 2002 ++++ bin/autoscan.in Mon Sep 16 03:56:50 2002 +@@ -192,7 +192,11 @@ + sub used ($$;$) + { + my ($kind, $word, $where) = @_; +- $where ||= "$File::Find::name:$."; ++ my $lineno = 0; ++ if (defined($.)) { ++ $lineno = $.; ++ } ++ $where ||= "$File::Find::name:$lineno"; + push (@{$used{$kind}{$word}}, $where); + } + Property changes on: head/devel/autoconf259/files/patch-bin-autoscan.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/devel/autoconf259/pkg-plist =================================================================== --- head/devel/autoconf259/pkg-plist (revision 66431) +++ head/devel/autoconf259/pkg-plist (revision 66432) @@ -1,62 +1,69 @@ bin/autoconf bin/autoheader bin/autom4te bin/autoreconf bin/autoscan bin/autoupdate bin/ifnames share/autoconf/Autom4te/General.pm share/autoconf/Autom4te/Struct.pm share/autoconf/Autom4te/XFile.pm share/autoconf/INSTALL share/autoconf/autoconf/autoconf.m4 share/autoconf/autoconf/autoconf.m4f share/autoconf/autoconf/autoheader.m4 share/autoconf/autoconf/autotest.m4 share/autoconf/autoconf/autoupdate.m4 share/autoconf/autoconf/c.m4 share/autoconf/autoconf/fortran.m4 share/autoconf/autoconf/functions.m4 share/autoconf/autoconf/general.m4 share/autoconf/autoconf/headers.m4 share/autoconf/autoconf/lang.m4 share/autoconf/autoconf/libs.m4 share/autoconf/autoconf/oldnames.m4 share/autoconf/autoconf/programs.m4 share/autoconf/autoconf/specific.m4 share/autoconf/autoconf/status.m4 share/autoconf/autoconf/types.m4 share/autoconf/autom4te.cfg share/autoconf/autoscan/functions share/autoconf/autoscan/headers share/autoconf/autoscan/identifiers share/autoconf/autoscan/libraries share/autoconf/autoscan/makevars share/autoconf/autoscan/programs share/autoconf/autotest/autotest.m4 share/autoconf/autotest/autotest.m4f share/autoconf/autotest/general.m4 share/autoconf/config.guess share/autoconf/config.sub share/autoconf/elisp-comp share/autoconf/install-sh share/autoconf/m4sugar/m4sh.m4 share/autoconf/m4sugar/m4sh.m4f share/autoconf/m4sugar/m4sugar.m4 share/autoconf/m4sugar/m4sugar.m4f share/autoconf/m4sugar/version.m4 share/autoconf/mdate-sh share/autoconf/missing share/autoconf/mkinstalldirs +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.elc +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.elc +@comment directories +%%EMACS%%@dirrm %%EMACSDIR%%/site-lisp +%%EMACS%%@dirrm %%EMACSDIR%% @dirrm share/autoconf/m4sugar @dirrm share/autoconf/autotest @dirrm share/autoconf/autoscan @dirrm share/autoconf/autoconf @dirrm share/autoconf/Autom4te @dirrm share/autoconf @unexec install-info --delete %D/info/autoconf.info %D/info/dir @unexec install-info --delete %D/info/standards.info %D/info/dir info/autoconf.info info/standards.info @exec install-info %D/info/autoconf.info %D/info/dir @exec install-info %D/info/standards.info %D/info/dir Property changes on: head/devel/autoconf259/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/devel/autoconf26/Makefile =================================================================== --- head/devel/autoconf26/Makefile (revision 66431) +++ head/devel/autoconf26/Makefile (revision 66432) @@ -1,48 +1,57 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.53 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf MAINTAINER= ports@geeksrus.net -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ + help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 -CONFIGURE_ARGS= --without-lispdir + +.if exists(${LOCALBASE}/bin/emacs) +PLIST_SUB+= EMACS="" EMACSDIR=share/emacs +.elif exists(${LOCALBASE}/bin/xemacs) +PLIST_SUB+= EMACS="" EMACSDIR=lib/xemacs +.else +PLIST_SUB+= EMACS="@comment " EMACSDIR="" +.endif GENERIC_TOOLS= config.guess \ config.sub \ elisp-comp \ install-sh \ mdate-sh \ missing \ mkinstalldirs MAN1= autoconf.1 \ autoheader.1 \ autom4te.1 \ autoreconf.1 \ autoscan.1 \ autoupdate.1 \ config.guess.1 \ config.sub.1 \ ifnames.1 post-install: .for FILE in ${GENERIC_TOOLS} ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf .endfor .include Property changes on: head/devel/autoconf26/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.33 \ No newline at end of property +1.34 \ No newline at end of property Index: head/devel/autoconf26/files/patch-bin-autoscan.in =================================================================== --- head/devel/autoconf26/files/patch-bin-autoscan.in (nonexistent) +++ head/devel/autoconf26/files/patch-bin-autoscan.in (revision 66432) @@ -0,0 +1,15 @@ +--- bin/autoscan.in.orig Fri Mar 8 06:52:41 2002 ++++ bin/autoscan.in Mon Sep 16 03:56:50 2002 +@@ -192,7 +192,11 @@ + sub used ($$;$) + { + my ($kind, $word, $where) = @_; +- $where ||= "$File::Find::name:$."; ++ my $lineno = 0; ++ if (defined($.)) { ++ $lineno = $.; ++ } ++ $where ||= "$File::Find::name:$lineno"; + push (@{$used{$kind}{$word}}, $where); + } + Property changes on: head/devel/autoconf26/files/patch-bin-autoscan.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/devel/autoconf26/pkg-plist =================================================================== --- head/devel/autoconf26/pkg-plist (revision 66431) +++ head/devel/autoconf26/pkg-plist (revision 66432) @@ -1,62 +1,69 @@ bin/autoconf bin/autoheader bin/autom4te bin/autoreconf bin/autoscan bin/autoupdate bin/ifnames share/autoconf/Autom4te/General.pm share/autoconf/Autom4te/Struct.pm share/autoconf/Autom4te/XFile.pm share/autoconf/INSTALL share/autoconf/autoconf/autoconf.m4 share/autoconf/autoconf/autoconf.m4f share/autoconf/autoconf/autoheader.m4 share/autoconf/autoconf/autotest.m4 share/autoconf/autoconf/autoupdate.m4 share/autoconf/autoconf/c.m4 share/autoconf/autoconf/fortran.m4 share/autoconf/autoconf/functions.m4 share/autoconf/autoconf/general.m4 share/autoconf/autoconf/headers.m4 share/autoconf/autoconf/lang.m4 share/autoconf/autoconf/libs.m4 share/autoconf/autoconf/oldnames.m4 share/autoconf/autoconf/programs.m4 share/autoconf/autoconf/specific.m4 share/autoconf/autoconf/status.m4 share/autoconf/autoconf/types.m4 share/autoconf/autom4te.cfg share/autoconf/autoscan/functions share/autoconf/autoscan/headers share/autoconf/autoscan/identifiers share/autoconf/autoscan/libraries share/autoconf/autoscan/makevars share/autoconf/autoscan/programs share/autoconf/autotest/autotest.m4 share/autoconf/autotest/autotest.m4f share/autoconf/autotest/general.m4 share/autoconf/config.guess share/autoconf/config.sub share/autoconf/elisp-comp share/autoconf/install-sh share/autoconf/m4sugar/m4sh.m4 share/autoconf/m4sugar/m4sh.m4f share/autoconf/m4sugar/m4sugar.m4 share/autoconf/m4sugar/m4sugar.m4f share/autoconf/m4sugar/version.m4 share/autoconf/mdate-sh share/autoconf/missing share/autoconf/mkinstalldirs +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.elc +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.elc +@comment directories +%%EMACS%%@dirrm %%EMACSDIR%%/site-lisp +%%EMACS%%@dirrm %%EMACSDIR%% @dirrm share/autoconf/m4sugar @dirrm share/autoconf/autotest @dirrm share/autoconf/autoscan @dirrm share/autoconf/autoconf @dirrm share/autoconf/Autom4te @dirrm share/autoconf @unexec install-info --delete %D/info/autoconf.info %D/info/dir @unexec install-info --delete %D/info/standards.info %D/info/dir info/autoconf.info info/standards.info @exec install-info %D/info/autoconf.info %D/info/dir @exec install-info %D/info/standards.info %D/info/dir Property changes on: head/devel/autoconf26/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/devel/autoconf261/Makefile =================================================================== --- head/devel/autoconf261/Makefile (revision 66431) +++ head/devel/autoconf261/Makefile (revision 66432) @@ -1,48 +1,57 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.53 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf MAINTAINER= ports@geeksrus.net -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ + help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 -CONFIGURE_ARGS= --without-lispdir + +.if exists(${LOCALBASE}/bin/emacs) +PLIST_SUB+= EMACS="" EMACSDIR=share/emacs +.elif exists(${LOCALBASE}/bin/xemacs) +PLIST_SUB+= EMACS="" EMACSDIR=lib/xemacs +.else +PLIST_SUB+= EMACS="@comment " EMACSDIR="" +.endif GENERIC_TOOLS= config.guess \ config.sub \ elisp-comp \ install-sh \ mdate-sh \ missing \ mkinstalldirs MAN1= autoconf.1 \ autoheader.1 \ autom4te.1 \ autoreconf.1 \ autoscan.1 \ autoupdate.1 \ config.guess.1 \ config.sub.1 \ ifnames.1 post-install: .for FILE in ${GENERIC_TOOLS} ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf .endfor .include Property changes on: head/devel/autoconf261/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.33 \ No newline at end of property +1.34 \ No newline at end of property Index: head/devel/autoconf261/files/patch-bin-autoscan.in =================================================================== --- head/devel/autoconf261/files/patch-bin-autoscan.in (nonexistent) +++ head/devel/autoconf261/files/patch-bin-autoscan.in (revision 66432) @@ -0,0 +1,15 @@ +--- bin/autoscan.in.orig Fri Mar 8 06:52:41 2002 ++++ bin/autoscan.in Mon Sep 16 03:56:50 2002 +@@ -192,7 +192,11 @@ + sub used ($$;$) + { + my ($kind, $word, $where) = @_; +- $where ||= "$File::Find::name:$."; ++ my $lineno = 0; ++ if (defined($.)) { ++ $lineno = $.; ++ } ++ $where ||= "$File::Find::name:$lineno"; + push (@{$used{$kind}{$word}}, $where); + } + Property changes on: head/devel/autoconf261/files/patch-bin-autoscan.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/devel/autoconf261/pkg-plist =================================================================== --- head/devel/autoconf261/pkg-plist (revision 66431) +++ head/devel/autoconf261/pkg-plist (revision 66432) @@ -1,62 +1,69 @@ bin/autoconf bin/autoheader bin/autom4te bin/autoreconf bin/autoscan bin/autoupdate bin/ifnames share/autoconf/Autom4te/General.pm share/autoconf/Autom4te/Struct.pm share/autoconf/Autom4te/XFile.pm share/autoconf/INSTALL share/autoconf/autoconf/autoconf.m4 share/autoconf/autoconf/autoconf.m4f share/autoconf/autoconf/autoheader.m4 share/autoconf/autoconf/autotest.m4 share/autoconf/autoconf/autoupdate.m4 share/autoconf/autoconf/c.m4 share/autoconf/autoconf/fortran.m4 share/autoconf/autoconf/functions.m4 share/autoconf/autoconf/general.m4 share/autoconf/autoconf/headers.m4 share/autoconf/autoconf/lang.m4 share/autoconf/autoconf/libs.m4 share/autoconf/autoconf/oldnames.m4 share/autoconf/autoconf/programs.m4 share/autoconf/autoconf/specific.m4 share/autoconf/autoconf/status.m4 share/autoconf/autoconf/types.m4 share/autoconf/autom4te.cfg share/autoconf/autoscan/functions share/autoconf/autoscan/headers share/autoconf/autoscan/identifiers share/autoconf/autoscan/libraries share/autoconf/autoscan/makevars share/autoconf/autoscan/programs share/autoconf/autotest/autotest.m4 share/autoconf/autotest/autotest.m4f share/autoconf/autotest/general.m4 share/autoconf/config.guess share/autoconf/config.sub share/autoconf/elisp-comp share/autoconf/install-sh share/autoconf/m4sugar/m4sh.m4 share/autoconf/m4sugar/m4sh.m4f share/autoconf/m4sugar/m4sugar.m4 share/autoconf/m4sugar/m4sugar.m4f share/autoconf/m4sugar/version.m4 share/autoconf/mdate-sh share/autoconf/missing share/autoconf/mkinstalldirs +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.elc +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.elc +@comment directories +%%EMACS%%@dirrm %%EMACSDIR%%/site-lisp +%%EMACS%%@dirrm %%EMACSDIR%% @dirrm share/autoconf/m4sugar @dirrm share/autoconf/autotest @dirrm share/autoconf/autoscan @dirrm share/autoconf/autoconf @dirrm share/autoconf/Autom4te @dirrm share/autoconf @unexec install-info --delete %D/info/autoconf.info %D/info/dir @unexec install-info --delete %D/info/standards.info %D/info/dir info/autoconf.info info/standards.info @exec install-info %D/info/autoconf.info %D/info/dir @exec install-info %D/info/standards.info %D/info/dir Property changes on: head/devel/autoconf261/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/devel/autoconf262/Makefile =================================================================== --- head/devel/autoconf262/Makefile (revision 66431) +++ head/devel/autoconf262/Makefile (revision 66432) @@ -1,48 +1,57 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.53 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf MAINTAINER= ports@geeksrus.net -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ + help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 -CONFIGURE_ARGS= --without-lispdir + +.if exists(${LOCALBASE}/bin/emacs) +PLIST_SUB+= EMACS="" EMACSDIR=share/emacs +.elif exists(${LOCALBASE}/bin/xemacs) +PLIST_SUB+= EMACS="" EMACSDIR=lib/xemacs +.else +PLIST_SUB+= EMACS="@comment " EMACSDIR="" +.endif GENERIC_TOOLS= config.guess \ config.sub \ elisp-comp \ install-sh \ mdate-sh \ missing \ mkinstalldirs MAN1= autoconf.1 \ autoheader.1 \ autom4te.1 \ autoreconf.1 \ autoscan.1 \ autoupdate.1 \ config.guess.1 \ config.sub.1 \ ifnames.1 post-install: .for FILE in ${GENERIC_TOOLS} ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf .endfor .include Property changes on: head/devel/autoconf262/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.33 \ No newline at end of property +1.34 \ No newline at end of property Index: head/devel/autoconf262/files/patch-bin-autoscan.in =================================================================== --- head/devel/autoconf262/files/patch-bin-autoscan.in (nonexistent) +++ head/devel/autoconf262/files/patch-bin-autoscan.in (revision 66432) @@ -0,0 +1,15 @@ +--- bin/autoscan.in.orig Fri Mar 8 06:52:41 2002 ++++ bin/autoscan.in Mon Sep 16 03:56:50 2002 +@@ -192,7 +192,11 @@ + sub used ($$;$) + { + my ($kind, $word, $where) = @_; +- $where ||= "$File::Find::name:$."; ++ my $lineno = 0; ++ if (defined($.)) { ++ $lineno = $.; ++ } ++ $where ||= "$File::Find::name:$lineno"; + push (@{$used{$kind}{$word}}, $where); + } + Property changes on: head/devel/autoconf262/files/patch-bin-autoscan.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/devel/autoconf262/pkg-plist =================================================================== --- head/devel/autoconf262/pkg-plist (revision 66431) +++ head/devel/autoconf262/pkg-plist (revision 66432) @@ -1,62 +1,69 @@ bin/autoconf bin/autoheader bin/autom4te bin/autoreconf bin/autoscan bin/autoupdate bin/ifnames share/autoconf/Autom4te/General.pm share/autoconf/Autom4te/Struct.pm share/autoconf/Autom4te/XFile.pm share/autoconf/INSTALL share/autoconf/autoconf/autoconf.m4 share/autoconf/autoconf/autoconf.m4f share/autoconf/autoconf/autoheader.m4 share/autoconf/autoconf/autotest.m4 share/autoconf/autoconf/autoupdate.m4 share/autoconf/autoconf/c.m4 share/autoconf/autoconf/fortran.m4 share/autoconf/autoconf/functions.m4 share/autoconf/autoconf/general.m4 share/autoconf/autoconf/headers.m4 share/autoconf/autoconf/lang.m4 share/autoconf/autoconf/libs.m4 share/autoconf/autoconf/oldnames.m4 share/autoconf/autoconf/programs.m4 share/autoconf/autoconf/specific.m4 share/autoconf/autoconf/status.m4 share/autoconf/autoconf/types.m4 share/autoconf/autom4te.cfg share/autoconf/autoscan/functions share/autoconf/autoscan/headers share/autoconf/autoscan/identifiers share/autoconf/autoscan/libraries share/autoconf/autoscan/makevars share/autoconf/autoscan/programs share/autoconf/autotest/autotest.m4 share/autoconf/autotest/autotest.m4f share/autoconf/autotest/general.m4 share/autoconf/config.guess share/autoconf/config.sub share/autoconf/elisp-comp share/autoconf/install-sh share/autoconf/m4sugar/m4sh.m4 share/autoconf/m4sugar/m4sh.m4f share/autoconf/m4sugar/m4sugar.m4 share/autoconf/m4sugar/m4sugar.m4f share/autoconf/m4sugar/version.m4 share/autoconf/mdate-sh share/autoconf/missing share/autoconf/mkinstalldirs +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.elc +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.elc +@comment directories +%%EMACS%%@dirrm %%EMACSDIR%%/site-lisp +%%EMACS%%@dirrm %%EMACSDIR%% @dirrm share/autoconf/m4sugar @dirrm share/autoconf/autotest @dirrm share/autoconf/autoscan @dirrm share/autoconf/autoconf @dirrm share/autoconf/Autom4te @dirrm share/autoconf @unexec install-info --delete %D/info/autoconf.info %D/info/dir @unexec install-info --delete %D/info/standards.info %D/info/dir info/autoconf.info info/standards.info @exec install-info %D/info/autoconf.info %D/info/dir @exec install-info %D/info/standards.info %D/info/dir Property changes on: head/devel/autoconf262/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/devel/autoconf267/Makefile =================================================================== --- head/devel/autoconf267/Makefile (revision 66431) +++ head/devel/autoconf267/Makefile (revision 66432) @@ -1,48 +1,57 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.53 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf MAINTAINER= ports@geeksrus.net -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ + help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 -CONFIGURE_ARGS= --without-lispdir + +.if exists(${LOCALBASE}/bin/emacs) +PLIST_SUB+= EMACS="" EMACSDIR=share/emacs +.elif exists(${LOCALBASE}/bin/xemacs) +PLIST_SUB+= EMACS="" EMACSDIR=lib/xemacs +.else +PLIST_SUB+= EMACS="@comment " EMACSDIR="" +.endif GENERIC_TOOLS= config.guess \ config.sub \ elisp-comp \ install-sh \ mdate-sh \ missing \ mkinstalldirs MAN1= autoconf.1 \ autoheader.1 \ autom4te.1 \ autoreconf.1 \ autoscan.1 \ autoupdate.1 \ config.guess.1 \ config.sub.1 \ ifnames.1 post-install: .for FILE in ${GENERIC_TOOLS} ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf .endfor .include Property changes on: head/devel/autoconf267/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.33 \ No newline at end of property +1.34 \ No newline at end of property Index: head/devel/autoconf267/files/patch-bin-autoscan.in =================================================================== --- head/devel/autoconf267/files/patch-bin-autoscan.in (nonexistent) +++ head/devel/autoconf267/files/patch-bin-autoscan.in (revision 66432) @@ -0,0 +1,15 @@ +--- bin/autoscan.in.orig Fri Mar 8 06:52:41 2002 ++++ bin/autoscan.in Mon Sep 16 03:56:50 2002 +@@ -192,7 +192,11 @@ + sub used ($$;$) + { + my ($kind, $word, $where) = @_; +- $where ||= "$File::Find::name:$."; ++ my $lineno = 0; ++ if (defined($.)) { ++ $lineno = $.; ++ } ++ $where ||= "$File::Find::name:$lineno"; + push (@{$used{$kind}{$word}}, $where); + } + Property changes on: head/devel/autoconf267/files/patch-bin-autoscan.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/devel/autoconf267/pkg-plist =================================================================== --- head/devel/autoconf267/pkg-plist (revision 66431) +++ head/devel/autoconf267/pkg-plist (revision 66432) @@ -1,62 +1,69 @@ bin/autoconf bin/autoheader bin/autom4te bin/autoreconf bin/autoscan bin/autoupdate bin/ifnames share/autoconf/Autom4te/General.pm share/autoconf/Autom4te/Struct.pm share/autoconf/Autom4te/XFile.pm share/autoconf/INSTALL share/autoconf/autoconf/autoconf.m4 share/autoconf/autoconf/autoconf.m4f share/autoconf/autoconf/autoheader.m4 share/autoconf/autoconf/autotest.m4 share/autoconf/autoconf/autoupdate.m4 share/autoconf/autoconf/c.m4 share/autoconf/autoconf/fortran.m4 share/autoconf/autoconf/functions.m4 share/autoconf/autoconf/general.m4 share/autoconf/autoconf/headers.m4 share/autoconf/autoconf/lang.m4 share/autoconf/autoconf/libs.m4 share/autoconf/autoconf/oldnames.m4 share/autoconf/autoconf/programs.m4 share/autoconf/autoconf/specific.m4 share/autoconf/autoconf/status.m4 share/autoconf/autoconf/types.m4 share/autoconf/autom4te.cfg share/autoconf/autoscan/functions share/autoconf/autoscan/headers share/autoconf/autoscan/identifiers share/autoconf/autoscan/libraries share/autoconf/autoscan/makevars share/autoconf/autoscan/programs share/autoconf/autotest/autotest.m4 share/autoconf/autotest/autotest.m4f share/autoconf/autotest/general.m4 share/autoconf/config.guess share/autoconf/config.sub share/autoconf/elisp-comp share/autoconf/install-sh share/autoconf/m4sugar/m4sh.m4 share/autoconf/m4sugar/m4sh.m4f share/autoconf/m4sugar/m4sugar.m4 share/autoconf/m4sugar/m4sugar.m4f share/autoconf/m4sugar/version.m4 share/autoconf/mdate-sh share/autoconf/missing share/autoconf/mkinstalldirs +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.elc +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.elc +@comment directories +%%EMACS%%@dirrm %%EMACSDIR%%/site-lisp +%%EMACS%%@dirrm %%EMACSDIR%% @dirrm share/autoconf/m4sugar @dirrm share/autoconf/autotest @dirrm share/autoconf/autoscan @dirrm share/autoconf/autoconf @dirrm share/autoconf/Autom4te @dirrm share/autoconf @unexec install-info --delete %D/info/autoconf.info %D/info/dir @unexec install-info --delete %D/info/standards.info %D/info/dir info/autoconf.info info/standards.info @exec install-info %D/info/autoconf.info %D/info/dir @exec install-info %D/info/standards.info %D/info/dir Property changes on: head/devel/autoconf267/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/devel/autoconf268/Makefile =================================================================== --- head/devel/autoconf268/Makefile (revision 66431) +++ head/devel/autoconf268/Makefile (revision 66432) @@ -1,48 +1,57 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.53 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf MAINTAINER= ports@geeksrus.net -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ + help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 -CONFIGURE_ARGS= --without-lispdir + +.if exists(${LOCALBASE}/bin/emacs) +PLIST_SUB+= EMACS="" EMACSDIR=share/emacs +.elif exists(${LOCALBASE}/bin/xemacs) +PLIST_SUB+= EMACS="" EMACSDIR=lib/xemacs +.else +PLIST_SUB+= EMACS="@comment " EMACSDIR="" +.endif GENERIC_TOOLS= config.guess \ config.sub \ elisp-comp \ install-sh \ mdate-sh \ missing \ mkinstalldirs MAN1= autoconf.1 \ autoheader.1 \ autom4te.1 \ autoreconf.1 \ autoscan.1 \ autoupdate.1 \ config.guess.1 \ config.sub.1 \ ifnames.1 post-install: .for FILE in ${GENERIC_TOOLS} ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf .endfor .include Property changes on: head/devel/autoconf268/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.33 \ No newline at end of property +1.34 \ No newline at end of property Index: head/devel/autoconf268/files/patch-bin-autoscan.in =================================================================== --- head/devel/autoconf268/files/patch-bin-autoscan.in (nonexistent) +++ head/devel/autoconf268/files/patch-bin-autoscan.in (revision 66432) @@ -0,0 +1,15 @@ +--- bin/autoscan.in.orig Fri Mar 8 06:52:41 2002 ++++ bin/autoscan.in Mon Sep 16 03:56:50 2002 +@@ -192,7 +192,11 @@ + sub used ($$;$) + { + my ($kind, $word, $where) = @_; +- $where ||= "$File::Find::name:$."; ++ my $lineno = 0; ++ if (defined($.)) { ++ $lineno = $.; ++ } ++ $where ||= "$File::Find::name:$lineno"; + push (@{$used{$kind}{$word}}, $where); + } + Property changes on: head/devel/autoconf268/files/patch-bin-autoscan.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/devel/autoconf268/pkg-plist =================================================================== --- head/devel/autoconf268/pkg-plist (revision 66431) +++ head/devel/autoconf268/pkg-plist (revision 66432) @@ -1,62 +1,69 @@ bin/autoconf bin/autoheader bin/autom4te bin/autoreconf bin/autoscan bin/autoupdate bin/ifnames share/autoconf/Autom4te/General.pm share/autoconf/Autom4te/Struct.pm share/autoconf/Autom4te/XFile.pm share/autoconf/INSTALL share/autoconf/autoconf/autoconf.m4 share/autoconf/autoconf/autoconf.m4f share/autoconf/autoconf/autoheader.m4 share/autoconf/autoconf/autotest.m4 share/autoconf/autoconf/autoupdate.m4 share/autoconf/autoconf/c.m4 share/autoconf/autoconf/fortran.m4 share/autoconf/autoconf/functions.m4 share/autoconf/autoconf/general.m4 share/autoconf/autoconf/headers.m4 share/autoconf/autoconf/lang.m4 share/autoconf/autoconf/libs.m4 share/autoconf/autoconf/oldnames.m4 share/autoconf/autoconf/programs.m4 share/autoconf/autoconf/specific.m4 share/autoconf/autoconf/status.m4 share/autoconf/autoconf/types.m4 share/autoconf/autom4te.cfg share/autoconf/autoscan/functions share/autoconf/autoscan/headers share/autoconf/autoscan/identifiers share/autoconf/autoscan/libraries share/autoconf/autoscan/makevars share/autoconf/autoscan/programs share/autoconf/autotest/autotest.m4 share/autoconf/autotest/autotest.m4f share/autoconf/autotest/general.m4 share/autoconf/config.guess share/autoconf/config.sub share/autoconf/elisp-comp share/autoconf/install-sh share/autoconf/m4sugar/m4sh.m4 share/autoconf/m4sugar/m4sh.m4f share/autoconf/m4sugar/m4sugar.m4 share/autoconf/m4sugar/m4sugar.m4f share/autoconf/m4sugar/version.m4 share/autoconf/mdate-sh share/autoconf/missing share/autoconf/mkinstalldirs +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.elc +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.elc +@comment directories +%%EMACS%%@dirrm %%EMACSDIR%%/site-lisp +%%EMACS%%@dirrm %%EMACSDIR%% @dirrm share/autoconf/m4sugar @dirrm share/autoconf/autotest @dirrm share/autoconf/autoscan @dirrm share/autoconf/autoconf @dirrm share/autoconf/Autom4te @dirrm share/autoconf @unexec install-info --delete %D/info/autoconf.info %D/info/dir @unexec install-info --delete %D/info/standards.info %D/info/dir info/autoconf.info info/standards.info @exec install-info %D/info/autoconf.info %D/info/dir @exec install-info %D/info/standards.info %D/info/dir Property changes on: head/devel/autoconf268/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/devel/gnu-autoconf/Makefile =================================================================== --- head/devel/gnu-autoconf/Makefile (revision 66431) +++ head/devel/gnu-autoconf/Makefile (revision 66432) @@ -1,48 +1,57 @@ # New ports collection makefile for: autoconf # Date created: 7 October 1995 # Whom: torstenb@FreeBSD.org # # $FreeBSD$ # PORTNAME= autoconf PORTVERSION= 2.53 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf MAINTAINER= ports@geeksrus.net -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ + help2man:${PORTSDIR}/misc/help2man RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 -CONFIGURE_ARGS= --without-lispdir + +.if exists(${LOCALBASE}/bin/emacs) +PLIST_SUB+= EMACS="" EMACSDIR=share/emacs +.elif exists(${LOCALBASE}/bin/xemacs) +PLIST_SUB+= EMACS="" EMACSDIR=lib/xemacs +.else +PLIST_SUB+= EMACS="@comment " EMACSDIR="" +.endif GENERIC_TOOLS= config.guess \ config.sub \ elisp-comp \ install-sh \ mdate-sh \ missing \ mkinstalldirs MAN1= autoconf.1 \ autoheader.1 \ autom4te.1 \ autoreconf.1 \ autoscan.1 \ autoupdate.1 \ config.guess.1 \ config.sub.1 \ ifnames.1 post-install: .for FILE in ${GENERIC_TOOLS} ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf .endfor .include Property changes on: head/devel/gnu-autoconf/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.33 \ No newline at end of property +1.34 \ No newline at end of property Index: head/devel/gnu-autoconf/files/patch-bin-autoscan.in =================================================================== --- head/devel/gnu-autoconf/files/patch-bin-autoscan.in (nonexistent) +++ head/devel/gnu-autoconf/files/patch-bin-autoscan.in (revision 66432) @@ -0,0 +1,15 @@ +--- bin/autoscan.in.orig Fri Mar 8 06:52:41 2002 ++++ bin/autoscan.in Mon Sep 16 03:56:50 2002 +@@ -192,7 +192,11 @@ + sub used ($$;$) + { + my ($kind, $word, $where) = @_; +- $where ||= "$File::Find::name:$."; ++ my $lineno = 0; ++ if (defined($.)) { ++ $lineno = $.; ++ } ++ $where ||= "$File::Find::name:$lineno"; + push (@{$used{$kind}{$word}}, $where); + } + Property changes on: head/devel/gnu-autoconf/files/patch-bin-autoscan.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/devel/gnu-autoconf/pkg-plist =================================================================== --- head/devel/gnu-autoconf/pkg-plist (revision 66431) +++ head/devel/gnu-autoconf/pkg-plist (revision 66432) @@ -1,62 +1,69 @@ bin/autoconf bin/autoheader bin/autom4te bin/autoreconf bin/autoscan bin/autoupdate bin/ifnames share/autoconf/Autom4te/General.pm share/autoconf/Autom4te/Struct.pm share/autoconf/Autom4te/XFile.pm share/autoconf/INSTALL share/autoconf/autoconf/autoconf.m4 share/autoconf/autoconf/autoconf.m4f share/autoconf/autoconf/autoheader.m4 share/autoconf/autoconf/autotest.m4 share/autoconf/autoconf/autoupdate.m4 share/autoconf/autoconf/c.m4 share/autoconf/autoconf/fortran.m4 share/autoconf/autoconf/functions.m4 share/autoconf/autoconf/general.m4 share/autoconf/autoconf/headers.m4 share/autoconf/autoconf/lang.m4 share/autoconf/autoconf/libs.m4 share/autoconf/autoconf/oldnames.m4 share/autoconf/autoconf/programs.m4 share/autoconf/autoconf/specific.m4 share/autoconf/autoconf/status.m4 share/autoconf/autoconf/types.m4 share/autoconf/autom4te.cfg share/autoconf/autoscan/functions share/autoconf/autoscan/headers share/autoconf/autoscan/identifiers share/autoconf/autoscan/libraries share/autoconf/autoscan/makevars share/autoconf/autoscan/programs share/autoconf/autotest/autotest.m4 share/autoconf/autotest/autotest.m4f share/autoconf/autotest/general.m4 share/autoconf/config.guess share/autoconf/config.sub share/autoconf/elisp-comp share/autoconf/install-sh share/autoconf/m4sugar/m4sh.m4 share/autoconf/m4sugar/m4sh.m4f share/autoconf/m4sugar/m4sugar.m4 share/autoconf/m4sugar/m4sugar.m4f share/autoconf/m4sugar/version.m4 share/autoconf/mdate-sh share/autoconf/missing share/autoconf/mkinstalldirs +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autoconf-mode.elc +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.el +%%EMACS%%%%EMACSDIR%%/site-lisp/autotest-mode.elc +@comment directories +%%EMACS%%@dirrm %%EMACSDIR%%/site-lisp +%%EMACS%%@dirrm %%EMACSDIR%% @dirrm share/autoconf/m4sugar @dirrm share/autoconf/autotest @dirrm share/autoconf/autoscan @dirrm share/autoconf/autoconf @dirrm share/autoconf/Autom4te @dirrm share/autoconf @unexec install-info --delete %D/info/autoconf.info %D/info/dir @unexec install-info --delete %D/info/standards.info %D/info/dir info/autoconf.info info/standards.info @exec install-info %D/info/autoconf.info %D/info/dir @exec install-info %D/info/standards.info %D/info/dir Property changes on: head/devel/gnu-autoconf/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property