diff options
author | marino <marino@FreeBSD.org> | 2015-03-20 03:38:48 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-03-20 03:38:48 +0800 |
commit | 5493ed78ecfb5074d9fa41de884a0d868a1b082b (patch) | |
tree | eb902d4bb3c5d2f6db22635bd56e8cf867a54746 /mail/milter-bogom | |
parent | f4329bb8b842cb91d2454922bae3819c41ce658f (diff) | |
download | freebsd-ports-gnome-5493ed78ecfb5074d9fa41de884a0d868a1b082b.tar.gz freebsd-ports-gnome-5493ed78ecfb5074d9fa41de884a0d868a1b082b.tar.zst freebsd-ports-gnome-5493ed78ecfb5074d9fa41de884a0d868a1b082b.zip |
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.
Diffstat (limited to 'mail/milter-bogom')
-rw-r--r-- | mail/milter-bogom/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mail/milter-bogom/Makefile b/mail/milter-bogom/Makefile index 442f0c6e763b..f391e23a5a1d 100644 --- a/mail/milter-bogom/Makefile +++ b/mail/milter-bogom/Makefile @@ -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 |