diff options
author | Beech Rintoul <beech@FreeBSD.org> | 2008-01-02 22:12:07 +0000 |
---|---|---|
committer | Beech Rintoul <beech@FreeBSD.org> | 2008-01-02 22:12:07 +0000 |
commit | 73c40690924c4c7f0b389418fe0638fc4e0cbf4c (patch) | |
tree | 5e4620209eee18e0675dd132f9a80d0b18a697e7 /mail/assp | |
parent | - Update to 1.3.3c (diff) |
- Add missing port dependency
- Bump portrevision
PR: ports/119142
Submitted by: J.R. Oldroyd <fbsd@opal.com>
Approved by: linimon (mentor)
Diffstat (limited to 'mail/assp')
-rw-r--r-- | mail/assp/Makefile | 8 | ||||
-rw-r--r-- | mail/assp/pkg-plist | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/mail/assp/Makefile b/mail/assp/Makefile index f0dbe493bc0f..8ee4d10d9745 100644 --- a/mail/assp/Makefile +++ b/mail/assp/Makefile @@ -7,6 +7,7 @@ PORTNAME= assp PORTVERSION= 1.3.3.8 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= SF DISTNAME= ${PORTNAME:U}_${PORTVERSION}-Install @@ -70,7 +71,8 @@ OPTIONS= EMVALID "RFC822 recipient address validator" 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 + MYSQL "Use MySQL db to store white/red/delaylists" off \ + SIMPLE "Use procedural Web Page interfaces" on WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/${PORTNAME:U}_${PORTVERSION}-Install/${PORTNAME:U} @@ -118,6 +120,10 @@ RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS RUN_DEPENDS+= ${SITE_PERL}/Tie/RDBM.pm:${PORTSDIR}/databases/p5-Tie-DBI .endif +.if !defined(WITHOUT_SIMPLE) +RUN_DEPENDS+= ${SITE_PERL}/LWP/Simple.pm:${PORTSDIR}/www/p5-libwww +.endif + EXTRACT_AFTER_ARGS= -d ${PORTNAME}-${PORTVERSION} post-patch: diff --git a/mail/assp/pkg-plist b/mail/assp/pkg-plist index 8dbbe3fd4213..e7e362d45716 100644 --- a/mail/assp/pkg-plist +++ b/mail/assp/pkg-plist @@ -54,4 +54,4 @@ sbin/assplog @unexec rm -f %D%%ASSP_HOME%%/images 2>/dev/null || true @unexec rm -f %D%%ASSP_HOME%%/files 2>/dev/null || true @unexec rmdir %D%%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 if [ -d %D%%ASSP_HOME%% ]; then echo "If you are deinstalling ASSP completely, remove the %D%%ASSP_HOME%% directory."; fi |