diff options
author | sumikawa <sumikawa@FreeBSD.org> | 2004-05-04 18:44:05 +0800 |
---|---|---|
committer | sumikawa <sumikawa@FreeBSD.org> | 2004-05-04 18:44:05 +0800 |
commit | cd07978c0dfb26a03ec72738e49b9959defdd100 (patch) | |
tree | 2a472b26b535d8aee76e01c8d3a607188e92e514 /www | |
parent | 7cf94e3489eeeebeac626beba1d8d798b9b63ab2 (diff) | |
download | freebsd-ports-gnome-cd07978c0dfb26a03ec72738e49b9959defdd100.tar.gz freebsd-ports-gnome-cd07978c0dfb26a03ec72738e49b9959defdd100.tar.zst freebsd-ports-gnome-cd07978c0dfb26a03ec72738e49b9959defdd100.zip |
rcNG-fy.
Submitted by: nork
Diffstat (limited to 'www')
-rw-r--r-- | www/wwwoffle/Makefile | 11 | ||||
-rw-r--r-- | www/wwwoffle/files/wwwoffled.sh | 44 |
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" |