mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
347 lines
11 KiB
Makefile
347 lines
11 KiB
Makefile
# Created by: Janky Jay <ek@purplehat.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= maia
|
|
DISTVERSION= 1.0.3-${SVNREVISION}
|
|
PORTREVISION= 5
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.purplehat.org/downloads/maia/
|
|
|
|
MAINTAINER= ek@purplehat.org
|
|
COMMENT= Web-based management system based on amavisd-new and SpamAssassin
|
|
|
|
RUN_DEPENDS= p5-Unix-Syslog>=0.94:${PORTSDIR}/sysutils/p5-Unix-Syslog \
|
|
p5-MIME-Tools>=4.116:${PORTSDIR}/mail/p5-MIME-Tools \
|
|
p5-Convert-TNEF>=0.08:${PORTSDIR}/converters/p5-Convert-TNEF \
|
|
p5-Convert-UUlib>=1.08,1:${PORTSDIR}/converters/p5-Convert-UUlib \
|
|
p5-Net-CIDR-Lite>=0.18:${PORTSDIR}/net/p5-Net-CIDR-Lite \
|
|
p5-forks>=0.34:${PORTSDIR}/devel/p5-forks \
|
|
p5-Archive-Zip>=0.10:${PORTSDIR}/archivers/p5-Archive-Zip \
|
|
p5-IO-stringy>=1.203:${PORTSDIR}/devel/p5-IO-stringy \
|
|
p5-IO-Socket-INET6>=1.27:${PORTSDIR}/net/p5-IO-Socket-INET6 \
|
|
p5-Text-CSV>=1.02:${PORTSDIR}/textproc/p5-Text-CSV \
|
|
p5-Data-UUID>=1.148:${PORTSDIR}/devel/p5-Data-UUID \
|
|
p5-Template-Toolkit>=2.13:${PORTSDIR}/www/p5-Template-Toolkit \
|
|
p5-Net-Server>=0.93:${PORTSDIR}/net/p5-Net-Server
|
|
|
|
# SVN source: https://www.maiamailguard.com/svn/branches/1.0
|
|
SVNREVISION= r1575
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-1.0-${SVNREVISION}
|
|
USES= perl5
|
|
USE_PERL5= run
|
|
NO_BUILD= yes
|
|
|
|
DOCS= LICENSE README maiad.conf.dist maia-mysql.sql maia-pgsql.sql maia.conf.dist
|
|
|
|
USERS= vscan
|
|
GROUPS= vscan
|
|
MAIAHOME= /var/maiad
|
|
MAIAQUARANTINE?= /var/maiad/virusmails
|
|
PEAR_DIR?= ${LOCALBASE}/share/pear
|
|
PLIST_SUB+= USERS="${USERS}" GROUPS="${GROUPS}" WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}"
|
|
|
|
OPTIONS_DEFINE= APACHE LIGHTTPD WEBHOST MYSQL MYSQLSERVER PGSQL PGSQLSERVER DOVECOT \
|
|
POSTFIX PFA FUZZYOCR CLAMAV SPAMASSASSIN BDB ALTERMIME CRYPT \
|
|
IPCOUNTRY DOMAINKEYS SPF DKIM FILE RAR ARJ UNARJ LHA ARC NOMARCH CAB \
|
|
RPM ZOO UNZOO LZOP FREEZE P7ZIP TNEF DOCS
|
|
OPTIONS_DEFAULT= MYSQL MYSQLSERVER DOVECOT POSTFIX CLAMAV SPAMASSASSIN BDB IPCOUNTRY \
|
|
DOMAINKEYS SPF DKIM FILE UNRAR ARJ LHA ARC CAB RPM ZOO FREEZE P7ZIP
|
|
APACHE_DESC= Use Apache web server
|
|
LIGHTTPD_DESC= Use LighTTPD web server
|
|
WEBHOST_DESC= PHP, PEAR, etc... for Maia web interface
|
|
MYSQL_DESC= Use MySQL datebase
|
|
MYSQLSERVER_DESC= Install MySQL Server
|
|
PGSQL_DESC= Use PgSQL database
|
|
PGSQLSERVER_DESC= Install PGSQL Server
|
|
DOVECOT_DESC= Use Dovecot IMAP/POP3
|
|
POSTFIX_DESC= Use Postfix MTA
|
|
PFA_DESC= Use Postfixadmin
|
|
FUZZYOCR_DESC= Use FuzzyOcr
|
|
CLAMAV_DESC= Use ClamAV anti-virus
|
|
SPAMASSASSIN_DESC= Use SpamAssassin
|
|
BDB_DESC= Use BerkeleyDB
|
|
ALTERMIME_DESC= Use AlterMime
|
|
CRYPT_DESC= Encryption support
|
|
IPCOUNTRY_DESC= SpamAssassin IP Country plugin
|
|
DOMAINKEYS_DESC= SpamAssassin DomainKey plugin
|
|
SPF_DESC= SpamAssassin SPF plugin
|
|
DKIM_DESC= SpamAssassin DKIM plugin
|
|
FILE_DESC= Use newer file(1) utility from ports
|
|
RAR_DESC= RAR support with archivers/rar
|
|
UNRAR_DESC= RAR support with archivers/unrar
|
|
ARJ_DESC= ARJ support with archivers/arj
|
|
UNARJ_DESC= ARJ support with archivers/unarj
|
|
LHA_DESC= LHA support with archivers/lha
|
|
ARC_DESC= ARC support with archivers/arc
|
|
NOMARCH_DESC= ARC support with archivers/nomarch
|
|
CAB_DESC= CAB support with archivers/cabextract
|
|
RPM_DESC= RPM support with archivers/rpm2cpio
|
|
ZOO_DESC= ZOO support with archivers/zoo
|
|
UNZOO_DESC= ZOO support with archivers/unzoo
|
|
LZOP_DESC= LZOP support with archivers/lzop
|
|
FREEZE_DESC= FREEZE support with archivers/freeze
|
|
P7ZIP_DESC= P7ZIP support with archivers/p7zip
|
|
TNEF_DESC= Add external tnef decoder
|
|
|
|
SUB_FILES= maiad pkg-message
|
|
SUB_LIST+= USERS=${USERS} \
|
|
GROUPS=${GROUPS} \
|
|
MAIAHOME=${MAIAHOME} \
|
|
MAIAQUARANTINE=${MAIAQUARANTINE} \
|
|
ETCDIR=${ETCDIR}
|
|
USE_RC_SUBR+= maiad
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
# Code is a bit fiddly here; we can't use USE variables after pre.mk so we have
|
|
# to duplicate some WITH_ parts like WEBHOST that use pre.mk vars as well as
|
|
# setting USE_ variables. C'est la vie.
|
|
|
|
.if ${PORT_OPTIONS:MAPACHE}
|
|
USE_APACHE_RUN= 22+
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MWEBHOST}
|
|
USE_PHP= bcmath ctype dom gettext hash iconv imap json mbstring \
|
|
mcrypt pdo pdo_sqlite posix session simplexml sockets \
|
|
sqlite3 tokenizer xml wddx xmlreader xmlwriter xmlrpc
|
|
RUN_DEPENDS+= ${PEAR_DIR}/Mail/mime.php:${PORTSDIR}/mail/pear-Mail_Mime \
|
|
${PEAR_DIR}/Mail/mimeDecode.php:${PORTSDIR}/mail/pear-Mail_mimeDecode \
|
|
${PEAR_DIR}/DB.php:${PORTSDIR}/databases/pear-DB \
|
|
${PEAR_DIR}/Pager/Pager.php:${PORTSDIR}/devel/pear-Pager \
|
|
${PEAR_DIR}/Net/Socket.php:${PORTSDIR}/net/pear-Net_Socket \
|
|
${PEAR_DIR}/Net/SMTP.php:${PORTSDIR}/net/pear-Net_SMTP \
|
|
${PEAR_DIR}/Log.php:${PORTSDIR}/sysutils/pear-Log \
|
|
${PEAR_DIR}/HTMLPurifier.php:${PORTSDIR}/devel/pear-htmlpurifier \
|
|
${PEAR_DIR}/Net/IMAP.php:${PORTSDIR}/mail/pear-Net_IMAP \
|
|
${PEAR_DIR}/Net/POP3.php:${PORTSDIR}/net/pear-Net_POP3 \
|
|
${PEAR_DIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL \
|
|
${PEAR_DIR}/Image/Color.php:${PORTSDIR}/graphics/pear-Image_Color \
|
|
${PEAR_DIR}/Image/Canvas.php:${PORTSDIR}/graphics/pear-Image_Canvas \
|
|
${PEAR_DIR}/Image/Graph.php:${PORTSDIR}/graphics/pear-Image_Graph \
|
|
${PEAR_DIR}/Numbers/Roman.php:${PORTSDIR}/textproc/pear-Numbers_Roman \
|
|
${PEAR_DIR}/Numbers/Words.php:${PORTSDIR}/textproc/pear-Numbers_Words \
|
|
${LOCALBASE}/share/smarty/Smarty.class.php:${PORTSDIR}/www/smarty2
|
|
PLIST_SUB+= WEBHOST=""
|
|
.else
|
|
PLIST_SUB+= WEBHOST="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
USE_MYSQL= yes
|
|
USE_PHP+= mysql mysqli
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPGSQL}
|
|
USE_PGSQL= yes
|
|
USE_PHP+= pgsql
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MLIGHTTPD}
|
|
RUN_DEPENDS+= lighttpd:${PORTSDIR}/www/lighttpd
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
RUN_DEPENDS+= p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MMYSQLSERVER}
|
|
USE_MYSQL= server
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPGSQL}
|
|
RUN_DEPENDS+= p5-DBD-Pg>=0:${PORTSDIR}/databases/p5-DBD-Pg
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPGSQLSERVER}
|
|
USE_PGSQL= server
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDOVECOT}
|
|
RUN_DEPENDS+= dovecot:${PORTSDIR}/mail/dovecot
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPOSTFIX}
|
|
RUN_DEPENDS+= postfix:${PORTSDIR}/mail/postfix
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPFA}
|
|
RUN_DEPENDS+= ${LOCALBASE}/www/postfixadmin/config.inc.php:${PORTSDIR}/mail/postfixadmin
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MFUZZYOCR}
|
|
RUN_DEPENDS+= p5-FuzzyOcr-devel>=0:${PORTSDIR}/mail/p5-FuzzyOcr-devel
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MCLAMAV}
|
|
RUN_DEPENDS+= clamd:${PORTSDIR}/security/clamav
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSPAMASSASSIN}
|
|
RUN_DEPENDS+= spamassassin>=0:${PORTSDIR}/mail/spamassassin
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MBDB}
|
|
RUN_DEPENDS+= p5-BerkeleyDB>=0:${PORTSDIR}/databases/p5-BerkeleyDB
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MALTERMIME}
|
|
RUN_DEPENDS+= altermime:${PORTSDIR}/mail/altermime
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MCRYPT}
|
|
RUN_DEPENDS+= p5-Crypt-Blowfish>=0:${PORTSDIR}/security/p5-Crypt-Blowfish \
|
|
p5-Crypt-OpenSSL-RSA>=0:${PORTSDIR}/security/p5-Crypt-OpenSSL-RSA \
|
|
p5-Crypt-CBC>=0:${PORTSDIR}/security/p5-Crypt-CBC
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MIPCOUNTRY}
|
|
RUN_DEPENDS+= p5-IP-Country>=0:${PORTSDIR}/net/p5-IP-Country
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDOMAINKEYS}
|
|
RUN_DEPENDS+= p5-Mail-DomainKeys>=0:${PORTSDIR}/mail/p5-Mail-DomainKeys
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSPF}
|
|
RUN_DEPENDS+= p5-Mail-SPF>=0:${PORTSDIR}/mail/p5-Mail-SPF
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDKIM}
|
|
RUN_DEPENDS+= p5-Mail-DKIM>=0:${PORTSDIR}/mail/p5-Mail-DKIM
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MFILE}
|
|
# security fix, file > 4.21 needed
|
|
RUN_DEPENDS+= file>=4.21:${PORTSDIR}/sysutils/file
|
|
.endif
|
|
|
|
# archviers/rar is a 32-bit binary port, we don't want the install to fail
|
|
# at that port, therefore we will block instantly here if the platform does
|
|
# not suit rar.
|
|
.if ${PORT_OPTIONS:MRAR}
|
|
IA32_BINARY_PORT= yes
|
|
RUN_DEPENDS+= rar:${PORTSDIR}/archivers/rar
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MUNRAR}
|
|
RUN_DEPENDS+= unrar:${PORTSDIR}/archivers/unrar
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MARJ}
|
|
RUN_DEPENDS+= arj:${PORTSDIR}/archivers/arj
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MUNARJ}
|
|
RUN_DEPENDS+= unarj:${PORTSDIR}/archivers/unarj
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MLHA}
|
|
RUN_DEPENDS+= lha:${PORTSDIR}/archivers/lha
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MARC}
|
|
RUN_DEPENDS+= arc:${PORTSDIR}/archivers/arc
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNOMARCH}
|
|
RUN_DEPENDS+= nomarch:${PORTSDIR}/archivers/nomarch
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MCAB}
|
|
RUN_DEPENDS+= cabextract:${PORTSDIR}/archivers/cabextract
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MRPM}
|
|
RUN_DEPENDS+= rpm2cpio.pl:${PORTSDIR}/archivers/rpm2cpio
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MZOO}
|
|
# DOS condition in 2.10.1_2
|
|
RUN_DEPENDS+= zoo>=2.10.1_2:${PORTSDIR}/archivers/zoo
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MUNZOO}
|
|
RUN_DEPENDS+= unzoo>=4.4_1:${PORTSDIR}/archivers/unzoo
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MLZOP}
|
|
RUN_DEPENDS+= lzop:${PORTSDIR}/archivers/lzop
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MFREEZE}
|
|
RUN_DEPENDS+= unfreeze:${PORTSDIR}/archivers/freeze
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MP7ZIP}
|
|
RUN_DEPENDS+= 7zr:${PORTSDIR}/archivers/p7zip
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MTNEF}
|
|
RUN_DEPENDS+= tnef:${PORTSDIR}/converters/tnef
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
.for m in scripts/configtest.pl scripts/expire-quarantine-cache.pl \
|
|
scripts/generate-key.pl scripts/load-sa-rules.pl scripts/maiadbtool.pl \
|
|
scripts/process-quarantine.pl scripts/resend.pl scripts/send-quarantine-digests.pl \
|
|
scripts/send-quarantine-reminders.pl scripts/stats-snapshot.pl
|
|
@${REINPLACE_CMD} -e "s|/etc/maia/maia.conf|${ETCDIR}/maia.conf|" \
|
|
${WRKSRC}/${m}
|
|
.endfor
|
|
|
|
.for i in digest.tpl newuser.tpl reminder.tpl
|
|
${MV} ${WRKSRC}/templates/${i} ${WRKSRC}/templates/${i}.dist
|
|
.endfor
|
|
|
|
@${REINPLACE_CMD} -e "s|daemon_user = 'maia'|daemon_user = '${USERS}'|" \
|
|
-e "s|daemon_group = 'maia'|daemon_group = '${GROUPS}'|" \
|
|
-e "s|/var/lib/maia|${MAIAHOME}|" ${WRKSRC}/maiad.conf.dist
|
|
|
|
@${REINPLACE_CMD} -e "s|/etc/maia.conf|${ETCDIR}/maia.conf|" \
|
|
-e "s|username = 'maia'|username = '${USERS}'|" \
|
|
-e "s|/var/lib/maia|${DATADIR}|" \
|
|
-e "s|/usr/bin/sa-learn|${PREFIX}/bin/sa-learn|" \
|
|
-e "s|local_cf_dir = undef|local_cf_dir = '${ETCDIR}/mail/spamassassin'|" \
|
|
-e "s|system_rules_dir = undef|system_rules_dir = '/var/db/spamassassin'|" \
|
|
-e "s|user_rules_dir = undef|user_rules_dir = '${MAIAHOME}/.spamassassin'|" \
|
|
-e "s|template_dir = '/etc/maia/templates/'|template_dir = '${ETCDIR}/templates/'|" \
|
|
${WRKSRC}/maia.conf.dist
|
|
|
|
@${REINPLACE_CMD} -e "s|/etc/maia/maiad.conf|${ETCDIR}/maiad.conf|" \
|
|
-e "s|/var/lib/maia|${DATADIR}|" \
|
|
-e "s@'zoo'\]@['zoo','unzoo'] ]@" ${WRKSRC}/maiad
|
|
|
|
@${FIND} -E ${WRKSRC} -iregex '.*(bak|~)$$' -delete
|
|
|
|
do-install:
|
|
.if ${PORT_OPTIONS:MWEBHOST}
|
|
${MKDIR} -p ${STAGEDIR}${WWWDIR}
|
|
@cd ${WRKSRC}/php && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}
|
|
${CHOWN} ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}/themes/*/compiled
|
|
${LN} -s ${PREFIX}/share/smarty ${STAGEDIR}${WWWDIR}/libs/Smarty
|
|
.endif
|
|
${MKDIR} -p ${STAGEDIR}${DATADIR}
|
|
@cd ${WRKSRC}/scripts && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/scripts
|
|
${MKDIR} -p ${STAGEDIR}${ETCDIR}/templates
|
|
.for i in digest.tpl newuser.tpl reminder.tpl
|
|
${INSTALL} -m 644 ${WRKSRC}/templates/${i}.dist ${STAGEDIR}${ETCDIR}/templates
|
|
.endfor
|
|
${INSTALL_SCRIPT} ${WRKSRC}/maiad ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL} -m 644 ${WRKSRC}/maiad.conf.dist ${STAGEDIR}${ETCDIR}/maiad.conf.dist
|
|
${INSTALL} -m 644 ${WRKSRC}/maia.conf.dist ${STAGEDIR}${ETCDIR}/maia.conf.dist
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|