blob: b27b20261add018db70a03b3d191448d20103f87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/shoutcast-server-bin/shoutcast-server-bin-1.9.4.ebuild,v 1.3 2004/09/03 22:42:01 chriswhite Exp $
inherit eutils
SVER=${PV//./-}
RESTRICT="fetch nostrip"
DESCRIPTION="${PN} is a network streaming server by Nullsoft."
HOMEPAGE="http://www.shoutcast.com/download/license.phtml"
SRC_URI="shoutcast-${SVER}-linux-glibc6.tar.gz"
LICENSE="shoutcast"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=virtual/libc-2.0.0"
S="${WORKDIR}/shoutcast-${SVER}-linux-glibc6"
src_unpack() {
unpack shoutcast-${SVER}-linux-glibc6.tar.gz
}
src_install() {
# install executable
einfo "Installing Executable"
dodir /opt/shoutcast
exeinto /opt/shoutcast
doexe sc_serv
#install shoutcast init.d script
doinitd ${FILESDIR}/shoutcast
# install configuration file
sed -e "s/LogFile=sc_serv\.log/LogFile=\/dev\/null/" -e "s/W3CLog=sc_w3c\.log/W3CLog=\/dev\/null/" -i sc_serv.conf
# sets screen logging and real time output off since we're running this as a deamon
sed -e "s:RealTime=1:RealTime=0:" -e "s:ScreenLog=1:ScreenLog=0:" -i sc_serv.conf
# fixes up messed up example as directories for on demand
# streaming need a trailing slash at the end of directories
sed -e "s:; Default is ./content:; Default is ./content/:" -i sc_serv.conf
# sets up a default content directory for on demand streaming
dodir /opt/shoutcast/content
sed -e "s:; ContentDir=./content:ContentDir=/opt/shoutcast/content/:" -i sc_serv.conf
#install the configuration file
dodir /etc/shoutcast
insinto /etc/shoutcast
doins sc_serv.conf
# install documentation
dodoc README
cp sc_serv.conf sc_serv.conf.example
dodoc sc_serv.conf.example
}
pkg_postinst() {
einfo "To start shoutcast, use the init.d script by running /etc/init.d/shoutcast."
einfo
einfo "On demand content should be stored in /opt/shoutcast/content"
einfo "See http://forums.winamp.com/showthread.php?threadid=75736 for more information on setting up on demand content"
einfo
einfo "FAQ's can be found at: http://forums.winamp.com/showthread.php?threadid=75736 and can help you with server setup."
}
|