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 /mail/cyrus-imapd21/Makefile | |
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 'mail/cyrus-imapd21/Makefile')
-rw-r--r-- | mail/cyrus-imapd21/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mail/cyrus-imapd21/Makefile b/mail/cyrus-imapd21/Makefile index fc6387c5cd0..925a4f6accb 100644 --- a/mail/cyrus-imapd21/Makefile +++ b/mail/cyrus-imapd21/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2005/05/31 10:01:37 dillo Exp $ +# $NetBSD: Makefile,v 1.31 2005/06/01 20:08:00 jlam Exp $ DISTNAME= cyrus-imapd-2.1.18 SVR4_PKGNAME= cimap @@ -14,7 +14,7 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews GNU_CONFIGURE= yes PERL5_CONFIGURE= no -AUTOCONF_REQD= 2.13 +USE_TOOLS+= autoconf213 USE_PKGINSTALL= yes DEINSTALL_EXTRA_TMPL+= ${.CURDIR}/DEINSTALL @@ -166,7 +166,7 @@ post-patch: done pre-configure: - cd ${WRKSRC} && ${AUTOHEADER} && ${AUTOCONF} + cd ${WRKSRC} && autoheader && autoconf post-install: ${INSTALL_SCRIPT} ${WRKSRC}/tools/mkimap ${PREFIX}/cyrus/bin @@ -182,5 +182,4 @@ post-install: ${INSTALL_DATA} $$file ${HTMLDIR}; \ done -.include "../../mk/autoconf.mk" .include "../../mk/bsd.pkg.mk" |