diff options
author | Michael Mason <ms13sp@gmail.com> | 2009-10-13 19:37:15 +0000 |
---|---|---|
committer | Michael Mason <ms13sp@gmail.com> | 2009-10-13 19:37:15 +0000 |
commit | 996f4062c5e06084b0412fb6dc003d5cf32cf1c0 (patch) | |
tree | f00c9af7306b9f7736e345f6cc1b1a1843f34637 /unstable | |
parent | 35f6a6f109983413f14d0fdb334be15bb39ad067 (diff) | |
download | aports-996f4062c5e06084b0412fb6dc003d5cf32cf1c0.tar.bz2 aports-996f4062c5e06084b0412fb6dc003d5cf32cf1c0.tar.xz |
unstable/gnump3d moved to testing
Diffstat (limited to 'unstable')
-rw-r--r-- | unstable/gnump3d/APKBUILD | 29 | ||||
-rw-r--r-- | unstable/gnump3d/gnump3d.confd | 6 | ||||
-rw-r--r-- | unstable/gnump3d/gnump3d.initd | 37 |
3 files changed, 0 insertions, 72 deletions
diff --git a/unstable/gnump3d/APKBUILD b/unstable/gnump3d/APKBUILD deleted file mode 100644 index b36743294..000000000 --- a/unstable/gnump3d/APKBUILD +++ /dev/null @@ -1,29 +0,0 @@ -# Contributor: Michael Mason <ms13sp@gmail.com> -# Maintainer: Michael Mason <ms13sp@gmail.com> -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 deleted file mode 100644 index 1d6cf397d..000000000 --- a/unstable/gnump3d/gnump3d.confd +++ /dev/null @@ -1,6 +0,0 @@ -# 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 deleted file mode 100644 index 43290ee30..000000000 --- a/unstable/gnump3d/gnump3d.initd +++ /dev/null @@ -1,37 +0,0 @@ -#!/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 $? -} |