diff options
author | edwin <edwin@FreeBSD.org> | 2006-01-05 08:37:23 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2006-01-05 08:37:23 +0800 |
commit | f34e528b12e1545bf063090bfa0716a7b33543e6 (patch) | |
tree | 9e890f3d78c620df54fe3134035ab68f3b59971d /www | |
parent | 16439740e4c579291f1621254e74c00f06a35334 (diff) | |
download | freebsd-ports-graphics-f34e528b12e1545bf063090bfa0716a7b33543e6.tar.gz freebsd-ports-graphics-f34e528b12e1545bf063090bfa0716a7b33543e6.tar.zst freebsd-ports-graphics-f34e528b12e1545bf063090bfa0716a7b33543e6.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 f300c370544..c86d8dbb57f 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 83e5061d06f..0c2c2f2bd1b 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%% |