# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 # $Id: Portfile 84550 2011-09-27 21:05:11Z snc@macports.org $ PortSystem 1.0 name dspam version 3.9.0 categories mail net maintainers yahoo.com:compconsultant description Scalable, open-source statistical anti-spam filter long_description Open-source anti-spam filter with multiple algorithms and \ useful admin tools and cgi quarantine interface. homepage http://dspam.sourceforge.net/ platforms darwin freebsd master_sites sourceforge checksums md5 10d092b57d628d8c91655fee5dc0d0cd \ sha1 b238f076f67866b5450ae9b8329857b4e2d83dd1 \ rmd160 cbde359e4e846e8be352c087c4af46148e685761 configure.args --sysconfdir='${prefix}/etc' \ --mandir='${prefix}/share/man' \ --with-logdir=${prefix}/var/log/dspam \ --enable-daemon destroot.keepdirs ${destroot}${prefix}/var/log/dspam variant vpopmail { configure.args-append --with-dspam-home-owner=vpopmail \ --with-dspam-home-group=vchkpw \ --with-dspam-owner=vpopmail \ --with-dspam-group=vchkpw depends_lib port:vpopmail } variant mysql5 conflicts postgres sqlite { depends_lib path:bin/mysql_config5:mysql5 configure.args-append --with-storage-driver=mysql_drv \ --with-mysql-includes=${prefix}/include/mysql5/mysql \ --with-mysql-libraries=${prefix}/lib/mysql5/mysql \ --enable-preferences-extension \ --enable-virtual-users } variant sqlite conflicts postgres mysql5 { depends_lib port:sqlite3 configure.args-append --with-sqlite-libaries=${prefix}/lib } variant postgres conflicts sqlite mysql5 { depends_lib port:postgresql80 configure.args-append --with-storage-driver=pgsql_drv \ --with-pgsql-includes=${prefix}/include/pgsql8 \ --with-pgsql-libraries=${prefix}/lib/pgsql8 } post-destroot { file mkdir ${destroot}${prefix}/var/dspam/samples file mkdir ${destroot}${prefix}/share/doc/dspam file mkdir ${destroot}${prefix}/var/dspam/mysql file mkdir ${destroot}${prefix}/var/dspam/pgsql file mkdir ${destroot}${prefix}/var/dspam/sqlite file mkdir ${destroot}${prefix}/var/dspam/webui file mkdir ${destroot}${prefix}/var/dspam/webui/cgi-bin file mkdir ${destroot}${prefix}/var/dspam/webui/htdocs file copy ${worksrcpath}/README ${destroot}${prefix}/share/doc/dspam/ file copy ${worksrcpath}/UPGRADING ${destroot}${prefix}/share/doc/dspam/ system "cp -R ${worksrcpath}/webui/cgi-bin/* ${destroot}${prefix}/var/dspam/webui/cgi-bin/" system "rm ${destroot}${prefix}/var/dspam/webui/cgi-bin/Make*" system "cp -R ${worksrcpath}/webui/htdocs/* ${destroot}${prefix}/var/dspam/webui/htdocs/" system "rm ${destroot}${prefix}/var/dspam/webui/htdocs/Make*" file copy ${worksrcpath}/scripts/train.pl ${destroot}${prefix}/var/dspam/samples/ system "cp ${worksrcpath}/txt/*.txt ${destroot}${prefix}/var/dspam/samples/" system "cp ${worksrcpath}/doc/*.txt ${destroot}${prefix}/share/doc/dspam/" system "cp -R ${worksrcpath}/src/tools.mysql_drv/*sql ${destroot}${prefix}/var/dspam/mysql" system "cp -R ${worksrcpath}/src/tools.pgsql_drv/*sql ${destroot}${prefix}/var/dspam/pgsql" system "cp -R ${worksrcpath}/src/tools.sqlite_drv/*sql ${destroot}${prefix}/var/dspam/sqlite" if {[variant_isset vpopmail]} { system "chown -R vpopmail:vchkpw ${destroot}${prefix}/var/dspam" system "chown -R vpopmail:vchkpw ${destroot}${prefix}/var/log/dspam" } }