Add ebuild for media-video/subdl live version
(Portage version: 2.2.20/hg/Linux x86_64, unsigned Manifest commit)
#!/sbin/runscript
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
PIDFILE=${PIDFILE:=/var/run/xib-bot.pid}
CONF=${CONF:=/etc/xib-bot/config.xml}
LOGFILE=${LOGFILE:=/var/log/xib-bot.log}
STARTFILE={STARTFILE:=/usr/lib/python2.7/site-package/xib-bot/start_bots_from_xml_config.py}
depend() {
need net
}
start() {
ebegin "Starting ${SVCNAME}"
start-stop-daemon --start --exec "$STARTFILE" \
-1 ${LOGFILE} -2 ${LOGFILE} \
-m --pidfile "${PIDFILE}" -b -- "${CONF}"
eend $?
}
stop() {
ebegin "Stopping ${SVCNAME}"
start-stop-daemon --stop --exec "$STARTFILE" \
--pidfile "${PIDFILE}"
}