a better version of radicale is in the sunrise overlay. it's also 0.6.4, but the ebuild is superior to this one.

This commit is contained in:
Manuel Friedli 2012-03-18 16:47:32 +00:00
parent 636a669822
commit e43617b37a
4 changed files with 0 additions and 139 deletions

View file

@ -1,26 +0,0 @@
#!/sbin/runscript
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
PIDFILE=/var/run/radicale.pid
depend() {
use net
need localmount
}
start() {
ebegin "Starting radicale"
start-stop-daemon --start --quiet --background \
--pidfile ${PIDFILE} --make-pidfile \
--exec /usr/bin/radicale -- --foreground
eend $?
}
stop() {
ebegin "Stopping radicale"
start-stop-daemon --stop --quiet \
--pidfile ${PIDFILE}
eend $?
}