diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2006-01-05 00:37:23 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2006-01-05 00:37:23 +0000 |
commit | 05ee30a9ba310cbacafd4015cc93180cc2478e79 (patch) | |
tree | b04e7074ff18edcda596c784edcea05987a754f5 /www | |
parent | 088b3c91ff234e20cf8c9346c1519ee07e2da78a (diff) | |
download | freebsd-ports-05ee30a9ba310cbacafd4015cc93180cc2478e79.zip |
[PATCH] www/wwwoffle: fix broken wwwoffled.sh
Fix broken wwwoffled.sh
PR: ports/91314
Submitted by: Andrey Slusar <anray@freebsd.org>
Diffstat (limited to 'www')
-rw-r--r-- | www/wwwoffle/Makefile | 1 | ||||
-rw-r--r-- | www/wwwoffle/files/wwwoffled.sh | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/www/wwwoffle/Makefile b/www/wwwoffle/Makefile index f300c370544d..c86d8dbb57f7 100644 --- a/www/wwwoffle/Makefile +++ b/www/wwwoffle/Makefile @@ -7,6 +7,7 @@ PORTNAME= wwwoffle PORTVERSION= 2.8e +PORTREVISION= 1 CATEGORIES= www ipv6 MASTER_SITES= http://www.gedanken.freeserve.co.uk/download-wwwoffle/ EXTRACT_SUFX= .tgz diff --git a/www/wwwoffle/files/wwwoffled.sh b/www/wwwoffle/files/wwwoffled.sh index 83e5061d06f1..0c2c2f2bd1b2 100644 --- a/www/wwwoffle/files/wwwoffled.sh +++ b/www/wwwoffle/files/wwwoffled.sh @@ -13,9 +13,9 @@ # # DO NOT CHANGE THESE DEFAULT VALUES HERE # -wwwoffled_enable="NO" -wwwoffled_flags="" -wwwoffled_pidfile="/var/run/wwwoffled.pid" +wwwoffled_enable=${wwwoffled_enable-"NO"} +wwwoffled_flags=${wwwoffled_flags-""} +wwwoffled_pidfile=${wwwoffled_pidfile-"/var/run/wwwoffled.pid"} wwwoffled_conffile="%%PREFIX%%/etc/wwwoffle.conf" . %%RC_SUBR%% |