five milter ports: Add or improve support on systems missing sendmail

In some cases no-sendmail support was in place but missing CFLAGS or
LDFLAGS, but in others it needed to be added.  Problems found as a result
of DragonFly removing sendmail from base.

Approved by:	just fix it.
This commit is contained in:
John Marino 2015-03-19 19:38:48 +00:00
parent a6a8ed7e09
commit 68517d8ee0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=381679
5 changed files with 18 additions and 1 deletions

View File

@ -14,8 +14,13 @@ COMMENT= Simple sendmail milter to interface bogofilter
RUN_DEPENDS= bogofilter:${PORTSDIR}/mail/bogofilter
.if !exists(/usr/lib/libmilter.so)
LIB_DEPENDS= libmilter.so:${PORTSDIR}/mail/sendmail
LDFLAGS+= -I${LOCALBASE}/include
.endif
MAKE_ARGS= CPPFLAGS="-DDEF_CONF=\\\"${PREFIX}/etc/bogom.conf\\\" ${PTHREAD_CFLAGS}" \
LIBS="-lmilter ${PTHREAD_LIBS}"
LIBS="-lmilter ${PTHREAD_LIBS}" LDFLAGS="${LDFLAGS}"
USE_RC_SUBR= milter-bogom
SUB_FILES= pkg-message

View File

@ -9,6 +9,11 @@ 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:${PORTSDIR}/mail/sendmail
CFLAGS+= -I${LOCALBASE}/include
.endif
USES= tar:bzip2 uidfix
PLIST_FILES= sbin/skem \

View File

@ -19,6 +19,11 @@ LICENSE_GROUPS_SENDMAIL= FSF OSI
LICENSE_NAME_SENDMAIL= Sendmail Open Source License
LICENSE_PERMS_SENDMAIL= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
.if !exists( /usr/include/libmilter/mfapi.h )
BUILD_DEPENDS+= ${LOCALBASE}/include/libmilter/mfapi.h:${PORTSDIR}/mail/sendmail
CFLAGS+= -I${LOCALBASE}/include
.endif
USES= libtool shebangfix
SHEBANG_FILES= reports/opendmarc-expire.in \
reports/opendmarc-import.in \

View File

@ -17,6 +17,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING
.if !exists(/usr/lib/libmilter.so)
LIB_DEPENDS= libmilter.so:${PORTSDIR}/mail/sendmail
CFLAGS+= -I${LOCALBASE}/include
.endif
PYPORTNAME= ${PKGNAMEPREFIX:C/[0-9]+-//}${PORTNAME}

View File

@ -150,6 +150,7 @@ LDFLAGS+= -lldap
. if !exists(/usr/lib/libmilter.a) || exists(${LOCALBASE}/lib/libmilter.a)
BUILD_DEPENDS+= ${LOCALBASE}/lib/libmilter.a:${PORTSDIR}/mail/sendmail
CONFIGURE_ARGS+=--with-sendmail=${LOCALBASE}/sbin/sendmail
LDFLAGS+= -L${LOCALBASE}/lib
. else
CONFIGURE_ARGS+=--with-sendmail=/usr/sbin/sendmail
. endif