Ices version 0 is a source client for streaming MP3 audio to Shoutcast, Icecast v1 and v2 servers. Due to Perl being shipped on OpenBSD by default, custom playlist handlers written in Perl are always supported by this port. from Moritz Grimm <gtgbr@gmx.net>, cleanup and patches from me WWW: http://www.icecast.org/
25 lines
564 B
Bash
25 lines
564 B
Bash
#!/bin/sh
|
|
# $OpenBSD: DEINSTALL,v 1.1.1.1 2003/07/26 11:40:45 sturm Exp $
|
|
#
|
|
# ORBit de-installation
|
|
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
CONFIG_FILE=${SYSCONFDIR}/ices.conf
|
|
|
|
if [ -f $CONFIG_FILE ]; then
|
|
echo
|
|
echo "+---------------"
|
|
echo "| To completely deinstall the $1 package you need to perform"
|
|
echo "| this step as root:"
|
|
echo "|"
|
|
echo "| rm -f $CONFIG_FILE"
|
|
echo "|"
|
|
echo "| Do not do this if you plan on re-installing $1"
|
|
echo "| at some future time."
|
|
echo "+---------------"
|
|
echo
|
|
fi
|
|
|
|
exit 0
|