diff options
author | seb <seb> | 2002-11-04 13:48:35 +0000 |
---|---|---|
committer | seb <seb> | 2002-11-04 13:48:35 +0000 |
commit | 8fc6c80a0eda111f77847cc2ed9a5d91a21f6967 (patch) | |
tree | 137cccd50183cae7c030c3d18cdd3dfe9cc25dc6 /mail/cyrus-imapd/Makefile | |
parent | 6290592fbf2d3496e295b52f6312d3f0dbe29f2e (diff) | |
download | pkgsrc-8fc6c80a0eda111f77847cc2ed9a5d91a21f6967.tar.gz |
Add dependency on autoconf and have auto{header,conf} run at pre-configure
stage: this is need to avoid conflict between the distribution patch file for
IPv6 support and patches/patch-af (now removed) and patches/patch-ak.
Bump PKGREVISION (again).
Diffstat (limited to 'mail/cyrus-imapd/Makefile')
-rw-r--r-- | mail/cyrus-imapd/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/mail/cyrus-imapd/Makefile b/mail/cyrus-imapd/Makefile index a1fff5049cc..cbae9bf6fd4 100644 --- a/mail/cyrus-imapd/Makefile +++ b/mail/cyrus-imapd/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.34 2002/11/04 09:54:30 seb Exp $ +# $NetBSD: Makefile,v 1.35 2002/11/04 13:48:35 seb Exp $ DISTNAME= cyrus-imapd-2.0.16 -PKGREVISION= 2 +PKGREVISION= 3 SVR4_PKGNAME= cimap CATEGORIES= mail MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/ \ @@ -13,6 +13,7 @@ COMMENT= Cyrus IMAP server USE_BUILDLINK2= YES GNU_CONFIGURE= YES +AUTOCONF_REQD= 2.13 .include "../../mk/bsd.prefs.mk" @@ -96,6 +97,11 @@ post-patch: ${MV} -f $${file}.fixed $${file}; \ done +pre-configure: + cd ${WRKSRC}; \ + ${AUTOHEADER}; \ + ${AUTOCONF} + post-install: ${INSTALL_SCRIPT} ${WRKSRC}/tools/mkimap ${PREFIX}/cyrus/bin ${INSTALL_DATA_DIR} ${EGDIR} @@ -109,5 +115,6 @@ post-install: .include "../../security/cyrus-sasl/buildlink2.mk" .include "../../security/openssl/buildlink2.mk" .include "../../security/tcp_wrappers/buildlink2.mk" +.include "../../mk/autoconf.mk" .include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" |