2eb84a7a05
with GeoIP 2. Also, as suggested by zi, add an UPDATING note about this.
96 lines
2.5 KiB
Makefile
96 lines
2.5 KiB
Makefile
# Created by: Cyril Guibourg
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= milter-greylist
|
|
PORTVERSION= 4.6.2
|
|
PORTREVISION= 4
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ftp://ftp.espci.fr/pub/milter-greylist/ \
|
|
http://fossies.org/unix/privat/
|
|
|
|
MAINTAINER= m.tsatsenko@gmail.com
|
|
COMMENT= Easy-to-use greylist milter for sendmail and postfix
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
USES= tar:tgz
|
|
|
|
##
|
|
# Use the following quirks to choose which sendmail to use (ports or system):
|
|
#
|
|
# WITH_MILTER_BASE=yes
|
|
# or
|
|
# WITH_MILTER_PORT=yes
|
|
#
|
|
# If unspecified, check for an up-to-date system version but give an
|
|
# installed port preference over it.
|
|
##
|
|
|
|
OPTIONS_DEFINE= DKIM SPF CURL LDAP P0F POSTFIX DOCS EXAMPLES
|
|
OPTIONS_DEFAULT= DKIM SPF CURL
|
|
DKIM_DESC= DKIM support
|
|
SPF_DESC= SPF support
|
|
CURL_DESC= curl support
|
|
P0F_DESC= P0F support
|
|
POSTFIX_DESC= Use Postfix instead of Sendmail
|
|
|
|
DKIM_LIB_DEPENDS= libopendkim.so:mail/opendkim
|
|
P0F_RUN_DEPENDS= p0f:net-mgmt/p0f
|
|
SPF_LIB_DEPENDS= libspf2.so:mail/libspf2
|
|
CURL_LIB_DEPENDS= libcurl.so:ftp/curl
|
|
|
|
POSTFIX_CONFIGURE_ENABLE= postfix
|
|
POSTFIX_LDFLAGS_OFF= ${SENDMAIL_LDFLAGS}
|
|
POSTFIX_LIBS_OFF= ${SENDMAIL_LDADD}
|
|
|
|
P0F_CONFIGURE_ENABLE= p0f306
|
|
|
|
DKIM_CONFIGURE_ON= --with-libopendkim=${LOCALBASE}
|
|
DKIM_USES= ssl
|
|
SPF_CONFIGURE_ON= --with-libspf2=${LOCALBASE}
|
|
CURL_CONFIGURE_ON= --with-libcurl=${LOCALBASE}
|
|
LDAP_CONFIGURE_ON= --with-openldap=${LOCALBASE}
|
|
LDAP_LDFLAGS= -L${LOCALBASE}/lib
|
|
LDAP_USE= OPENLDAP=yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
LIBS+= -lpthread
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-user=mailnull \
|
|
--with-libmilter=${MILTERBASE} \
|
|
--enable-dnsrbl \
|
|
--with-thread-safe-resolver \
|
|
--with-dumpfile=/var/milter-greylist/greylist.db
|
|
|
|
ALL_TARGET= milter-greylist
|
|
SUB_FILES+= pkg-message
|
|
USE_RC_SUBR= milter-greylist
|
|
PORTDOCS= README
|
|
PORTEXAMPLES= greylist.conf
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/etc/mail
|
|
${INSTALL_MAN} ${WRKSRC}/greylist.conf.5 \
|
|
${STAGEDIR}${PREFIX}/man/man5/
|
|
${INSTALL_MAN} ${WRKSRC}/milter-greylist.8 \
|
|
${STAGEDIR}${PREFIX}/man/man8/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/milter-greylist \
|
|
${STAGEDIR}${PREFIX}/libexec/
|
|
${INSTALL_DATA} ${WRKSRC}/greylist.conf \
|
|
${STAGEDIR}${PREFIX}/etc/mail/greylist.conf.sample
|
|
@${MKDIR} ${STAGEDIR}/var/milter-greylist
|
|
|
|
do-install-EXAMPLES-on:
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/greylist.conf ${STAGEDIR}${EXAMPLESDIR}/
|
|
do-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include "${PORTSDIR}/mail/sendmail/bsd.milter.mk"
|
|
|
|
.include <bsd.port.mk>
|