summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-03-17 09:08:36 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-03-17 09:08:36 +0000
commit695ca5341ec7b71cb349e1b80bb37524ff8a0cd3 (patch)
treedac6a4253a41358c053178be85d51eed24f00231 /testing
parentc2507ed590b8e0b92b1c3c4f5f2dcce7bc21ac7c (diff)
downloadaports-695ca5341ec7b71cb349e1b80bb37524ff8a0cd3.tar.bz2
aports-695ca5341ec7b71cb349e1b80bb37524ff8a0cd3.tar.xz
testing/gnump3d: removed from stable branch
Diffstat (limited to 'testing')
-rw-r--r--testing/gnump3d/APKBUILD29
-rw-r--r--testing/gnump3d/gnump3d.confd6
-rw-r--r--testing/gnump3d/gnump3d.initd37
3 files changed, 0 insertions, 72 deletions
diff --git a/testing/gnump3d/APKBUILD b/testing/gnump3d/APKBUILD
deleted file mode 100644
index b3674329..00000000
--- a/testing/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/testing/gnump3d/gnump3d.confd b/testing/gnump3d/gnump3d.confd
deleted file mode 100644
index 1d6cf397..00000000
--- a/testing/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/testing/gnump3d/gnump3d.initd b/testing/gnump3d/gnump3d.initd
deleted file mode 100644
index 43290ee3..00000000
--- a/testing/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 $?
-}