-DIST ventrilo_srv-2.3.1-Linux-i386.tar.gz 166862 BLAKE2B 6eb4c55088d2aa6c9c7da0973f96dc849c9b0a93994206ed7ffcf2abdcce3fa73f0bead50158fc74c9275bfc7964826ce3b22328aaf0d73434a1185e3ca6b34e SHA512 01e8bce092f8b1ef0f08e736040871e221f4e039d21671d451abfcaf077be104e1f3488b90661e4895118d971f5e56040a01290734a02a4d5e67d183dc91cd5d
DIST ventrilo_srv-3.0.3-Linux-i386.tar.gz 211494 BLAKE2B e75fba4c9f660de84913728aa0ad08af65b07004368640e47810110c0f694634d00421226accd904f23e2141e6be849da31b3604fe441f6ad610db2a1eb58147 SHA512 ac4b38d7ee5cb66b88507e5cfb810d28b98252dfbabdb8d3777ae4b4dfd7a793ae8e0ee0a4d3a03cf7d0d1b1b34162e5f026c7217d296201e48607e44f04e79f
+++ /dev/null
-#!/sbin/openrc-run
-
-depend() {
- # the daemon needs the internet to function
- # Not sure if net is needed to start but it is required for it to work properly.
- need net
-}
-
-start() {
- # display to the user what you're doing
- ebegin "Starting Ventrilo VoIP Server"
- nice -n ${NICE} /opt/ventrilo-server/ventrilo_srv -f/opt/ventrilo-server/ventrilo_srv -d
- eend $?
-}
-
-stop() {
- # display a message to the user
- ebegin "Stopping Ventrilo VoIP Server"
- start-stop-daemon --stop --pidfile /opt/ventrilo-server/ventrilo_srv.pid
- eend $?
-}
-
+++ /dev/null
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-IUSE=""
-DESCRIPTION="The Ventrilo Voice Communication Server"
-HOMEPAGE="http://www.ventrilo.com/"
-SRC_URI="ventrilo_srv-${PV}-Linux-i386.tar.gz"
-
-LICENSE="ventrilo"
-SLOT="0"
-KEYWORDS="-* x86 amd64"
-RESTRICT="fetch"
-
-S=${WORKDIR}
-
-RDEPEND="sys-libs/glibc"
-DEPEND=""
-
-QA_PRESTRIPPED="opt/ventrilo-server/ventrilo_srv
- opt/ventrilo-server/ventrilo_status"
-
-pkg_nofetch() {
- einfo "Please visit http://www.ventrilo.com/download.php"
- einfo "and download the Linux i386 - 32bit ${PV} server."
- einfo "Just save it in ${DISTDIR} !"
-}
-
-src_install() {
- exeinto /opt/ventrilo-server
- doexe ventrilo_{srv,status}
-
- newinitd "${FILESDIR}"/init.d.ventrilo ventrilo
- newconfd "${FILESDIR}"/conf.d.ventrilo ventrilo
-
- insinto /opt/ventrilo-server
- doins ventrilo_srv.ini
-
- dohtml ventrilo_srv.htm
-}