diff options
Diffstat (limited to 'audio/darkice')
-rw-r--r-- | audio/darkice/Makefile | 1 | ||||
-rw-r--r-- | audio/darkice/files/darkice.in | 19 |
2 files changed, 13 insertions, 7 deletions
diff --git a/audio/darkice/Makefile b/audio/darkice/Makefile index c5e0c53..60cf8f4 100644 --- a/audio/darkice/Makefile +++ b/audio/darkice/Makefile @@ -8,6 +8,7 @@ PORTNAME= darkice PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= audio net MASTER_SITES= GOOGLE_CODE diff --git a/audio/darkice/files/darkice.in b/audio/darkice/files/darkice.in index 8036797..5a25593 100644 --- a/audio/darkice/files/darkice.in +++ b/audio/darkice/files/darkice.in @@ -1,14 +1,18 @@ #!/bin/sh -# + # $FreeBSD$ # - # PROVIDE: darkice -# REQUIRE: DAEMON -# BEFORE: LOGIN +# REQUIRE: LOGIN # KEYWORD: SHUTDOWN +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# darkice_enable (bool): Set to NO by default. +# Set it to YES to enable darkice. -. "/etc/rc.subr" +. /etc/rc.subr name="darkice" rcvar=`set_rcvar` @@ -18,8 +22,9 @@ command_args="& 1>/dev/null" required_files="%%ETCDIR%%.cfg" # read configuration and set defaults -load_rc_config "$name" +load_rc_config $name + : ${darkice_enable="NO"} : ${darkice_flags="-c ${required_files}"} -run_rc_command "$1" +run_rc_command $1 |