diff options
author | schmonz <schmonz@pkgsrc.org> | 2005-01-08 19:58:16 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2005-01-08 19:58:16 +0000 |
commit | 371dbaab812fb26c2161cba19e7403d5fdbbb4cb (patch) | |
tree | afc13e17adf2ad51520e91763911607bed4364f7 /mail/dovecot/Makefile | |
parent | a803ed79fc1a2a1dffcf95f327112b2f73deb62e (diff) | |
download | pkgsrc-371dbaab812fb26c2161cba19e7403d5fdbbb4cb.tar.gz |
Update to 0.99.13. From the changelog:
* GNUTLS support hasn't been working for a while, so it's not even
tried to be used anymore unless explicitly wanted.
+ Added CRAM-MD5 authentication mechanism. Patch by Joshua Goodall
+ Added SMD5 and LDAP-MD5 password schemes and changed MD5 scheme to
use LDAP-MD5 if the password isn't in MD5crypt format. Patch by
Joshua Goodall
+ Workaround for some POP3 client bugs: if message doesn't contain the
"end of headers" empty line, add it automatically.
+ vpopmail supports now all password schemes, most importantly
MD5crypt works now without support from libc's crypt()
- SQL and LDAP authentication was broken
- SEARCH UNKEYWORD wasn't working
pkgsrc changes:
* Disable GNU TLS support for the time being.
* Move the workaround for the gcc2 sparc64 ICE into hacks.mk.
* Format DESCR.
Diffstat (limited to 'mail/dovecot/Makefile')
-rw-r--r-- | mail/dovecot/Makefile | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/mail/dovecot/Makefile b/mail/dovecot/Makefile index 90a3fc0512f..bf01518d69c 100644 --- a/mail/dovecot/Makefile +++ b/mail/dovecot/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.30 2004/12/28 02:47:44 reed Exp $ +# $NetBSD: Makefile,v 1.31 2005/01/08 19:58:16 schmonz Exp $ -DISTNAME= dovecot-0.99.12.1 -PKGREVISION= 1 +DISTNAME= dovecot-0.99.13 CATEGORIES= mail MASTER_SITES= http://www.dovecot.org/releases/ @@ -18,18 +17,15 @@ COMMENT= Secure IMAP and POP3 server PKG_INSTALLATION_TYPES= overwrite pkgviews WRKSRC= ${WRKDIR}/${DISTNAME:S/.1$//} -USE_BUILDLINK3= YES -USE_LIBTOOL= YES -USE_PKGINSTALL= YES -GNU_CONFIGURE= YES +USE_BUILDLINK3= yes +USE_LIBTOOL= yes +USE_PKGINSTALL= yes +GNU_CONFIGURE= yes CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} CONFIGURE_ARGS+= --localstatedir=${VARBASE} CONFIGURE_ARGS+= --with-ssldir=${SSLCERTS} -# Avoid an ICE in gcc2 on sparc64 -CONFIGURE_ENV+= F77=${FALSE} - .include "../../mk/bsd.prefs.mk" .include "options.mk" |