summaryrefslogtreecommitdiffstats
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
commit0d79a3f164c32cb52b88f1eef05d6dfdc5327162 (patch)
treebbdd4877baa38c91cb112da56d1d5c4b23f67df1
parentdf09700bb474df6a252ccf2d2995f9d31f53369f (diff)
downloadaports-0d79a3f164c32cb52b88f1eef05d6dfdc5327162.tar.bz2
aports-0d79a3f164c32cb52b88f1eef05d6dfdc5327162.tar.xz
testing/icecast: removed from stable branch
-rw-r--r--testing/icecast/APKBUILD32
-rw-r--r--testing/icecast/icecast.initd18
2 files changed, 0 insertions, 50 deletions
diff --git a/testing/icecast/APKBUILD b/testing/icecast/APKBUILD
deleted file mode 100644
index 73135371..00000000
--- a/testing/icecast/APKBUILD
+++ /dev/null
@@ -1,32 +0,0 @@
-# Contributor:
-# Maintainer:
-pkgname=icecast
-pkgver=2.3.2
-pkgrel=0
-pkgdesc="Open source media server"
-url="http://www.icecast.org"
-license="GPL"
-depends=
-makedepends="libxslt-dev libxml2-dev libogg-dev libvorbis-dev libtheora-dev"
-subpackages="$pkgname-doc"
-source="http://downloads.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz
- icecast.initd"
-
-build() {
- cd "$srcdir"/$pkgname-$pkgver
-
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info
- make
-}
-
-package() {
- cd "$srcdir"/$pkgname-$pkgver
- make DESTDIR="$pkgdir" install
- install -D -m755 ../icecast.initd "$pkgdir"/etc/init.d/icecast
-}
-
-md5sums="ff516b3ccd2bcc31e68f460cd316093f icecast-2.3.2.tar.gz
-b6f2fc5eaada6e9389784ccf43f68684 icecast.initd"
diff --git a/testing/icecast/icecast.initd b/testing/icecast/icecast.initd
deleted file mode 100644
index b82e5cdd..00000000
--- a/testing/icecast/icecast.initd
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/sbin/runscript
-
-depend() {
- need net
- after firewall
-}
-
-start() {
- ebegin "Starting Icecast 2"
- start-stop-daemon --background --start --make-pidfile --pidfile /var/run/icecast.pid --exec /usr/bin/icecast -- -c /etc/icecast.xml
- eend $?
-}
-
-stop() {
- ebegin "Stopping Icecast 2"
- start-stop-daemon --stop --pidfile /var/run/icecast.pid --name icecast
- eend $?
-}