pkgsrc/mail/dovecot/Makefile
salo e6e0449767 Updated to version 0.99.10rc2.
From MAINTAINER, Tom Hensel.

Changes:

- Dovecot may now be compiled with Cyrus-SASL2, specify
  USE_SASL2=YES for this to happen.
- use generic USE_OPENLDAP instead of DOVECOT_USE_LDAP
- minor cleanups

0.99.10rc2:
===========
- Minor bugs corrected, one possible crash when using hardlinks
  for copying fixed.
- Minor fix for the 'linebreak-problem' - should be history now
  even on non-i386.
- PostgreSQL server will be reconnected on failure.

This will be a stable 0.99.10 release if no new bugs popup.
2003-06-23 15:06:10 +00:00

81 lines
2.1 KiB
Makefile

# $NetBSD: Makefile,v 1.4 2003/06/23 15:06:10 salo Exp $
#
DISTNAME= dovecot-0.99.10-rc2
PKGNAME= ${DISTNAME:S/-rc/rc/}
CATEGORIES= mail
MASTER_SITES= http://dovecot.procontrol.fi/ \
http://dovecot.procontrol.fi/rc/
MAINTAINER= tom@replic8.net
HOMEPAGE= http://dovecot.procontrol.fi/
COMMENT= Secure IMAP and POP3 server
USE_BUILDLINK2= YES
USE_LIBTOOL= YES
USE_PKGINSTALL= YES
GNU_CONFIGURE= YES
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
CONFIGURE_ARGS+= --localstatedir=/var
CONFIGURE_ARGS+= --with-ssldir=/etc/openssl
.include "../../mk/bsd.prefs.mk"
.if !empty(USE_OPENLDAP:M[Yy][Ee][Ss])
CONFIGURE_ARGS+= --with-ldap
.include "../../databases/openldap/buildlink2.mk"
.endif
.if defined(USE_SASL2) && !empty(USE_SASL2:M[Yy][Ee][Ss])
CONFIGURE_ARGS+= --with-cyrus-sasl2
.include "../../security/cyrus-sasl2/buildlink2.mk"
.endif
.if defined(USE_INET6) && !empty(USE_INET6:M[Yy][Ee][Ss])
BUILD_DEFS+= USE_INET6
CONFIGURE_ARGS+= --enable-ipv6
.endif
.if !empty(DOVECOT_USE_GNUTLS:M[Yy][Ee][Ss])
CONFIGURE_ARGS+= --enable-ssl=gnutls
.include "../../security/gnutls/buildlink2.mk"
.else
CONFIGURE_ARGS+= --enable-ssl=openssl
.include "../../security/openssl/buildlink2.mk"
.endif
.if !empty(DOVECOT_USE_PGSQL:M[Yy][Ee][Ss])
CONFIGURE_ARGS+= --with-pgsql
CPPFLAGS= -I${BUILDLINK_DIR}/include/pgsql
.include "../../databases/postgresql-lib/buildlink2.mk"
.endif
RCD_SCRIPTS= dovecot
DOVECOT_USER?= dovecot
DOVECOT_GROUP?= dovecot
PKG_GROUPS= ${DOVECOT_GROUP}
PKG_USERS= ${DOVECOT_USER}:${DOVECOT_GROUP}::Dovecot\\ IMAP/POP3\\ user
EGDIR= ${PREFIX}/share/examples/dovecot
CONF_FILES= ${EGDIR}/dovecot.conf.default ${PKG_SYSCONFDIR}/dovecot.conf
post-configure:
@cd ${WRKSRC} && \
( \
${MV} dovecot-example.conf dovecot-example.conf.orig; \
${SED} ${FILES_SUBST_SED} dovecot-example.conf.orig > \
dovecot-example.conf; \
)
post-install:
${INSTALL_DATA_DIR} ${EGDIR}
${INSTALL_DATA} ${WRKSRC}/dovecot-example.conf \
${EGDIR}/dovecot.conf.default
${INSTALL_DATA} ${WRKSRC}/doc/dovecot-* ${EGDIR}
${INSTALL_SCRIPT} ${WRKSRC}/doc/mkcert.sh ${EGDIR}
.include "../../mk/bsd.pkg.mk"