It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
198 lines
6.2 KiB
Makefile
198 lines
6.2 KiB
Makefile
PORTNAME= cyrus-imapd
|
|
PORTVERSION= 2.4.22
|
|
PORTREVISION= 0
|
|
CATEGORIES= mail
|
|
MASTER_SITES= https://github.com/cyrusimap/cyrus-imapd/releases/download/${PORTNAME}-${PORTVERSION}/
|
|
PKGNAMESUFFIX= 24
|
|
|
|
MAINTAINER= ume@FreeBSD.org
|
|
COMMENT= Cyrus mail server, supporting POP3 and IMAP4 protocols
|
|
WWW= https://www.cyrusimap.org/
|
|
|
|
LICENSE= BSD4CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 \
|
|
libpcre.so:devel/pcre
|
|
|
|
CONFLICTS_INSTALL= cyrus-imapd2? cyrus-imapd3? cyrus-imapd3?-http
|
|
|
|
USE_RC_SUBR= imapd
|
|
|
|
USES= cpe perl5 ssl
|
|
GNU_CONFIGURE= yes
|
|
CYRUS_PREFIX= ${PREFIX}/cyrus
|
|
CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc \
|
|
--with-cyrus-prefix=${CYRUS_PREFIX} \
|
|
--with-cyrus-user=${CYRUS_USER} \
|
|
--with-cyrus-group=${CYRUS_GROUP} \
|
|
--with-sasl=${LOCALBASE} \
|
|
--with-bdb=${BDB_LIB_NAME} \
|
|
--with-com_err \
|
|
--with-openssl=${OPENSSLBASE} \
|
|
--with-perl=${PERL}
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
CPE_VENDOR= cmu
|
|
CPE_PRODUCT= cyrus_imap_server
|
|
|
|
OPTIONS_DEFINE= AUTOCREATE AUTOSIEVE BDB IDLED LDAP \
|
|
MURDER MYSQL NETSCAPEHACK NNTP PGSQL \
|
|
REPLICATION SNMP SQLITE DOCS EXAMPLES
|
|
OPTIONS_DEFAULT= BDB IDLED
|
|
OPTIONS_SUB= yes
|
|
AUTOCREATE_DESC= Use autocreate INBOX patch (UoA)
|
|
AUTOSIEVE_DESC= Use autosievefolder patch (UoA)
|
|
BDB_USES= bdb
|
|
BDB_CONFIGURE_ON= --with-bdb-incdir=${BDB_INCLUDE_DIR} \
|
|
--with-bdb-libdir=${LOCALBASE}/lib
|
|
IDLED_DESC= Enable IMAP idled support
|
|
IDLED_CONFIGURE_ENABLE= idled
|
|
LDAP_DESC= Enable LDAP support (experimental)
|
|
LDAP_USE= OPENLDAP=yes
|
|
LDAP_CONFIGURE_ON= --with-ldap=${LOCALBASE}
|
|
MURDER_DESC= Enable IMAP Murder support
|
|
MURDER_CONFIGURE_ENABLE=murder
|
|
MURDER_MAKE_ENV= PTHREAD_LIBS="-lpthread"
|
|
MYSQL_USES= mysql
|
|
MYSQL_CONFIGURE_ON= --with-mysql=yes \
|
|
--with-mysql-libdir=${LOCALBASE}/lib/mysql \
|
|
--with-mysql-incdir=${LOCALBASE}/include/mysql
|
|
NETSCAPEHACK_DESC= Enable X-NETSCAPE extensions
|
|
NETSCAPEHACK_CONFIGURE_ENABLE=netscapehack
|
|
NNTP_DESC= Enable NNTP support
|
|
NNTP_CONFIGURE_ENABLE= nntp
|
|
PGSQL_USES= pgsql
|
|
PGSQL_CONFIGURE_ON= --with-pgsql=${LOCALBASE}
|
|
REPLICATION_DESC= Enable replication (experimental)
|
|
REPLICATION_CONFIGURE_ENABLE=replication
|
|
SNMP_LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp
|
|
SNMP_CONFIGURE_ON= --with-snmp=${LOCALBASE}
|
|
SNMP_CONFIGURE_OFF= --with-snmp=no
|
|
SQLITE_USES= sqlite
|
|
SQLITE_CONFIGURE_ON= --with-sqlite=${LOCALBASE}
|
|
|
|
OPTIONS_RADIO= GSSAPI
|
|
OPTIONS_RADIO_GSSAPI= GSSAPI_HEIMDAL GSSAPI_MIT
|
|
.if exists(/usr/lib/libkrb5.a)
|
|
OPTIONS_RADIO_GSSAPI+= GSSAPI_BASE
|
|
OPTIONS_DEFAULT+= GSSAPI_BASE
|
|
.endif
|
|
GSSAPI_BASE_USES= gssapi
|
|
GSSAPI_BASE_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \
|
|
--with-gss_impl=heimdal
|
|
GSSAPI_HEIMDAL_USES= gssapi:heimdal,flags
|
|
GSSAPI_HEIMDAL_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \
|
|
--with-gss_impl=heimdal
|
|
GSSAPI_MIT_USES= gssapi:mit
|
|
GSSAPI_MIT_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \
|
|
--with-gss_impl=mit
|
|
|
|
# Autocreate Inbox and Autosieve patches from UoA
|
|
# http://email.uoa.gr/projects/cyrus/
|
|
# http://blog.vx.sk/archives/13-Cyrus-IMAP-UoA.html
|
|
|
|
AUTOCREATE_VERSION= 0.10-0
|
|
AUTOCREATE_PATCH_SITES= LOCAL/mm:autocreate
|
|
AUTOCREATE_PATCHFILES= ${PORTNAME}-2.4.4-autocreate-${AUTOCREATE_VERSION}.patch:-p1:autocreate
|
|
AUTOCREATE_BROKEN= Patch is not applicable
|
|
|
|
AUTOSIEVE_VERSION= 0.6.0
|
|
AUTOSIEVE_PATCH_SITES= LOCAL/mm:autosieve
|
|
AUTOSIEVE_PATCHFILES= ${PORTNAME}-2.4.12-autosieve-${AUTOSIEVE_VERSION}.patch:-p1:autosieve
|
|
AUTOSIEVE_EXTRA_PATCHES=${FILESDIR}/extra-patch-imap__lmtp_sieve.c
|
|
|
|
MANDIRS= ${CYRUS_PREFIX}/man
|
|
|
|
PORTDOCS= *
|
|
|
|
SUB_FILES= pkg-message pkg-install pkg-deinstall cyrus-imapd-man.conf
|
|
|
|
SUB_LIST= CYRUS_USER=${CYRUS_USER} CYRUS_GROUP=${CYRUS_GROUP}
|
|
|
|
CYRUS_USER?= cyrus
|
|
CYRUS_GROUP?= cyrus
|
|
|
|
MAN_MAN1= imtest installsieve lmtptest mupdatetest nntptest pop3test \
|
|
sieveshell sivtest smtptest
|
|
MAN_MAN3= imclient
|
|
MAN_MAN5= cyrus.conf imapd.conf krb.equiv
|
|
|
|
CYRUS_MAN8= arbitron chk_cyrus ctl_cyrusdb ctl_deliver ctl_mboxlist \
|
|
cvt_cyrusdb cyr_dbtool cyr_df cyr_expire cyr_synclog deliver \
|
|
fetchnews fud idled imapd ipurge lmtpd master mbexamine \
|
|
mbpath nntpd notifyd pop3d quota reconstruct rmnews smmapd \
|
|
squatter sync_client sync_reset sync_server syncnews \
|
|
timsieved tls_prune unexpunge
|
|
|
|
CYRUS_PERL_MAN1=cyradm
|
|
CYRUS_PERL_MAN3=Cyrus::IMAP Cyrus::IMAP::Admin Cyrus::IMAP::IMSP \
|
|
Cyrus::IMAP::Shell Cyrus::SIEVE::managesieve
|
|
|
|
CONFS= cmu-backend.conf cmu-frontend.conf normal.conf prefork.conf \
|
|
small.conf
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if empty(${PORT_OPTIONS:MBDB})
|
|
BDB_LIB_NAME= no
|
|
.endif
|
|
|
|
.if !${PORT_OPTIONS:MGSSAPI_BASE} && !${PORT_OPTIONS:MGSSAPI_HEIMDAL} && \
|
|
!${PORT_OPTIONS:MGSSAPI_MIT}
|
|
CONFIGURE_ARGS+=--disable-gssapi
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|/etc/|${PREFIX}/etc/|" \
|
|
-e "s|%%CYRUS_USER%%|${CYRUS_USER}|g" \
|
|
-e "s|%%CYRUS_GROUP%%|${CYRUS_GROUP}|g" \
|
|
${WRKSRC}/tools/mkimap
|
|
@${REINPLACE_CMD} -e "s|/etc/|${PREFIX}/etc/|g" \
|
|
-e "s|/usr/sieve|/var/imap/sieve|g" \
|
|
${WRKSRC}/tools/masssievec
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${FILESDIR}/imapd.conf \
|
|
${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/master/conf/normal.conf \
|
|
${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/tools/mkimap \
|
|
${STAGEDIR}${CYRUS_PREFIX}/bin/mkimap
|
|
${INSTALL_SCRIPT} ${WRKSRC}/tools/masssievec \
|
|
${STAGEDIR}${CYRUS_PREFIX}/bin/masssievec
|
|
${INSTALL_DATA} ${WRKDIR}/cyrus-imapd-man.conf \
|
|
${STAGEDIR}${PREFIX}/etc/man.d/cyrus-imapd.conf
|
|
.for s in 1 3 5
|
|
. for m in ${MAN_MAN${s}}
|
|
@${ECHO_CMD} man/man${s}/${m}.${s}.gz >> ${TMPPLIST}
|
|
. endfor
|
|
.endfor
|
|
.for s in 1 3
|
|
. for m in ${CYRUS_PERL_MAN${s}}
|
|
@${ECHO_CMD} ${SITE_MAN${s}}/${m}.${s}.gz >> ${TMPPLIST}
|
|
. endfor
|
|
.endfor
|
|
.for m in ${CYRUS_MAN8}
|
|
@${ECHO_CMD} ${CYRUS_PREFIX}/man/man8/${m}.8.gz >> ${TMPPLIST}
|
|
.endfor
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} \
|
|
"! ( -name Makefile.dist -o -name Makefile \
|
|
-o -name .cvsignore -o -name htmlstrip.c )"
|
|
|
|
# there are already files in EXAMPLESDIR at that point, so no
|
|
# need to create it.
|
|
post-install-EXAMPLES-on:
|
|
.for f in ${CONFS:Nnormal.conf}
|
|
${INSTALL_DATA} ${WRKSRC}/master/conf/${f} \
|
|
${STAGEDIR}${EXAMPLESDIR}
|
|
@${ECHO_CMD} ${EXAMPLESDIR:S,^${PREFIX}/,,}/${f} >>${TMPPLIST}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|