diff options
author | beech <beech@FreeBSD.org> | 2008-01-03 06:12:07 +0800 |
---|---|---|
committer | beech <beech@FreeBSD.org> | 2008-01-03 06:12:07 +0800 |
commit | ba1f397942d59b52f683773490ff51fa8a1a2a72 (patch) | |
tree | f09cf90999789da5939b3eec52c98de1ac209e47 /mail | |
parent | 01ab2fdc81b0fa98ce9b39dfaa4c56c185555cc0 (diff) | |
download | freebsd-ports-gnome-ba1f397942d59b52f683773490ff51fa8a1a2a72.tar.gz freebsd-ports-gnome-ba1f397942d59b52f683773490ff51fa8a1a2a72.tar.zst freebsd-ports-gnome-ba1f397942d59b52f683773490ff51fa8a1a2a72.zip |
- 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')
-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 |