aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2022-11-14 08:37:29 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2022-11-14 08:38:14 +0000
commit9b8077fb4653dafeb71f0e2c80dd418406d5943c (patch)
treea59f2d2ba98636f37ee384455a4f2e6d99e51e06
parentf8395d99410d0a9b7b3d92b9624ec07f3b1d6e6c (diff)
downloadports-9b8077fb4653dafeb71f0e2c80dd418406d5943c.tar.gz
ports-9b8077fb4653dafeb71f0e2c80dd418406d5943c.zip
audio/gonic: add missing mandatory option in rc script
-rw-r--r--audio/gonic/Makefile2
-rw-r--r--audio/gonic/files/gonic.in4
2 files changed, 4 insertions, 2 deletions
diff --git a/audio/gonic/Makefile b/audio/gonic/Makefile
index bfa23d9ff9e4..42e669ba74df 100644
--- a/audio/gonic/Makefile
+++ b/audio/gonic/Makefile
@@ -1,6 +1,6 @@
PORTNAME= gonic
PORTVERSION= 0.14.0
-PORTREVISION= 4
+PORTREVISION= 5
DISTVERSIONPREFIX= v
CATEGORIES= audio net
diff --git a/audio/gonic/files/gonic.in b/audio/gonic/files/gonic.in
index c59253083c58..154f544c447d 100644
--- a/audio/gonic/files/gonic.in
+++ b/audio/gonic/files/gonic.in
@@ -15,6 +15,7 @@ load_rc_config "${name}"
# other variables:
# gonic_scan_interval
# gonic_music_path
+# gonic_podcast_path
: ${gonic_enable:="NO"}
: ${gonic_user:="gonic"}
@@ -22,11 +23,12 @@ load_rc_config "${name}"
: ${gonic_proxy_prefix:="/"}
: ${gonic_db_path:="/var/db/gonic/gonic.db"}
: ${gonic_listen_addr:="0.0.0.0:4747"}
+: ${gonic_cache_path:="/var/cache/gonic"}
pidfile=/var/run/gonic.pid
procname="%%PREFIX%%/bin/gonic"
command="/usr/sbin/daemon"
-command_args="-cf -p ${pidfile} ${procname} ${gonic_music_path:+-music-path=${gonic_music_path}} ${gonic_proxy_prefix:+-proxy-prefix=${gonic_proxy_prefix}} ${gonic_listen_addr:+-listen-addr=${gonic_listen_addr}} ${gonic_scan_interval:+-scan-interval=${gonic_scan_interval}} ${gonic_db_path:+-db-path=${gonic_db_path}} ${gonic_args}"
+command_args="-cf -p ${pidfile} ${procname} ${gonic_music_path:+-music-path=${gonic_music_path}} ${gonic_podcast_path:+-podcast-path=${gonic_podcast_path}} ${gonic_cache_path:+-cache-path=${gonic_cache_path}} ${gonic_proxy_prefix:+-proxy-prefix=${gonic_proxy_prefix}} ${gonic_listen_addr:+-listen-addr=${gonic_listen_addr}} ${gonic_scan_interval:+-scan-interval=${gonic_scan_interval}} ${gonic_db_path:+-db-path=${gonic_db_path}} ${gonic_args}"
gonic_startprecmd()
{