Index: head/mail/opendkim/Makefile =================================================================== --- head/mail/opendkim/Makefile (revision 393674) +++ head/mail/opendkim/Makefile (revision 393675) @@ -1,175 +1,179 @@ # Created by: Hirohisa Yamaguchi # $FreeBSD$ PORTNAME= opendkim -PORTVERSION= 2.9.2 -PORTREVISION= 7 +PORTVERSION= 2.10.3 CATEGORIES= mail security MASTER_SITES= SF/${PORTNAME} \ - SF/${PORTNAME}/Previous%20Releases + SF/${PORTNAME}/Previous%20Releases \ + ftp://ftpmirror.uk/freebsd-ports/${PORTNAME}/ -MAINTAINER= umq@ueo.co.jp +MAINTAINER= freebsd-ports@dan.me.uk COMMENT= DKIM library and milter implementation LICENSE= BSD3CLAUSE SENDMAIL LICENSE_COMB= multi LICENSE_FILE_SENDMAIL= ${WRKSRC}/LICENSE.Sendmail 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 GNU_CONFIGURE= yes NO_OPTIONS_SORT=yes -USES= pkgconfig perl5 shebangfix libtool +USES= libtool perl5 pkgconfig shebangfix USE_PERL5= run SHEBANG_FILES= opendkim/opendkim-genkey* reputation/opendkim-* stats/opendkim-* \ reprrd/opendkim-reprrdimport* USE_OPENSSL= yes USE_LDCONFIG= yes PORTDOCS= * CONFIGURE_ARGS+= --without-tre OPTIONS_SUB= yes OPTIONS_SINGLE= RESOLV OPTIONS_SINGLE_RESOLV= STOCK_RESOLVER UNBOUND OPTIONS_DEFINE= FILTER CURL GNUTLS JANSSON LDNS LMDB LUA MEMCACHED \ BDB_BASE OPENDBX OPENLDAP POPAUTH QUERY_CACHE SASL OPTIONS_DEFAULT= FILTER LUA UNBOUND STOCK_RESOLVER_DESC= Use the stock resolver library UNBOUND_DESC= Use unbound DNS library UNBOUND_CONFIGURE_WITH= unbound UNBOUND_LIB_DEPENDS= libunbound.so:${PORTSDIR}/dns/unbound FILTER_DESC= OpenDKIM filter, requires libmilter/Sendmail FILTER_USE= RC_SUBR=milter-opendkim CURL_DESC= Use cURL for web queries CURL_CONFIGURE_WITH= libcurl CURL_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl GNUTLS_DESC= Use GnuTLS instead of OpenSSL GNUTLS_LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls GNUTLS_CONFIGURE_WITH= gnutls GNUTLS_CONFIGURE_OFF= --with-openssl=${OPENSSLBASE} JANSSON_DESC= Statistics and other output as JSON data JANSSON_CONFIGURE_WITH= libjansson JANSSON_LIB_DEPENDS= libjansson.so:${PORTSDIR}/devel/jansson LDNS_DESC= Use LDNS library for DNS queries LDNS_CONFIGURE_WITH= ldns LDNS_LIB_DEPENDS= libldns.so:${PORTSDIR}/dns/ldns LMDB_DESC= Use Lightning Memory-Mapped DB key-value store LMDB_CONFIGURE_WITH= lmdb LMDB_LIB_DEPENDS= liblmdb.so:${PORTSDIR}/databases/lmdb LUA_DESC= Describe filter policy with lua LUA_CONFIGURE_WITH= lua LUA_USES= lua MEMCACHED_DESC= Use memcached as a data set MEMCACHED_CONFIGURE_WITH= libmemcached MEMCACHED_LIB_DEPENDS= libmemcached.so:${PORTSDIR}/databases/libmemcached BDB_BASE_DESC= Use Berkeley DB from base OPENDBX_DESC= Store filter policies via OpenDBX OPENDBX_CONFIGURE_WITH= odbx OPENDBX_LIB_DEPENDS= libopendbx.so:${PORTSDIR}/databases/opendbx OPENLDAP_DESC= Store filter policies in LDAP OPENLDAP_CONFIGURE_WITH=openldap OPENLDAP_USE= OPENLDAP=yes POPAUTH_DESC= Use POP authentication DB POPAUTH_CONFIGURE_ENABLE= popauth QUERY_CACHE_DESC= Cache DNS query results locally QUERY_CACHE_CONFIGURE_ENABLE= query_cache SASL_DESC= Enable SASL authentication with LDAP SASL_CONFIGURE_WITH= sasl DOCS_CONFIGURE_ON= --docdir=${WRKDIR}/doc MAKE_ARGS+= pkgconfigdir="${PREFIX}/libdata/pkgconfig" MAKE_ENV= INSTALL_STRIP_FLAG=${STRIP} .include "${.CURDIR}/Makefile.options" .include .if ${PORT_OPTIONS:MSASL} && ${PORT_OPTIONS:MOPENLDAP} WANT_OPENLDAP_SASL= yes .endif .if ${PORT_OPTIONS:MFILTER} SUB_FILES= pkg-message WITHOUT_MILTER_CFLAGS= yes WITHOUT_MILTER_LDFLAGS= yes .include "${PORTSDIR}/mail/sendmail/bsd.milter.mk" CONFIGURE_ARGS+= --with-milter=${MILTERBASE} .endif .if ${PORT_OPTIONS:MLUA_ONLY_SIGNING} || \ ${PORT_OPTIONS:MRBL} .if !${PORT_OPTIONS:MLUA} -IGNORE= Options LUA_ONLY_SIGNING and RBL require LUA as well +IGNORE= options LUA_ONLY_SIGNING and RBL require LUA as well .endif .endif .if ${PORT_OPTIONS:MREPUTATION} .if !${PORT_OPTIONS:MCURL} || !${PORT_OPTIONS:MJANSSON} -IGNORE= Option REPUTATION requires CURL and JANSSON as well +IGNORE= option REPUTATION requires CURL and JANSSON as well .endif .endif .if ${PORT_OPTIONS:MSTATSEXT} .if !${PORT_OPTIONS:MSTATS} || !${PORT_OPTIONS:MLUA} -IGNORE= Option STATSEXT requires STATS and LUA as well +IGNORE= option STATSEXT requires STATS and LUA as well .endif .endif .if ${PORT_OPTIONS:MPOPAUTH} \ || ${PORT_OPTIONS:MQUERY_CACHE} \ || ${PORT_OPTIONS:MLDAP_CACHING} \ || ${PORT_OPTIONS:MREPUTATION} \ || ${PORT_OPTIONS:MSTATS} . if ${PORT_OPTIONS:MBDB_BASE} CONFIGURE_ARGS+= --with-db-lib=c . else CONFIGURE_ARGS+= --with-db-incdir=${BDB_INCLUDE_DIR} \ --with-db-libdir=${BDB_LIB_DIR} \ --with-db-lib=${BDB_LIB_NAME} USE_BDB= 40+ . endif +.endif + +.if ${PORT_OPTIONS:MCODECOVERAGE} +LDFLAGS+= -lpthread .endif pre-configure: ${REINPLACE_CMD} -e '/LIBLUA_LIBS/s/lua5\.[0-9]/lua-${LUA_VER}/' \ -e '/PKG_CONFIG/s/lua5\.[0-9]/lua-${LUA_VER}/' \ -e '/PKG_CONFIG/s/cyrussasl/libsasl2/' \ ${WRKSRC}/configure post-patch: .if ${PORT_OPTIONS:MLCOV} ${CP} ${FILESDIR}/lcov-helper.sh ${WRKSRC}/libopendkim/tests/ ${CP} ${FILESDIR}/lcov-helper.sh ${WRKSRC}/opendkim/tests/ ${FIND} ${WRKSRC} -type f -name \*-helper.sh -exec ${CHMOD} 755 {} + .endif post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/etc/mail ${INSTALL_DATA} ${WRKSRC}/opendkim/opendkim.conf.sample \ ${STAGEDIR}${PREFIX}/etc/mail/ regression-test: build cd ${WRKSRC} ; ${MAKE} check .include Index: head/mail/opendkim/Makefile.options =================================================================== --- head/mail/opendkim/Makefile.options (revision 393674) +++ head/mail/opendkim/Makefile.options (revision 393675) @@ -1,96 +1,99 @@ # Created by: Hirohisa Yamaguchi # $FreeBSD$ # This file is used to tune build time options. OPTIONS_GROUP+= DEVELOPER DEVELOPER_DESC= Options useful for OpenDKIM development OPTIONS_GROUP_DEVELOPER= ALLSYMBOLS CODECOVERAGE DEBUG ALLSYMBOLS_DESC= Export all internal symbols for better test coverage ALLSYMBOLS_CONFIGURE_ENABLE= allsymbols CODECOVERAGE_DESC= Enable internal code-coverage/profiling CODECOVERAGE_CONFIGURE_ENABLE= codecoverage DEBUG_DESC= Build with debug symbols DEBUG_CONFIGURE_ENABLE= debug ## Please refer FEATURES file distributed with the source for details. FFR_DESC= Use features marked as For-Future-Releases OPTIONS_GROUP+= FFR ## _FFR_DNSSEC is referenced in the code, but does not appear to do ## anything much. OPTIONS_GROUP_FFR= ADSP_LISTS ATPS DB_HANDLE_POOLS \ DEFAULT_SENDER DIFFHEADERS IDENTITY_HEADER \ LDAP_CACHING POSTGRES_RECONNECT_HACK \ RATE_LIMIT RBL REPLACE_RULES REPRRD \ REPUTATION RESIGN SENDER_MACRO \ SOCKETDB STATS STATSEXT VBR ADSP_LISTS_DESC= ADSP filtering for lists (experimental) ADSP_LISTS_CONFIGURE_ENABLE= adsp_lists ATPS_DESC= Authorized Third Party Sign check ATPS_CONFIGURE_ENABLE= atps DB_HANDLE_POOLS_DESC= Database handle pools (experimental) DB_HANDLE_POOLS_CONFIGURE_ENABLE= db_handle_pools DEFAULT_SENDER_DESC= Default sender address DEFAULT_SENDER_CONFIGURE_ENABLE=default_sender DIFFHEADERS_DESC= Compare signed and verified headers (experimental) DIFFHEADERS_CONFIGURE_ENABLE= diffheaders +DIFFHEADERS_LIB_DEPENDS= libtre.so:${PORTSDIR}/textproc/libtre +DIFFHEADERS_CONFIGURE_WITH= tre=${LOCALBASE} +DIFFHEADERS_CONFIGURE_OFF= --without-tre IDENTITY_HEADER_DESC= Special header to set identity IDENTITY_HEADER_CONFIGURE_ENABLE= identity_header LDAP_CACHING_DESC= LDAP query piggybacking and caching LDAP_CACHING_CONFIGURE_ENABLE= ldap_caching LDAP_CACHING_USE= OPENLDAP=yes LUA_ONLY_SIGNING= Message signing by Lua only LUA_ONLY_SIGNING_CONFIGURE_ENABLE= lua_only_signing POSTGRES_RECONNECT_HACK_DESC= PostgreSQL connection error detection bug hack POSTGRES_RECONNECT_HACK_CONFIGURE_ENABLE= postgresql_reconnect_hack RATE_LIMIT_DESC= DKIM based rate limiting support RATE_LIMIT_CONFIGURE_ENABLE= rate_limit RBL_DESC= Realtime Blacklist query support RBL_CONFIGURE_ENABLE= rbl REPLACE_RULES_DESC= String substition when signing REPLACE_RULES_CONFIGURE_ENABLE= replace_rules REPRRD_DESC= Support for collaborative reputation that uses rrdtool (experimental) REPRRD_CONFIGURE_ENABLE= reprrd REPRRD_LIB_DEPENDS= librrd.so:${PORTSDIR}/databases/rrdtool REPUTATION_DESC= Reputation check (experimental) REPUTATION_CONFIGURE_ENABLE= reputation RESIGN_DESC= One-step resigning RESIGN_CONFIGURE_ENABLE= resign SENDER_MACRO_DESC= Macro to determine sender SENDER_MACRO_CONFIGURE_ENABLE= sender_macro SOCKETDB_DESC= Arbitrary socket data sets SOCKETDB_CONFIGURE_ENABLE= socketdb STATS_DESC= Per-message and per-signature statistics STATS_CONFIGURE_ENABLE= stats STATSEXT_DESC= Localized stats extensions STATSEXT_CONFIGURE_ENABLE= statsext VBR_DESC= Vouch-By-Reference support VBR_CONFIGURE_ENABLE= vbr Index: head/mail/opendkim/distinfo =================================================================== --- head/mail/opendkim/distinfo (revision 393674) +++ head/mail/opendkim/distinfo (revision 393675) @@ -1,2 +1,2 @@ -SHA256 (opendkim-2.9.2.tar.gz) = 1f0c66afbe48f6223d2ab985b2c27594ae45035e3e81eba887d8ec6e5e1282c0 -SIZE (opendkim-2.9.2.tar.gz) = 1229383 +SHA256 (opendkim-2.10.3.tar.gz) = 43a0ba57bf942095fe159d0748d8933c6b1dd1117caf0273fa9a0003215e681b +SIZE (opendkim-2.10.3.tar.gz) = 1210224 Index: head/mail/opendkim/files/patch-libopendkim__tests__Makefile.in =================================================================== --- head/mail/opendkim/files/patch-libopendkim__tests__Makefile.in (revision 393674) +++ head/mail/opendkim/files/patch-libopendkim__tests__Makefile.in (revision 393675) @@ -1,41 +1,41 @@ ---- ./libopendkim/tests/Makefile.in.orig 2013-02-26 06:06:04.000000000 +0900 -+++ ./libopendkim/tests/Makefile.in 2013-02-26 19:58:50.000000000 +0900 -@@ -1049,8 +1049,10 @@ +--- libopendkim/tests/Makefile.in.orig 2015-05-12 18:43:48 UTC ++++ libopendkim/tests/Makefile.in +@@ -1108,8 +1108,10 @@ am__nobase_list = $(am__nobase_strip_set { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\ +/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\ +/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ -@@ -2782,16 +2784,19 @@ +@@ -4131,16 +4133,19 @@ uninstall-am: uninstall-dist_docDATA @LCOV_TRUE@description.txt: $(check_PROGRAMS) $(check_SCRIPTS) @LCOV_TRUE@ rm -f $@ @LCOV_TRUE@ for i in $(check_PROGRAMS); do \ -@LCOV_TRUE@ testname=$${i/t-}; \ -@LCOV_TRUE@ testname=$${testname//-/_}; \ +@LCOV_TRUE@ testname=$${i#t-}; \ +@LCOV_TRUE@ testname=$$(echo $${testname} | sed -e 's/-/_/g'); \ @LCOV_TRUE@ fgrep '***' $$i.c | tail -n 1 | \ -@LCOV_TRUE@ (echo $${testname} ; sed -e 's/[^*]*\*\*\*\(.*\)\\n.*/\t\1\n/g' ) >> $@; \ +@LCOV_TRUE@ (echo $${testname} ; sed -e 's/[^*]*\*\*\*\(.*\)\\ +@LCOV_TRUE@.*/ \1\ +@LCOV_TRUE@/g' ) >> $@; \ @LCOV_TRUE@ done @LCOV_TRUE@ for i in $(check_SCRIPTS); do \ -@LCOV_TRUE@ testname=$${i/t-}; \ -@LCOV_TRUE@ testname=$${testname//-/_}; \ +@LCOV_TRUE@ testname=$${i#t-}; \ +@LCOV_TRUE@ testname=$$(echo $${testname} | sed -e 's/-/_/g'); \ @LCOV_TRUE@ grep '^#' $$i | tail -n 1 | \ -@LCOV_TRUE@ (echo $${testname} ; sed -e 's/^# \(.*\)/\t\1\n/g' ) >> $@; \ +@LCOV_TRUE@ (echo $${testname} ; sed -e 's/^# \(.*\)/ \1\ +@LCOV_TRUE@/g' ) >> $@; \ @LCOV_TRUE@ done @LCOV_TRUE@description.html: description.txt Index: head/mail/opendkim/files/patch-opendkim__tests__Makefile.in =================================================================== --- head/mail/opendkim/files/patch-opendkim__tests__Makefile.in (revision 393674) +++ head/mail/opendkim/files/patch-opendkim__tests__Makefile.in (revision 393675) @@ -1,36 +1,36 @@ ---- ./opendkim/tests/Makefile.in.orig 2013-02-26 06:06:06.000000000 +0900 -+++ ./opendkim/tests/Makefile.in 2013-02-26 19:58:50.000000000 +0900 -@@ -98,8 +98,10 @@ +--- opendkim/tests/Makefile.in.orig 2015-05-12 18:43:49 UTC ++++ opendkim/tests/Makefile.in +@@ -139,8 +139,10 @@ am__nobase_list = $(am__nobase_strip_set { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\ +/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\ +/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ -@@ -778,14 +780,16 @@ +@@ -1298,14 +1300,16 @@ uninstall-am: uninstall-dist_docDATA @LCOV_TRUE@description.txt: $(check_SCRIPTS) @LCOV_TRUE@ rm -f $@ @LCOV_TRUE@ for test in $? ; do \ -@LCOV_TRUE@ testname=$${test/t-}; \ -@LCOV_TRUE@ testname=$${testname//-/_}; \ +@LCOV_TRUE@ testname=$${test#t-}; \ +@LCOV_TRUE@ testname=$$(echo $${testname} | sed -e 's/-/_/g'); \ @LCOV_TRUE@ grep ^# $$test | tail -n 1 | \ -@LCOV_TRUE@ sed -e "s/^#\(.*\)/$${testname}\n\t\1\n/g" >> $@; \ +@LCOV_TRUE@ sed -e "s/^#\(.*\)/$${testname}\ +@LCOV_TRUE@ \1\ +@LCOV_TRUE@/g" >> $@; \ @LCOV_TRUE@ done @LCOV_TRUE@description.html: description.txt -@LCOV_TRUE@ gendesc --output $@ $< +@LCOV_TRUE@ gendesc --output $@ $? @LCOV_TRUE@maintainer-clean-local: @LCOV_TRUE@ -rm -rf lcov/[^C]* Index: head/mail/opendkim/pkg-plist =================================================================== --- head/mail/opendkim/pkg-plist (revision 393674) +++ head/mail/opendkim/pkg-plist (revision 393675) @@ -1,80 +1,78 @@ %%ATPS%%man/man8/opendkim-atpszone.8.gz %%ATPS%%sbin/opendkim-atpszone %%FILTER%%man/man5/opendkim.conf.5.gz %%FILTER%%man/man8/opendkim.8.gz %%FILTER%%sbin/opendkim %%JANSSON%%bin/autobuild %%JANSSON%%man/man8/autobuild.8.gz %%LUA%%bin/miltertest %%LUA%%man/man3/opendkim-lua.3.gz %%LUA%%man/man8/miltertest.8.gz %%OPENDBX%%bin/opendkim-spam %%OPENDBX%%sbin/opendkim-importstats %%OPENDBX%%man/man1/opendkim-spam.1.gz %%OPENDBX%%man/man8/opendkim-importstats.8.gz %%RBL%%include/rbl/rbl.h %%RBL%%lib/librbl.a %%RBL%%lib/librbl.so %%RBL%%lib/librbl.so.1 %%RBL%%lib/librbl.so.1.0.0 %%RBL%%libdata/pkgconfig/rbl.pc %%RBL%%man/man3/rbl.3.gz %%REPRRD%%bin/opendkim-reprrdimport %%REPRRD%%include/reprrd/reprrd.h %%REPRRD%%lib/libreprrd.a %%REPRRD%%lib/libreprrd.so %%REPRRD%%lib/libreprrd.so.1 %%REPRRD%%lib/libreprrd.so.1.0.0 %%REPRRD%%man/man8/opendkim-reprrdimport.8.gz %%REPUTATION%%include/repute/repute.h %%REPUTATION%%include/ut/ut.h %%REPUTATION%%lib/librepute.a %%REPUTATION%%lib/librepute.so %%REPUTATION%%lib/librepute.so.1 %%REPUTATION%%lib/librepute.so.1.0.0 %%REPUTATION%%lib/libut.a %%REPUTATION%%lib/libut.so %%REPUTATION%%lib/libut.so.1 %%REPUTATION%%lib/libut.so.1.0.0 %%REPUTATION%%libdata/pkgconfig/repute.pc %%REPUTATION%%libdata/pkgconfig/ut.pc %%REPUTATION%%man/man3/ut.3.gz %%REPUTATION%%man/man8/opendkim-genrates.8.gz %%REPUTATION%%man/man8/opendkim-modtotals.8.gz %%REPUTATION%%man/man8/opendkim-rephistory.8.gz %%REPUTATION%%sbin/opendkim-genrates %%REPUTATION%%sbin/opendkim-modtotals %%REPUTATION%%sbin/opendkim-rephistory %%STATS%%man/man8/opendkim-expire.8.gz %%STATS%%man/man8/opendkim-gengraphs.8.gz %%STATS%%man/man8/opendkim-genstats.8.gz %%STATS%%man/man8/opendkim-stats.8.gz %%STATS%%sbin/opendkim-expire %%STATS%%sbin/opendkim-gengraphs %%STATS%%sbin/opendkim-genstats %%STATS%%sbin/opendkim-reportstats %%STATS%%sbin/opendkim-stats %%VBR%%include/vbr/vbr.h %%VBR%%lib/libvbr.a %%VBR%%lib/libvbr.so %%VBR%%lib/libvbr.so.2 %%VBR%%lib/libvbr.so.2.0.0 %%VBR%%libdata/pkgconfig/vbr.pc %%VBR%%man/man3/vbr.3.gz @sample etc/mail/opendkim.conf.sample include/opendkim/dkim.h lib/libopendkim.a lib/libopendkim.so -lib/libopendkim.so.9 -lib/libopendkim.so.9.0.3 +lib/libopendkim.so.10 +lib/libopendkim.so.10.0.3 libdata/pkgconfig/opendkim.pc man/man8/opendkim-genkey.8.gz man/man8/opendkim-genzone.8.gz -man/man8/opendkim-testadsp.8.gz man/man8/opendkim-testkey.8.gz man/man8/opendkim-testmsg.8.gz sbin/opendkim-genkey sbin/opendkim-genzone -sbin/opendkim-testadsp sbin/opendkim-testkey sbin/opendkim-testmsg Index: head/mail/p5-Mail-OpenDKIM/Makefile =================================================================== --- head/mail/p5-Mail-OpenDKIM/Makefile (revision 393674) +++ head/mail/p5-Mail-OpenDKIM/Makefile (revision 393675) @@ -1,37 +1,41 @@ # Created by: Vivek Khera # $FreeBSD$ PORTNAME= Mail-OpenDKIM PORTVERSION= 4201 PORTREVISION= 1 CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= vivek@khera.org COMMENT= Perl interface to OpenDKIM C library LICENSE= ART10 GPLv1 LICENSE_COMB= dual BUILD_DEPENDS= opendkim>=2.5.0:${PORTSDIR}/mail/opendkim LIB_DEPENDS= libopendkim.so:${PORTSDIR}/mail/opendkim RUN_DEPENDS= opendkim>=2.5.0:${PORTSDIR}/mail/opendkim \ p5-Error>=0:${PORTSDIR}/lang/p5-Error USES= perl5 USE_PERL5= configure +BROKEN= fails to compile with present version of mail/opendkim port +DEPRECATED= Does not compile with newer opendkim port. Please use mail/p5-Mail-DKIM instead. +EXPIRATION_DATE= 2015-10-31 + PLIST_FILES= %%SITE_ARCH%%/Mail/OpenDKIM.pm \ %%SITE_ARCH%%/Mail/OpenDKIM/DKIM.pm \ %%SITE_ARCH%%/Mail/OpenDKIM/PrivateKey.pm \ %%SITE_ARCH%%/Mail/OpenDKIM/Signature.pm \ %%SITE_ARCH%%/Mail/OpenDKIM/Signer.pm \ %%SITE_ARCH%%/auto/Mail/OpenDKIM/OpenDKIM.so \ %%PERL5_MAN3%%/Mail::OpenDKIM.3.gz \ %%PERL5_MAN3%%/Mail::OpenDKIM::DKIM.3.gz \ %%PERL5_MAN3%%/Mail::OpenDKIM::PrivateKey.3.gz \ %%PERL5_MAN3%%/Mail::OpenDKIM::Signature.3.gz \ %%PERL5_MAN3%%/Mail::OpenDKIM::Signer.3.gz .include