diff options
author | ghen <ghen@pkgsrc.org> | 2006-02-06 17:28:09 +0000 |
---|---|---|
committer | ghen <ghen@pkgsrc.org> | 2006-02-06 17:28:09 +0000 |
commit | e868349ff9279193e33315b06cd1940f3ed51d3d (patch) | |
tree | 10bf6702f795f66adf67d902365ed10b32359329 /mail/dovecot/Makefile | |
parent | ca47b418b63c8d4e69b3572e80fda7508022624e (diff) | |
download | pkgsrc-e868349ff9279193e33315b06cd1940f3ed51d3d.tar.gz |
Import some improvements from the pkgsrc-wip/dovecot package (by tv@) and
correct a mistake in my previous commit:
- add dependency on zlib
- add option for GNU TLS as an alternative to OpenSSL
- drop SASL option, it's no longer supported
- explicitly disable some options with --disable-*
- "s,/usr/pkg,@PREFIX@," in patch-ab -- I accidentally diffed it after the SUBST stage
- change SUBST_STAGE from post-patch to pre-configure to avoid this in the future
- bump PKGREVISION for all this
Thanks to tv@.
Diffstat (limited to 'mail/dovecot/Makefile')
-rw-r--r-- | mail/dovecot/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mail/dovecot/Makefile b/mail/dovecot/Makefile index 7dc35e77acf..ae423574f4e 100644 --- a/mail/dovecot/Makefile +++ b/mail/dovecot/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.43 2006/02/06 15:54:37 ghen Exp $ +# $NetBSD: Makefile,v 1.44 2006/02/06 17:28:09 ghen Exp $ DISTNAME= dovecot-1.0.beta2 PKGNAME= ${DISTNAME:S/.beta/b/} +PKGREVISION= 1 CATEGORIES= mail MASTER_SITES= http://www.dovecot.org/releases/ @@ -37,7 +38,7 @@ INSTALLATION_DIRS= libexec/dovecot sbin share/doc/dovecot \ SUBST_CLASSES+= paths SUBST_FILES.paths= dovecot-example.conf SUBST_SED.paths+= -e 's,@PREFIX@,${PREFIX},g' -SUBST_STAGE.paths= post-patch +SUBST_STAGE.paths= pre-configure post-install: ${INSTALL_DATA_DIR} ${EGDIR} @@ -46,4 +47,5 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/doc/dovecot-* ${EGDIR} ${INSTALL_SCRIPT} ${WRKSRC}/doc/mkcert.sh ${EGDIR} +.include "../../devel/zlib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |