mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
d02f94b8e8
PR: ports/130241 Submitted by: Peter Kieser <peter@kieser.ca> (maintainer)
76 lines
1.8 KiB
Makefile
76 lines
1.8 KiB
Makefile
# New ports collection makefile for: spamdyke
|
|
# Date created: 11 January 2007
|
|
# Whom: Peter Kieser <peter@kieser.ca>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= spamdyke
|
|
PORTVERSION= 4.0.10
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.spamdyke.org/releases/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= peter@kieser.ca
|
|
COMMENT= A filter for monitoring and intercepting SMTP connections on qmail
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/tcprules:${PORTSDIR}/sysutils/ucspi-tcp
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/spamdyke
|
|
|
|
USE_QMAIL= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
ALL_TARGET= spamdyke
|
|
|
|
PLIST_FILES= bin/spamdyke etc/spamdyke.conf.example
|
|
|
|
OPTIONS= TLS "Enable TLS support" On \
|
|
DEBUG "Enable debugging output" Off \
|
|
DEBUG_EXCESSIVE "Enable excessive debugging output" Off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.if ${OSVERSION} <= 700042
|
|
BROKEN= this port causes gcc to segfault
|
|
.endif
|
|
|
|
.if defined(WITHOUT_TLS)
|
|
CONFIGURE_ARGS+= --disable-tls
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-tls
|
|
.endif
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CONFIGURE_ARGS+= --with-debug-output
|
|
.else
|
|
CONFIGURE_ARGS+= --without-debug-output
|
|
.endif
|
|
|
|
.if defined(WITH_DEBUG_EXCESSIVE)
|
|
CONFIGURE_ARGS+= --with-excessive-output
|
|
.else
|
|
CONFIGURE_ARGS+= --without-excessive-output
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= Changelog.txt FAQ.html GNUGPL.txt INSTALL.txt \
|
|
README.html README_ip_file_format.html \
|
|
README_rdns_directory_format.html README_rdns_file_format.html \
|
|
UPGRADING.txt UPGRADING_version_3_to_version_4.txt TODO.txt
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKDIR}/${DISTNAME}/documentation && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/documentation/spamdyke.conf.example ${PREFIX}/etc
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's#^CFLAGS :=.*#CFLAGS = ${CFLAGS}#' ${WRKSRC}/Makefile.in
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/spamdyke ${PREFIX}/bin
|
|
|
|
.include <bsd.port.post.mk>
|