and it doesn't seem like that will happen very fast. From Brad. CVE-2022-30550: Privilege escalation possible in dovecot when similar master and non-master passdbs are used
117 lines
3.2 KiB
Makefile
117 lines
3.2 KiB
Makefile
COMMENT-server= compact IMAP/POP3 server
|
|
COMMENT-ldap= LDAP authentication / dictionary support for Dovecot
|
|
COMMENT-mysql= MySQL authentication / dictionary support for Dovecot
|
|
COMMENT-postgresql= PostgreSQL authentication / dictionary support for Dovecot
|
|
|
|
# XXX -stable package builds can't detect PKGSPEC updates properly;
|
|
# if backporting an update to stable, ensure all ports depending on
|
|
# this are bumped and that -current is same/newer version than -stable
|
|
# (dovecot-fts-xapian, dovecot-fts-flatcurve, dovecot-pigeonhole if
|
|
# not updated anyway)
|
|
V_MAJOR= 2.3
|
|
V_DOVECOT= 2.3.19.1
|
|
EPOCH= 0
|
|
|
|
DISTNAME= dovecot-${V_DOVECOT}
|
|
PKGNAME= dovecot-${V_DOVECOT}
|
|
PKGNAME-server= dovecot-${V_DOVECOT}
|
|
PKGSPEC-server= dovecot-=${V_DOVECOT}v0
|
|
PKGNAME-ldap= dovecot-ldap-${V_DOVECOT}
|
|
PKGNAME-mysql= dovecot-mysql-${V_DOVECOT}
|
|
PKGNAME-postgresql= dovecot-postgresql-${V_DOVECOT}
|
|
REVISION-server= 0
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ${HOMEPAGE}releases/${V_MAJOR}/
|
|
DPB_PROPERTIES= parallel
|
|
|
|
SHARED_LIBS= dovecot-compression 1.1 \
|
|
dovecot-dsync 2.0 \
|
|
dovecot-fts 1.0 \
|
|
dovecot-lda 3.0 \
|
|
dovecot-ldap 1.0 \
|
|
dovecot-login 4.0 \
|
|
dovecot-sql 3.0 \
|
|
dovecot-storage 4.1 \
|
|
dovecot 5.0
|
|
|
|
HOMEPAGE= https://dovecot.org/
|
|
|
|
MAINTAINER= Brad Smith <brad@comstyle.com>
|
|
|
|
# LGPLv2.1 and MIT
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB-server= bz2 c crypto expat exttextcat-2.0 iconv icudata icui18n \
|
|
icuuc lz4 lzma m pthread sodium sqlite3 ssl stemmer z zstd
|
|
WANTLIB-ldap= crypto iconv lber ldap sasl2 ssl lib/dovecot/dovecot
|
|
WANTLIB-mysql= crypto m mariadb pthread ssl z
|
|
WANTLIB-postgresql= crypto m pq ssl
|
|
|
|
LIB_DEPENDS+= archivers/bzip2 \
|
|
archivers/lz4 \
|
|
archivers/xz \
|
|
archivers/zstd \
|
|
converters/libiconv \
|
|
databases/sqlite3 \
|
|
security/libsodium \
|
|
textproc/icu4c \
|
|
textproc/libexttextcat \
|
|
textproc/libstemmer
|
|
LIB_DEPENDS-ldap= ${BASE_PKGPATH} \
|
|
databases/openldap
|
|
LIB_DEPENDS-mysql= databases/mariadb
|
|
RUN_DEPENDS-mysql= ${BASE_PKGPATH}
|
|
LIB_DEPENDS-postgresql= databases/postgresql
|
|
RUN_DEPENDS-postgresql= ${BASE_PKGPATH}
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --with-rundir=/var/dovecot \
|
|
--with-sql=plugin \
|
|
--with-sqlite \
|
|
--with-statedir=/var/dovecot \
|
|
--without-nss \
|
|
--without-pam \
|
|
--without-shadow \
|
|
--with-solr \
|
|
--without-vpopmail
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
PSEUDO_FLAVORS= no_db no_ldap no_mysql no_postgresql
|
|
FLAVOR?=
|
|
.if ${FLAVOR:Mno_db}
|
|
FLAVOR+= no_ldap no_mysql no_postgresql
|
|
.endif
|
|
|
|
MULTI_PACKAGES= -server -ldap -mysql -postgresql
|
|
SUBPACKAGE?= -server
|
|
DEBUG_PACKAGES= ${BUILD_PACKAGES}
|
|
|
|
.include <bsd.port.arch.mk>
|
|
|
|
.if ${BUILD_PACKAGES:M-ldap}
|
|
CONFIGURE_ARGS+=--with-ldap=plugin
|
|
.endif
|
|
|
|
.if ${BUILD_PACKAGES:M-mysql}
|
|
CONFIGURE_ARGS+=--with-mysql
|
|
.endif
|
|
|
|
.if ${BUILD_PACKAGES:M-postgresql}
|
|
CONFIGURE_ARGS+=--with-pgsql
|
|
.endif
|
|
|
|
pre-build:
|
|
@${SUBST_CMD} ${WRKSRC}/doc/example-config/conf.d/10-mail.conf
|
|
@sed -i 's,/usr/local,${LOCALBASE},' ${WRKSRC}/src/plugins/fts/decode2text.sh
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/dovecot-openssl.cnf \
|
|
${PREFIX}/share/examples/dovecot
|
|
${INSTALL_SCRIPT} ${WRKSRC}/doc/mkcert.sh \
|
|
${PREFIX}/sbin/dovecot-mkcert.sh
|
|
@rm ${PREFIX}/share/doc/dovecot/{dovecot-openssl.cnf,mkcert.sh}
|
|
@find ${PREFIX}/lib/dovecot \( -name '*.a' -o -name '*.la' \) -delete
|
|
|
|
.include <bsd.port.mk>
|