1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00
freebsd-ports/mail/antivirus-milter/Makefile
Baptiste Daroussin 5de0996e47 Avoid @exec and keep track of directories
Allow packaging as a user

Bump portrevision as the plist was creating run/quarantine and the makefile was
creating quarantine
2014-10-31 22:57:24 +00:00

56 lines
1.6 KiB
Makefile

# $FreeBSD$
PORTNAME= antivirus
PORTVERSION= 3.30
PORTREVISION= 7
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= dinoex
MAINTAINER= dinoex@FreeBSD.org
COMMENT= Sendmail milter wich uses McAfee Virus Scan or clamav
LICENSE= BSD2CLAUSE
CFLAGS+= -Wall ${PTHREAD_CFLAGS:S=""==}
LIBS+= -lmilter ${PTHREAD_LIBS}
PLIST_SUB+= ANTIVIRUS=${ANTIVIRUS_DIR}
SUB_LIST+= ANTIVIRUS=${ANTIVIRUS_DIR}
SED_SCRIPT= -e 's|%%ANTIVIRUS%%|${ANTIVIRUS_DIR}|g' \
-e 's|%%PREFIX%%|${PREFIX}|g'
USE_RC_SUBR= antivirus-milter
ANTIVIRUS_DIR?= /var/spool/antivirus
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/mail/sendmail/bsd.milter.mk"
.if defined(WITH_SENDMAIL_PORT)
LIBS+= ${LDFLAGS}
.endif
MAKE_ENV+= SENDMAILBASE="${MILTERBASE}" \
SENDMAILOBJ="${MILTERBASE}" \
LIBS="${LIBS}"
do-configure:
@${REINPLACE_CMD} -e 's|/etc/mail/antivirus.conf|${LOCALBASE}/etc/antivirus.conf|' \
${CONFIGURE_WRKSRC}/antivirus.c
@${SED} ${SED_SCRIPT} ${FILESDIR}/antivirus.conf \
> ${WRKSRC}/antivirus.conf
@${SED} ${SED_SCRIPT} ${FILESDIR}/clamav.conf \
> ${WRKSRC}/clamav.conf
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/antivirus \
${STAGEDIR}${PREFIX}/libexec/antivirus
${INSTALL_DATA} ${WRKSRC}/antivirus.conf \
${STAGEDIR}${PREFIX}/etc/antivirus.conf-dist
${INSTALL_DATA} ${WRKSRC}/clamav.conf \
${STAGEDIR}${PREFIX}/etc/antivirus.conf-clamav
${MKDIR} ${STAGEDIR}${ANTIVIRUS_DIR}/spool ${STAGEDIR}${ANTIVIRUS_DIR}/run ${STAGEDIR}${ANTIVIRUS_DIR}/quarantine
@${ECHO_MSG} "Add to your *.mc configfile:"
@${ECHO_MSG} "INPUT_MAIL_FILTER(\`antivirus', \`S=local:${ANTIVIRUS_DIR}/antivirus.sock, F=')"
.include <bsd.port.post.mk>