radicale-0.5 is in the sunrise overlay, so we don't need this ebuild

anymore
This commit is contained in:
Manuel Friedli 2011-05-16 07:34:10 +00:00
parent ef2139f0b3
commit 70adb857c0
3 changed files with 0 additions and 73 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 $?
}