summaryrefslogtreecommitdiff
path: root/www/wwwoffle
diff options
context:
space:
mode:
authorMunechika SUMIKAWA <sumikawa@FreeBSD.org>2004-05-04 10:44:05 +0000
committerMunechika SUMIKAWA <sumikawa@FreeBSD.org>2004-05-04 10:44:05 +0000
commit81a8e79faea160a06d8f8b504bbe2459ca78f893 (patch)
tree35c81774103eeb0fe92f0f7ae2e7a7dfe1cdd47f /www/wwwoffle
parentFix build on recent 5.x. (diff)
rcNG-fy.
Submitted by: nork
Notes
Notes: svn path=/head/; revision=108360
Diffstat (limited to 'www/wwwoffle')
-rw-r--r--www/wwwoffle/Makefile11
-rw-r--r--www/wwwoffle/files/wwwoffled.sh44
2 files changed, 39 insertions, 16 deletions
diff --git a/www/wwwoffle/Makefile b/www/wwwoffle/Makefile
index fb912f644769..f8bf46a01f33 100644
--- a/www/wwwoffle/Makefile
+++ b/www/wwwoffle/Makefile
@@ -7,6 +7,7 @@
PORTNAME= wwwoffle
PORTVERSION= 2.8b
+PORTREVISION= 1
CATEGORIES= www ipv6
MASTER_SITES= http://www.gedanken.freeserve.co.uk/download-wwwoffle/
EXTRACT_SUFX= .tgz
@@ -16,6 +17,7 @@ COMMENT= A caching proxy server for HTTP and FTP designed for dial-up hosts
USE_PERL5= yes
USE_GMAKE= yes
+USE_RC_SUBR= yes
# $SPOOL seems like a common name which could be used for other things, so
# use $WWWOFFLE_SPOOL as the overriding setting.
@@ -28,6 +30,8 @@ CONFIGURE_ENV= LIBS=-lmd
CONFIGURE_ARGS= --with-confdir=${PREFIX}/etc --with-ipv6 \
--with-spooldir=${WWWOFFLE_SPOOL}
+RC_SCRIPTS_SUB= PREFIX=${PREFIX} RC_SUBR=${RC_SUBR}
+
MAN1= wwwoffle.1
MAN5= wwwoffle.conf.5
MAN8= wwwoffled.8
@@ -43,12 +47,15 @@ post-configure:
.endif
+post-build:
+ @${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \
+ ${FILESDIR}/smartd.sh > ${WRKDIR}/wwwoffled.sh
+
post-install:
@${INSTALL_SCRIPT} ${WRKSRC}/conf/upgrade-config-2.5-2.6.pl ${WWWOFFLE_SPOOL}
@${INSTALL_SCRIPT} ${WRKSRC}/conf/upgrade-config-2.x-2.5.pl ${WWWOFFLE_SPOOL}
@${INSTALL_SCRIPT} ${WRKSRC}/conf/upgrade-config.pl ${WWWOFFLE_SPOOL}
- @${SED} 's@%PREFIX%@${LOCALBASE}@' ${FILESDIR}/wwwoffled.sh > ${PREFIX}/etc/rc.d/wwwoffled.sh
- @${CHMOD} +x ${PREFIX}/etc/rc.d/wwwoffled.sh
+ @${INSTALL_SCRIPT} ${WRKDIR}/wwwoffled.sh ${PREFIX}/etc/rc.d/wwwoffled.sh
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
diff --git a/www/wwwoffle/files/wwwoffled.sh b/www/wwwoffle/files/wwwoffled.sh
index f57aef7bc533..7fb48f567080 100644
--- a/www/wwwoffle/files/wwwoffled.sh
+++ b/www/wwwoffle/files/wwwoffled.sh
@@ -1,17 +1,33 @@
#!/bin/sh
+# $FreeBSD$
-case $1 in
-start)
- [ -x %PREFIX%/sbin/wwwoffled ] && \
- %PREFIX%/sbin/wwwoffled >/dev/null 2>&1 && echo -n ' wwwoffled'
- ;;
-stop)
- killall wwwoffled && echo -n ' wwwoffled'
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- exit 64
- ;;
-esac
+# PROVIDE: wwwoffled
+# REQUIRE: DAEMON
+# BEFORE: LOGIN
+# KEYWORD: FreeBSD shutdown
-exit 0
+# Define these wwwoffled_* variables in one of these files:
+# /etc/rc.conf
+# /etc/rc.conf.local
+# /etc/rc.conf.d/wwwoffled
+#
+# DO NOT CHANGE THESE DEFAULT VALUES HERE
+#
+wwwoffled_enable="NO"
+wwwoffled_flags=""
+wwwoffled_pidfile="/var/run/wwwoffled.pid"
+wwwoffled_conffile="%%PREFIX%%/etc/wwwoffle.conf"
+
+. %%RC_SUBR%%
+
+name="wwwoffled"
+rcvar=`set_rcvar`
+command="%%PREFIX%%/sbin/wwwoffled"
+
+load_rc_config $name
+
+pidfile="${wwwoffled_pidfile}"
+command_args="-p > ${pidfile} 2> /dev/null"
+required_files="${wwwoffled_conffile}"
+
+run_rc_command "$1"