diff options
author | jlam <jlam@pkgsrc.org> | 2005-06-01 20:07:59 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-06-01 20:07:59 +0000 |
commit | 2bb24f15f17cde7494cc69e5dac941f474ec8605 (patch) | |
tree | 77aa2e325b82a73660278dbb13238e6aac0adca7 /security/mit-krb5 | |
parent | a78a94a4f6f91c29d1969aa948a3f809f479fc73 (diff) | |
download | pkgsrc-2bb24f15f17cde7494cc69e5dac941f474ec8605.tar.gz |
Remove mk/autoconf.mk and mk/automake.mk and replace their usage with
USE_TOOLS and any of "autoconf", "autoconf213", "automake" or
"automake14". Also, we don't need to call the auto* tools via
${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care
to symlink the correct tool to the correct name, so we can just use
aclocal, autoconf, etc.
Diffstat (limited to 'security/mit-krb5')
-rw-r--r-- | security/mit-krb5/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/security/mit-krb5/Makefile b/security/mit-krb5/Makefile index 70338c6c481..b806e14d8c7 100644 --- a/security/mit-krb5/Makefile +++ b/security/mit-krb5/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2005/05/31 11:31:07 dillo Exp $ +# $NetBSD: Makefile,v 1.25 2005/06/01 20:08:01 jlam Exp $ DISTNAME= krb5-1.4 PKGNAME= mit-${DISTNAME:S/-signed$//} @@ -22,7 +22,7 @@ CONFLICTS+= heimdal-[0-9]* CONFLICTS+= kth-krb4-[0-9]* PKGSRC_USE_TOOLS+= gzcat -USE_TOOLS+= yacc +USE_TOOLS+= autoconf yacc GNU_CONFIGURE= yes USE_LIBTOOL= yes @@ -95,7 +95,7 @@ pre-configure: ${XARGS} -n 1 ${DIRNAME} | \ while read dir; do \ ${ECHO} "=> Generating configure in $$dir"; \ - (cd $$dir && ${AUTOCONF} -I ${WRKSRC} -f); \ + (cd $$dir && autoconf -I ${WRKSRC} -f); \ done post-install: @@ -108,5 +108,4 @@ post-install: done; \ done -.include "../../mk/autoconf.mk" .include "../../mk/bsd.pkg.mk" |