freebsd-ports/mail/milter-skem/Makefile
Dirk Meyer 6058705eb9 - bump MILTER_SOVER to fix linking on FREEBSD-12
- bump PORTREVISION on ports using libmilter
- rename WITH_SENDMAIL_PORT to WITH_MILTER_PORT
- rename WITH_SENDMAIL_BASE to WITH_MILTER_BASE
- rename WITH_SENDMAIL_STATIC_MILTER to WITH_MILTER_STATIC
- cleanup ifdefs
- fix build on batv-filter with libmilter from ports
2018-07-01 10:17:18 +00:00

43 lines
1 KiB
Makefile

# Created by: Mikhail Teterin
# $FreeBSD$
PORTNAME= skem
PORTVERSION= 1.0.2
PORTREVISION= 2
CATEGORIES= mail
MASTER_SITES= http://virtual-estates.net/skem/
MAINTAINER= mi@aldan.algebra.com
COMMENT= Cache earlier sendmail's verdicts for the relays
.if !exists( /usr/include/libmilter/mfapi.h )
BUILD_DEPENDS+= ${LOCALBASE}/include/libmilter/mfapi.h:mail/libmilter
CFLAGS+= -I${LOCALBASE}/include
.endif
USES= tar:bzip2 uidfix
PLIST_FILES= sbin/skem \
man/man8/skem.8.gz
OPTIONS_DEFINE= SKEM_NO_CLEANUP SKEM_NO_LOGWATCHER SKEM_NETINET6 SKEM_NETINET
SKEM_NO_CLEANUP_DESC= Omit the auto-cleanup module
SKEM_NO_LOGWATCHER_DESC= Omit the log-watching module
SKEM_NETINET6_DESC= Support IPv6 addresses (not tested)
SKEM_NETINET_DESC= Support IPv4 addresses
OPTIONS_DEFAULT= SKEM_NETINET
NO_WRKSUBDIR= yes
.include <bsd.port.options.mk>
.for o in ${PORT_OPTIONS:MSKEM_*}
. if ${PORT_OPTIONS:M$o}
MAKE_ARGS+= -D$o
. endif
.endfor
post-patch:
@${REINPLACE_CMD} -E 's/char[[:blank:]]+c;/int c;/' ${WRKSRC}/milter.c
.include <bsd.port.mk>