mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
9f79b33220
PR: ports/186745 Submitted by: Jyrki Ahpola <jyrkia@gmail.com> Approved by: maintainer timeout
216 lines
5.0 KiB
Makefile
216 lines
5.0 KiB
Makefile
# Created by: Nagy, Attila <bra@fsn.hu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dovecot
|
|
PORTVERSION= 2.2.10
|
|
CATEGORIES= mail ipv6
|
|
MASTER_SITES= http://www.dovecot.org/releases/${PORTVERSION:R}/
|
|
PKGNAMESUFFIX= 2
|
|
|
|
MAINTAINER= bra@fsn.hu
|
|
COMMENT= Secure and compact IMAP and POP3 servers
|
|
|
|
LICENSE= LGPL21 MIT
|
|
LICENSE_COMB= dual
|
|
|
|
CONFLICTS= dovecot-1.[0-9]*
|
|
|
|
######################################################################
|
|
# Anytime PORTVERSION changes please bump PORTREVISION of #
|
|
# mail/dovecot2-pigeonhole and also mail/dovecot2-antispam-plugin. #
|
|
# Please see ports/135311 and ports/146029 for an explanation. #
|
|
# #
|
|
# Please be careful when updating this port as changes to this port #
|
|
# can break mail/dovecot2-pigeonhole. In order to ensure the least #
|
|
# amount of breakage possible please consult the maintainer of that #
|
|
# port before updating this one. #
|
|
######################################################################
|
|
|
|
USES= iconv
|
|
USE_RC_SUBR= dovecot
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --localstatedir=/var \
|
|
--with-statedir=/var/db/dovecot \
|
|
--without-shadow
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
USE_LDCONFIG= ${PREFIX}/lib/dovecot
|
|
|
|
USERS= ${PORTNAME} dovenull
|
|
GROUPS= ${USERS}
|
|
|
|
PROTOCOLS= imap pop3
|
|
|
|
# Default requirement for dovecot rc script
|
|
_REQUIRE= LOGIN
|
|
|
|
OPTIONS_DEFINE= KQUEUE SSL GSSAPI VPOPMAIL LDAP LUCENE PGSQL MYSQL SQLITE \
|
|
SOLR DOCS EXAMPLES LIBWRAP
|
|
OPTIONS_DEFAULT= KQUEUE SSL
|
|
|
|
KQUEUE_DESC= kqueue(2) support
|
|
VPOPMAIL_DESC= vpopmail support
|
|
LUCENE_DESC= CLucene FTS support
|
|
SOLR_DESC= Solr FTS support
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "arm"
|
|
BROKEN= Does not build on arm
|
|
.endif
|
|
|
|
# sed script for dovecot.conf
|
|
REINPLACE= s!%%PROTOCOLS%%!${PROTOCOLS}!g;\
|
|
s!/usr/!${PREFIX}/!g;\
|
|
s!=/usr!=${PREFIX}!g;\
|
|
s!=/etc !=${PREFIX}/etc !g;\
|
|
s!/etc/dovecot!${PREFIX}&!g;\
|
|
s![[:<:]]doc/(dovecot-[^-]+)-example.conf[[:>:]]!${EXAMPLESDIR}/\1.conf!g;\
|
|
s!\#sendmail_path = /usr/.*!sendmail_path = /usr/sbin/sendmail!g;
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
DOCS= AUTHORS COPYING COPYING.LGPL COPYING.MIT INSTALL NEWS TODO README
|
|
PORTDOCS= *
|
|
.else
|
|
CONFIGURE_ARGS+= --without-docs
|
|
.endif
|
|
|
|
PORTEXAMPLES= *
|
|
|
|
## kqueue(2) support
|
|
#
|
|
.if ${PORT_OPTIONS:MKQUEUE}
|
|
CONFIGURE_ARGS+=--with-ioloop=kqueue
|
|
.else
|
|
CONFIGURE_ARGS+=--with-ioloop=poll
|
|
.endif
|
|
|
|
## SSL support
|
|
#
|
|
.if ${PORT_OPTIONS:MSSL}
|
|
PROTOCOLS+= imaps pop3s
|
|
PLIST_SUB+= SSL=""
|
|
.else
|
|
PLIST_SUB+= SSL="@comment "
|
|
CONFIGURE_ARGS+=--without-ssl
|
|
.endif
|
|
|
|
## GSSAPI support
|
|
#
|
|
.if ${PORT_OPTIONS:MGSSAPI}
|
|
CONFIGURE_ARGS+=--with-gssapi
|
|
LDFLAGS+= -lgssapi_krb5
|
|
.else
|
|
CONFIGURE_ARGS+=--without-gssapi
|
|
.endif
|
|
|
|
## VPopMail Support
|
|
#
|
|
.if ${PORT_OPTIONS:MVPOPMAIL}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/vpopmail/bin/vchkpw:${PORTSDIR}/mail/vpopmail
|
|
CONFIGURE_ARGS+=--with-vpopmail
|
|
.else
|
|
CONFIGURE_ARGS+=--without-vpopmail
|
|
.endif
|
|
|
|
## OpenLDAP Support
|
|
#
|
|
.if ${PORT_OPTIONS:MLDAP}
|
|
USE_OPENLDAP= yes
|
|
CONFIGURE_ARGS+=--with-ldap
|
|
PLIST_SUB+= LDAP=""
|
|
_REQUIRE+= slapd
|
|
.else
|
|
CONFIGURE_ARGS+=--without-ldap
|
|
PLIST_SUB+= LDAP="@comment "
|
|
.endif
|
|
|
|
## CLucene FTS support
|
|
#
|
|
.if ${PORT_OPTIONS:MLUCENE}
|
|
CONFIGURE_ARGS+=--with-lucene
|
|
LIB_DEPENDS+= libclucene-core.so:${PORTSDIR}/textproc/clucene
|
|
PLIST_SUB+= LUCENE=""
|
|
.else
|
|
PLIST_SUB+= LUCENE="@comment "
|
|
.endif
|
|
|
|
## PostgreSQL Support
|
|
#
|
|
.if ${PORT_OPTIONS:MPGSQL}
|
|
USE_PGSQL= yes
|
|
CONFIGURE_ARGS+=--with-pgsql
|
|
PLIST_SUB+= SQL=""
|
|
_REQUIRE+= postgresql
|
|
.else
|
|
CONFIGURE_ARGS+=--without-pgsql
|
|
PLIST_SUB+= SQL="@comment "
|
|
.endif
|
|
|
|
## MySQL Support
|
|
#
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
USE_MYSQL= yes
|
|
CONFIGURE_ARGS+=--with-mysql
|
|
PLIST_SUB+= SQL=""
|
|
_REQUIRE+= mysql
|
|
.else
|
|
CONFIGURE_ARGS+=--without-mysql
|
|
PLIST_SUB+= SQL="@comment "
|
|
.endif
|
|
|
|
## SQLite Support
|
|
#
|
|
.if ${PORT_OPTIONS:MSQLITE}
|
|
USE_SQLITE= 3
|
|
CONFIGURE_ARGS+=--with-sqlite
|
|
PLIST_SUB+= SQL=""
|
|
.else
|
|
CONFIGURE_ARGS+=--without-sqlite
|
|
PLIST_SUB+= SQL="@comment "
|
|
.endif
|
|
|
|
## SOLR support
|
|
#
|
|
.if ${PORT_OPTIONS:MSOLR}
|
|
CONFIGURE_ARGS+=--with-solr
|
|
BUILD_DEPENDS+= curl:${PORTSDIR}/ftp/curl
|
|
LIB_DEPENDS+= libexpat.so:${PORTSDIR}/textproc/expat2
|
|
PLIST_SUB+= SOLR=""
|
|
.else
|
|
CONFIGURE_ARGS+=--without-solr
|
|
PLIST_SUB+= SOLR="@comment "
|
|
.endif
|
|
|
|
## libwrap support
|
|
#
|
|
.if ${PORT_OPTIONS:MLIBWRAP}
|
|
CONFIGURE_ARGS+=--with-libwrap
|
|
PLIST_SUB+= LIBWRAP=""
|
|
.else
|
|
CONFIGURE_ARGS+=--without-libwrap
|
|
PLIST_SUB+= LIBWRAP="@comment "
|
|
.endif
|
|
|
|
SUB_LIST= REQUIRE="${_REQUIRE}"
|
|
SUB_FILES= pkg-deinstall pkg-message
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E -e '${REINPLACE}' \
|
|
${WRKSRC}/doc/example-config/dovecot.conf
|
|
@${REINPLACE_CMD} -E -e'\
|
|
s!-example\.conf[[:>:]]!.conf!g;\
|
|
s!^(confdir[[:space:]]+=[[:space:]]+)\$$\(sysconfdir\)!\1${EXAMPLESDIR}!g;\
|
|
' ${WRKSRC}/*/Makefile.in ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
cd ${WRKSRC}/doc && ${INSTALL_SCRIPT} dovecot-openssl.cnf mkcert.sh ${STAGEDIR}${EXAMPLESDIR}
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|