icecast: removed orphaned port

This commit is contained in:
Fredrik Rinnestam 2013-05-06 21:00:34 +02:00
parent 6a72b147ae
commit 8475ff3b60
5 changed files with 0 additions and 99 deletions

View File

@ -1,36 +0,0 @@
drwxr-xr-x root/root etc/
-rw-r--r-- root/root etc/icecast.xml
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/icecast
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/icecast
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/icecast/
drwxr-xr-x root/root usr/share/icecast/admin/
-rw-r--r-- root/root usr/share/icecast/admin/listclients.xsl
-rw-r--r-- root/root usr/share/icecast/admin/listmounts.xsl
-rw-r--r-- root/root usr/share/icecast/admin/manageauth.xsl
-rw-r--r-- root/root usr/share/icecast/admin/moveclients.xsl
-rw-r--r-- root/root usr/share/icecast/admin/response.xsl
-rw-r--r-- root/root usr/share/icecast/admin/stats.xsl
-rw-r--r-- root/root usr/share/icecast/admin/updatemetadata.xsl
drwxr-xr-x root/root usr/share/icecast/web/
-rw-r--r-- root/root usr/share/icecast/web/auth.xsl
-rw-r--r-- root/root usr/share/icecast/web/corner_bottomleft.jpg
-rw-r--r-- root/root usr/share/icecast/web/corner_bottomright.jpg
-rw-r--r-- root/root usr/share/icecast/web/corner_topleft.jpg
-rw-r--r-- root/root usr/share/icecast/web/corner_topright.jpg
-rw-r--r-- root/root usr/share/icecast/web/icecast.png
-rw-r--r-- root/root usr/share/icecast/web/key.gif
-rw-r--r-- root/root usr/share/icecast/web/key.png
-rw-r--r-- root/root usr/share/icecast/web/server_version.xsl
-rw-r--r-- root/root usr/share/icecast/web/status.xsl
-rw-r--r-- root/root usr/share/icecast/web/status2.xsl
-rw-r--r-- root/root usr/share/icecast/web/style.css
-rw-r--r-- root/root usr/share/icecast/web/tunein.png
drwxr-xr-x root/root var/
drwxr-xr-x root/root var/log/
drwxr-xr-x root/root var/log/icecast/
-rw-r--r-- root/root var/log/icecast/access.log (EMPTY)
-rw-r--r-- root/root var/log/icecast/error.log (EMPTY)

View File

@ -1,2 +0,0 @@
b615d6a056aec1859959039385272b5e icecast
ff516b3ccd2bcc31e68f460cd316093f icecast-2.3.2.tar.gz

View File

@ -1,33 +0,0 @@
# Description: Program to stream audio to listeners.
# URL: http://www.icecast.org
# Maintainer: Lucas Hazel, lucas at die dot net dot au
# Packager: James Mills, prologic at shortcircuit dot net dot au
#
# Depends on: libxslt, libvorbis
name=icecast
version=2.3.2
release=1
source=(http://downloads.us.xiph.org/releases/icecast/$name-$version.tar.gz \
icecast)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var
make && make DESTDIR=$PKG install
install -d \
$PKG/usr/share/icecast \
$PKG/var/log/icecast
touch $PKG/var/log/icecast/{access.log,error.log}
install -D -m755 $SRC/icecast $PKG/etc/rc.d/icecast
rm -fr $PKG/usr/share/{doc,icecast/doc}
chown -R root:root $PKG
}

View File

@ -1,23 +0,0 @@
#!/bin/sh
#
# /etc/rc.d/icecast: start/stop icecast daemon
#
case $1 in
start)
icecast -c /etc/icecast.xml -b
;;
stop)
kill -KILL `pidof icecast`
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file

View File

@ -1,5 +0,0 @@
#!/bin/sh
/usr/sbin/groupadd icecast
/usr/sbin/useradd -g icecast -d /usr/share/icecast/ -s /bin/bash -c "IceCast User" -m icecast
chown -R icecast.icecast /var/log/icecast