diff options
author | robak <robak@FreeBSD.org> | 2014-10-27 15:24:19 +0800 |
---|---|---|
committer | robak <robak@FreeBSD.org> | 2014-10-27 15:24:19 +0800 |
commit | c5ca9122766cd6298e5be9252cdce856fb6ff6fa (patch) | |
tree | 42cd3a736ba9f9bd2e1bbad1244fb93af0ba1171 /mail | |
parent | 2cbeea0faab48489fabfb9b48222c6a68eee7446 (diff) | |
download | freebsd-ports-gnome-c5ca9122766cd6298e5be9252cdce856fb6ff6fa.tar.gz freebsd-ports-gnome-c5ca9122766cd6298e5be9252cdce856fb6ff6fa.tar.zst freebsd-ports-gnome-c5ca9122766cd6298e5be9252cdce856fb6ff6fa.zip |
mail/milter-greylist: minor fixes
- Use LIB_DEPS for curl, spf and geoip
- Use ${PORTSDIR} instead of {.CURDIR} for bsd.milter.mk location
- Do not bump PORTREVISION as all of curl, spf and geoip are disabled by defaul
PR: 193993
Submitted by: Mikhail Tsatsenko <m.tsatsenko@gmail.com>
Approved by: mentors (implicit)
Diffstat (limited to 'mail')
-rw-r--r-- | mail/milter-greylist/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/milter-greylist/Makefile b/mail/milter-greylist/Makefile index bb96b6dcf47d..b58a61a47362 100644 --- a/mail/milter-greylist/Makefile +++ b/mail/milter-greylist/Makefile @@ -37,9 +37,9 @@ P0F_DESC= P0F support POSTFIX_DESC= Use Postfix instead of Sendmail P0F_RUN_DEPENDS+= p0f:${PORTSDIR}/net-mgmt/p0f -SPF_BUILD_DEPENDS+= libspf2>=1.2.5:${PORTSDIR}/mail/libspf2 -CURL_BUILD_DEPENDS+= curl>=7.18:${PORTSDIR}/ftp/curl -GEOIP_BUILD_DEPENDS+= GeoIP>=1.4.4:${PORTSDIR}/net/GeoIP +SPF_LIB_DEPENDS+= libspf2.so:${PORTSDIR}/mail/libspf2 +CURL_LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl +GEOIP_LIB_DEPENDS+= libGeoIP.so:${PORTSDIR}/net/GeoIP POSTFIX_CONFIGURE_ENABLE= postfix P0F_CONFIGURE_ENABLE= p0f306 @@ -104,6 +104,6 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/greylist.conf ${STAGEDIR}${EXAMPLESDIR}/ .endif -.include "${.CURDIR}/../sendmail/bsd.milter.mk" +.include "${PORTSDIR}/mail/sendmail/bsd.milter.mk" .include <bsd.port.mk> |