From c09a8f931dced1c662fde492a9969a9ca5634978 Mon Sep 17 00:00:00 2001 From: Michael Mason Date: Tue, 13 Oct 2009 12:33:07 +0000 Subject: unstable/gnump3d Initial Commit --- unstable/gnump3d/APKBUILD | 29 +++++++++++++++++++++++++++++ unstable/gnump3d/gnump3d.confd | 6 ++++++ unstable/gnump3d/gnump3d.initd | 37 +++++++++++++++++++++++++++++++++++++ 3 files changed, 72 insertions(+) create mode 100644 unstable/gnump3d/APKBUILD create mode 100644 unstable/gnump3d/gnump3d.confd create mode 100644 unstable/gnump3d/gnump3d.initd (limited to 'unstable') diff --git a/unstable/gnump3d/APKBUILD b/unstable/gnump3d/APKBUILD new file mode 100644 index 00000000..b3674329 --- /dev/null +++ b/unstable/gnump3d/APKBUILD @@ -0,0 +1,29 @@ +# Contributor: Michael Mason +# Maintainer: Michael Mason +pkgname=gnump3d +pkgver=3.0 +pkgrel=0 +pkgdesc="A streaming server for MP3, OGG vorbis and other streamable files" +url="http://www.gnump3d.org/" +license="GPL-2" +depends="perl" +makedepends="" +install= +subpackages="$pkgname-doc" +source="http://savannah.gnu.org/download/gnump3d/$pkgname-$pkgver.tar.gz + gnump3d.confd + gnump3d.initd" + +build() { + cd "$srcdir"/$pkgname-$pkgver + + make PREFIX="$pkgdir" install + + install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname + install -m644 -D "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname + mv "$pkgdir"/usr/local "$pkgdir"-doc/ +} + +md5sums="d2b665c3267253cc8cae29659131b9b4 gnump3d-3.0.tar.gz +59f0286d4c943226a67ab7b7787547c6 gnump3d.confd +5202488dff1c7e6c6788fb00fb32f071 gnump3d.initd" diff --git a/unstable/gnump3d/gnump3d.confd b/unstable/gnump3d/gnump3d.confd new file mode 100644 index 00000000..1d6cf397 --- /dev/null +++ b/unstable/gnump3d/gnump3d.confd @@ -0,0 +1,6 @@ +# Set this to 0 to stop the init script from indexing your mp3s. +# It takes the longest on the first time, but after that, it only does +# updates. + +DO_INDEX=1 + diff --git a/unstable/gnump3d/gnump3d.initd b/unstable/gnump3d/gnump3d.initd new file mode 100644 index 00000000..43290ee3 --- /dev/null +++ b/unstable/gnump3d/gnump3d.initd @@ -0,0 +1,37 @@ +#!/sbin/runscript +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/www/viewcvs.gentoo.org/raw_cvs/gentoo-x86/media-sound/gnump3d/files/gnump3d.init.d,v 1.4 2008/06/03 14:52:33 beandog Exp $ + +opts="start stop index" + +depend() { + need net + after netmount nfsmount +} + +start() { + ebegin "Starting gnump3d" + + if [ ${DO_INDEX} -eq 1 ]; then + ebegin "Updating index of music files (may take a while for the first time)" + /usr/bin/gnump3d-index + eend $? + fi + + start-stop-daemon --start --quiet --exec /usr/bin/gnump3d2 --make-pidfile \ + --pidfile /var/run/gnump3d.pid --background -- --quiet + eend $? +} + +stop() { + ebegin "Stopping gnump3d" + start-stop-daemon --stop --quiet --pidfile /var/run/gnump3d.pid + eend $? +} + +index() { + ebegin "Indexing music files" + /usr/bin/gnump3d-index + eend $? +} -- cgit v1.2.3