summaryrefslogtreecommitdiffstats
path: root/testing/icecast
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-02-02 16:03:06 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-02-02 16:03:06 +0000
commit9ad548df8aa2a860ca311453ed3d6a98962f32f5 (patch)
tree09dec888ccfdf1447ba13e62c50d9291176b07e3 /testing/icecast
parent96813504f80856d8d85b390207621e5cbba64a85 (diff)
downloadaports-9ad548df8aa2a860ca311453ed3d6a98962f32f5.tar.bz2
aports-9ad548df8aa2a860ca311453ed3d6a98962f32f5.tar.xz
testing/*: remove from stable branch
Diffstat (limited to 'testing/icecast')
-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 $?
-}