Index: head/mail/assp/Makefile =================================================================== --- head/mail/assp/Makefile (revision 278178) +++ head/mail/assp/Makefile (revision 278179) @@ -1,160 +1,160 @@ # New ports collection makefile for: assp # Date created: 16 May 2005 # Whom: J.R. Oldroyd # # $FreeBSD$ # PORTNAME= assp -PORTVERSION= 1.9.1.1 +PORTVERSION= 1.9.1.3 CATEGORIES= mail MASTER_SITES= http://www.ringofsaturn.com/distfiles/ DISTNAME= ${PORTNAME:U}_${PORTVERSION}-Install MAINTAINER= rnejdl@ringofsaturn.com COMMENT= Anti-Spam SMTP Proxy USE_ZIP= yes NO_BUILD= yes USE_PERL5_RUN= yes MAN8= assp.8 assplog.8 ASSP_USER= assp ASSP_GROUP= assp USERS= ${ASSP_USER} GROUPS= ${ASSP_GROUP} ASSP_HOME= /var/db/assp ASSP_LOG= /var/log/assp PLIST_SUB= ASSP_HOME="${ASSP_HOME}" ASSP_LOG="${ASSP_LOG}" SUB_FILES= 510.assp assp.8 assplog.8 assplog.pl pkg-install SUB_LIST= ASSP_USER="${ASSP_USER}" ASSP_GROUP="${ASSP_GROUP}" \ ASSP_HOME="${ASSP_HOME}" ASSP_LOG="${ASSP_LOG}" \ DATADIR="${DATADIR}" PERL="${PERL}" USE_RC_SUBR= ${PORTNAME} RC_SCRIPT= ${PREFIX}/etc/rc.d/${PORTNAME} OPTIONS= EMVALID "RFC822 recipient address validator" on \ LDAP "LDAP validation of recipient addresses" off \ SPF "SPF validation of client IP" on \ SRS "Sender Rewriting Scheme" on \ SEND "Resending .eml files" on \ FBACKW "File Reading Backwards" on \ ZLIB "HTTP Header Compression on Admin Interface" on \ CLAMAV "ClamAV virus scanner" on \ DNSBL "DNS block list checking" on \ MYSQL "Use MySQL db to store white/red/delaylists" off \ MATCHRE "Match IP ranges and CIDR blocks in lists" on \ SENDERB "Country Code checks" on \ MIMEMOD "Multiple Attachement detection" on \ SSL "SSL secure sockets support" on \ IPV6 "IPv6 sockets support" on WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/${DISTNAME}/${PORTNAME:U} .include SUB_LIST+= RC_SCRIPT=${RC_SCRIPT} RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS RUN_DEPENDS+= ${SITE_PERL}/LWP/Simple.pm:${PORTSDIR}/www/p5-libwww .if !defined(WITHOUT_EMVALID) RUN_DEPENDS+= ${SITE_PERL}/Email/Valid.pm:${PORTSDIR}/mail/p5-Email-Valid .endif .if !defined(WITHOUT_LDAP) RUN_DEPENDS+= ${SITE_PERL}/Net/LDAP.pm:${PORTSDIR}/net/p5-perl-ldap .endif .if !defined(WITHOUT_SPF) RUN_DEPENDS+= ${SITE_PERL}/Mail/SPF.pm:${PORTSDIR}/mail/p5-Mail-SPF .endif .if !defined(WITHOUT_SRS) RUN_DEPENDS+= ${SITE_PERL}/Mail/SRS.pm:${PORTSDIR}/mail/p5-Mail-SRS .endif .if !defined(WITHOUT_SEND) RUN_DEPENDS+= ${SITE_PERL}/Email/Send.pm:${PORTSDIR}/mail/p5-Email-Send .endif .if !defined(WITHOUT_FBACKW) RUN_DEPENDS+= ${SITE_PERL}/File/ReadBackwards.pm:${PORTSDIR}/devel/p5-File-ReadBackwards .endif .if !defined(WITHOUT_ZLIB) . if ${PERL_LEVEL} < 500903 RUN_DEPENDS+= ${SITE_PERL}/Compress/Zlib.pm:${PORTSDIR}/archivers/p5-IO-Compress .endif .endif .if !defined(WITHOUT_CLAMAV) RUN_DEPENDS+= ${SITE_PERL}/File/Scan/ClamAV.pm:${PORTSDIR}/security/p5-File-Scan-ClamAV PLIST_SUB+= ASSP_CLAMAV="" .else PLIST_SUB+= ASSP_CLAMAV="@comment " .endif .if !defined(WITHOUT_DNSBL) RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS .endif .if !defined(WITHOUT_MYSQL) RUN_DEPENDS+= ${SITE_PERL}/Tie/RDBM.pm:${PORTSDIR}/databases/p5-Tie-DBI .endif .if !defined(WITHOUT_MATCHRE) RUN_DEPENDS+= ${SITE_PERL}/Net/IP/Match/Regexp.pm:${PORTSDIR}/net-mgmt/p5-Net-IP-Match-Regexp .endif .if !defined(WITHOUT_SENDERB) RUN_DEPENDS+= ${SITE_PERL}/Net/SenderBase.pm:${PORTSDIR}/mail/p5-Net-SenderBase .endif .if !defined(WITHOUT_MIMEMOD) RUN_DEPENDS+= ${SITE_PERL}/Email/MIME/Modifier.pm:${PORTSDIR}/mail/p5-Email-MIME .endif .if !defined(WITHOUT_SSL) RUN_DEPENDS+= ${SITE_PERL}/IO/Socket/SSL.pm:${PORTSDIR}/security/p5-IO-Socket-SSL .endif .if !defined(WITHOUT_IPV6) RUN_DEPENDS+= ${SITE_PERL}/IO/Socket/INET6.pm:${PORTSDIR}/net/p5-IO-Socket-INET6 .endif EXTRACT_AFTER_ARGS= -d ${PORTNAME}-${PORTVERSION} post-patch: @${REINPLACE_CMD} -e 's|/usr/bin/perl|${PERL}|' ${WRKSRC}/*.pl do-install: ${MKDIR} ${DATADIR} ${INSTALL_SCRIPT} ${WRKSRC}/assp.pl ${DATADIR} ${INSTALL_SCRIPT} ${WRKSRC}/rebuildspamdb.pl ${DATADIR} ${INSTALL_SCRIPT} ${WRKSRC}/stat.pl ${DATADIR} ( cd ${WRKSRC} && ${COPYTREE_SHARE} "files images reports" \ ${DATADIR}/ "! -name '*.orig' ! -name '*.bak'" ) ${INSTALL_SCRIPT} ${WRKDIR}/assplog.pl ${PREFIX}/sbin/assplog ${INSTALL_MAN} ${WRKDIR}/assp.8 ${MAN8PREFIX}/man/man8 ${INSTALL_MAN} ${WRKDIR}/assplog.8 ${MAN8PREFIX}/man/man8 ${MKDIR} ${PREFIX}/etc/periodic/daily ${INSTALL_SCRIPT} ${WRKDIR}/510.assp ${PREFIX}/etc/periodic/daily/ .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/docs/*.htm ${DOCSDIR} .endif post-install: @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL .include Property changes on: head/mail/assp/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.37 \ No newline at end of property +1.38 \ No newline at end of property Index: head/mail/assp/distinfo =================================================================== --- head/mail/assp/distinfo (revision 278178) +++ head/mail/assp/distinfo (revision 278179) @@ -1,2 +1,2 @@ -SHA256 (ASSP_1.9.1.1-Install.zip) = 6fb485c87ca1db9d5d0a6ecdd5cb702771aa1a5e4b0f3ba57d407f77f641f5c3 -SIZE (ASSP_1.9.1.1-Install.zip) = 759829 +SHA256 (ASSP_1.9.1.3-Install.zip) = 0d1ddd4ed8680837aa8893323032f1536b1774e77252d70322b55ed91f9e0504 +SIZE (ASSP_1.9.1.3-Install.zip) = 763492 Property changes on: head/mail/assp/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.25 \ No newline at end of property +1.26 \ No newline at end of property Index: head/mail/assp/pkg-plist =================================================================== --- head/mail/assp/pkg-plist (revision 278178) +++ head/mail/assp/pkg-plist (revision 278179) @@ -1,100 +1,101 @@ etc/periodic/daily/510.assp sbin/assp sbin/assplog %%DATADIR%%/assp.pl %%DATADIR%%/files/URIBLCCTLDS.txt %%DATADIR%%/files/blackaddresses.txt %%DATADIR%%/files/blackdomains.txt %%DATADIR%%/files/blackre.txt %%DATADIR%%/files/blockreportlist.txt %%DATADIR%%/files/bombdatare.txt %%DATADIR%%/files/bombheaderre.txt %%DATADIR%%/files/bombre.txt %%DATADIR%%/files/bombsenderre.txt %%DATADIR%%/files/bombsubjectre.txt %%DATADIR%%/files/charsets.txt %%DATADIR%%/files/checkdomains.txt %%DATADIR%%/files/deny.txt %%DATADIR%%/files/denyalways.txt %%DATADIR%%/files/dnsbls.txt %%DATADIR%%/files/droplist.txt %%DATADIR%%/files/invalidhelo.txt %%DATADIR%%/files/invalidptr.txt %%DATADIR%%/files/ipnp.txt +%%DATADIR%%/files/noblocking.txt %%DATADIR%%/files/nodelay.txt %%DATADIR%%/files/nodelayhelosre.txt %%DATADIR%%/files/nogrip.txt %%DATADIR%%/files/nookcaching.txt %%DATADIR%%/files/nopbwhite.txt %%DATADIR%%/files/notls.txt %%DATADIR%%/files/nowhite.txt %%DATADIR%%/files/npre.txt %%DATADIR%%/files/preheaderre.txt %%DATADIR%%/files/rcptreplrules.txt %%DATADIR%%/files/redre.txt %%DATADIR%%/files/strictspf.txt %%DATADIR%%/files/suspiciousre.txt %%DATADIR%%/files/suspiciousvirus.txt %%DATADIR%%/files/tlds-alpha-by-domain.txt %%DATADIR%%/files/uriblwhite.txt %%DATADIR%%/files/validptr.txt %%DATADIR%%/files/whiteorg.txt %%DATADIR%%/images/assp.css %%DATADIR%%/images/blockreport.css %%DATADIR%%/images/blockreport.gif %%DATADIR%%/images/blockreporticon.gif %%DATADIR%%/images/dropShadow.gif %%DATADIR%%/images/editor.css %%DATADIR%%/images/favicon.ico %%DATADIR%%/images/info.png %%DATADIR%%/images/logo.gif %%DATADIR%%/images/logo.jpg %%DATADIR%%/images/minusIcon.png %%DATADIR%%/images/noIcon.png %%DATADIR%%/images/opensource-logo.gif %%DATADIR%%/images/plusIcon.png %%DATADIR%%/images/project-support.jpg %%DATADIR%%/images/shutdown.css %%DATADIR%%/images/sourceforge-logo.gif %%DATADIR%%/images/valid-xhtml10.gif %%DATADIR%%/images/village.gif %%DATADIR%%/images/xml-pill.gif %%DATADIR%%/rebuildspamdb.pl %%DATADIR%%/reports/analyzereport.txt %%DATADIR%%/reports/blackremovereport.txt %%DATADIR%%/reports/blackreport.txt %%DATADIR%%/reports/blockreport_html.txt %%DATADIR%%/reports/blockreport_sub.txt %%DATADIR%%/reports/blockreport_text.txt %%DATADIR%%/reports/blockreportfile.txt %%DATADIR%%/reports/helpreport.txt %%DATADIR%%/reports/notspamreport.txt %%DATADIR%%/reports/npremovereport.txt %%DATADIR%%/reports/npreport.txt %%DATADIR%%/reports/redremovereport.txt %%DATADIR%%/reports/redreport.txt %%DATADIR%%/reports/slremovereport.txt %%DATADIR%%/reports/slreport.txt %%DATADIR%%/reports/spamreport.txt %%DATADIR%%/reports/virusreport.txt %%DATADIR%%/reports/whiteremovereport.txt %%DATADIR%%/reports/whitereport.txt %%DATADIR%%/stat.pl %%PORTDOCS%%%%DOCSDIR%%/Legacy - ASSP Documentation.htm %%PORTDOCS%%%%DOCSDIR%%/Regular Expression Tutorial.htm %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm %%DATADIR%%/reports @dirrm %%DATADIR%%/images @dirrm %%DATADIR%%/files @dirrm %%DATADIR%% @dirrmtry etc/periodic/daily @dirrmtry etc/periodic @unexec rm %%ASSP_HOME%%/logs @unexec rm %%ASSP_HOME%%/reports @unexec rm %%ASSP_HOME%%/images @unexec rm %%ASSP_HOME%%/files @unexec rmdir %%ASSP_HOME%% 2>/dev/null || true @unexec if [ -d %%ASSP_HOME%% ]; then echo "If you are deinstalling ASSP completely, remove the %%ASSP_HOME%% directory."; fi @unexec rmdir %%ASSP_LOG%% 2>/dev/null || true @unexec if [ -d %%ASSP_LOG%% ]; then echo "If you are deinstalling ASSP completely, remove the %%ASSP_LOG%% directory."; fi @unexec echo "If you are deinstalling ASSP completely, delete the ASSP user and group." Property changes on: head/mail/assp/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.19 \ No newline at end of property +1.20 \ No newline at end of property