mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
168f57451a
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category M. CR: D306 Approved by: portmgr (bapt)
33 lines
741 B
Makefile
33 lines
741 B
Makefile
# Created by: wolpert
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rbl-milter
|
|
PORTVERSION= 0.30
|
|
PORTREVISION= 3
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://opensource.confusticate.com/rbl-milter/
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= Milter that adds mail header warnings on mail from open-relays
|
|
|
|
USES= gmake
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" PTHREAD_LIBS="${PTHREAD_LIBS}"
|
|
|
|
USE_RC_SUBR= rblmilter
|
|
PLIST_FILES= sbin/rbl-milter
|
|
|
|
.if defined(NO_WERROR)
|
|
pre-configure:
|
|
${REINPLACE_CMD} -e 's!-Werror!!' ${WRKSRC}/configure
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.include "${PORTSDIR}/mail/sendmail/bsd.milter.mk"
|
|
|
|
CONFIGURE_ARGS+= --with-sendmail=${MILTERBASE} \
|
|
--with-sendmail-obj=${MILTERBASE}/lib
|
|
|
|
.include <bsd.port.post.mk>
|