diff options
author | alane <alane@FreeBSD.org> | 2002-09-16 10:28:33 +0000 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2002-09-16 10:28:33 +0000 |
commit | c988d14e99badda82052a95fd03a86dfd11c5051 (patch) | |
tree | 6a9425fe3b4225e3497fc34069f853070c651bfc /devel/autoconf26 | |
parent | 3e0b17816ed63dfe353fbbef0d228674ec059e26 (diff) | |
download | FreeBSD-ports-c988d14e99badda82052a95fd03a86dfd11c5051.zip FreeBSD-ports-c988d14e99badda82052a95fd03a86dfd11c5051.tar.gz |
1. Fixed bug in autoscan. Thanks to Joe Marcus Clarke <marcus@marcuscom.com>
who worked with me and beyond to track this down.
2. Support the emacs autoconf/autotest modes now, for both emacs21 and
xemacs21. Other (x)emacsen may work, depends on where they put things.
Diffstat (limited to 'devel/autoconf26')
-rw-r--r-- | devel/autoconf26/Makefile | 13 | ||||
-rw-r--r-- | devel/autoconf26/files/patch-bin-autoscan.in | 15 | ||||
-rw-r--r-- | devel/autoconf26/pkg-plist | 7 |
3 files changed, 33 insertions, 2 deletions
diff --git a/devel/autoconf26/Makefile b/devel/autoconf26/Makefile index 29b1d37..dab9223 100644 --- a/devel/autoconf26/Makefile +++ b/devel/autoconf26/Makefile @@ -7,20 +7,29 @@ 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 \ diff --git a/devel/autoconf26/files/patch-bin-autoscan.in b/devel/autoconf26/files/patch-bin-autoscan.in new file mode 100644 index 0000000..68836ff --- /dev/null +++ b/devel/autoconf26/files/patch-bin-autoscan.in @@ -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); + } + diff --git a/devel/autoconf26/pkg-plist b/devel/autoconf26/pkg-plist index fe71c6b..e9c549f 100644 --- a/devel/autoconf26/pkg-plist +++ b/devel/autoconf26/pkg-plist @@ -48,6 +48,13 @@ 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 |