Import of icecast verion 1.1.0.
A SHOUTcast-compatible streaming MP3 server. PR: 10298 Submitted by: Chip Marshall <chip@eboai.org>
This commit is contained in:
parent
e6df621755
commit
37e245140e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=17549
12 changed files with 182 additions and 0 deletions
34
audio/icecast/Makefile
Normal file
34
audio/icecast/Makefile
Normal file
|
@ -0,0 +1,34 @@
|
|||
# New ports collection makefile for: icecast
|
||||
# Version required: 1.1.0
|
||||
# Date created: 28 Jan 1999
|
||||
# Whom: Chip Marshall <chip@eboai.org>
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
|
||||
DISTNAME= icecast-1.1.0
|
||||
CATEGORIES= audio net
|
||||
MASTER_SITES= http://icecast.linuxpower.org/releases/ \
|
||||
ftp://ftp.eboai.org/pub/icecast/
|
||||
|
||||
MAINTAINER= chip@eboai.org
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/icecast ${PREFIX}/sbin
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/iceplay/listen ${PREFIX}/bin
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/iceplay/shout ${PREFIX}/bin
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/iceplay/iceplay ${PREFIX}/bin
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${PREFIX}/share/doc/icecast
|
||||
${INSTALL_MAN} ${WRKSRC}/doc/* ${PREFIX}/share/doc/icecast
|
||||
${MKDIR} ${PREFIX}/share/examples/icecast
|
||||
${INSTALL_MAN} ${WRKSRC}/iceplay/shoutrc.example ${PREFIX}/share/examples/icecast
|
||||
${INSTALL_MAN} ${WRKSRC}/iceplay/playlist.example ${PREFIX}/share/examples/icecast
|
||||
${INSTALL_MAN} ${WRKSRC}/iceplay/radio.tcl.example ${PREFIX}/share/examples/icecast
|
||||
${MKDIR} ${PREFIX}/share/examples/icecast/icedir
|
||||
${INSTALL_MAN} ${WRKSRC}/icedir/* ${PREFIX}/share/examples/icecast/icedir
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
audio/icecast/distinfo
Normal file
1
audio/icecast/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (icecast-1.1.0.tar.gz) = f0bd176b2aea0583716a5ab110472213
|
1
audio/icecast/pkg-comment
Normal file
1
audio/icecast/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A SHOUTcast-compatible streaming MP3 server
|
18
audio/icecast/pkg-descr
Normal file
18
audio/icecast/pkg-descr
Normal file
|
@ -0,0 +1,18 @@
|
|||
icecast
|
||||
~~~~~~~
|
||||
Icecast provides nearly all the functionality of the Shoutcast Linux
|
||||
server. It will accept encoding streams from either iceplay or WinAmp.
|
||||
It can also add itself to a directory server such as our own
|
||||
icecast.linuxpower.org or Nullsoft's yp.shoutcast.com. It does not yet
|
||||
support redirection of streams from other icecast servers, but soon will.
|
||||
Command-line options are as follows (these can be obtained by running
|
||||
'icecast -h' as well):
|
||||
|
||||
contacts and webpage
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
The main webpage for icecast is http://icecast.linuxpower.org
|
||||
Please send any suggestions, bugfixes, or anything else to
|
||||
icecast@linuxpower.org
|
||||
|
||||
--
|
||||
Chip Marshall <chip@eboai.org> http://www.eboai.org/~chip/
|
5
audio/icecast/pkg-message
Normal file
5
audio/icecast/pkg-message
Normal file
|
@ -0,0 +1,5 @@
|
|||
FYI, there a several useful programs included in the icecast distribution that
|
||||
are not installed as part of this port. These include two ways of sending
|
||||
data to the server, a program for listening to the server, and another for
|
||||
managing a listing of servers. These are located in the subdirectories
|
||||
icedir and iceplay under the working directory.
|
32
audio/icecast/pkg-plist
Normal file
32
audio/icecast/pkg-plist
Normal file
|
@ -0,0 +1,32 @@
|
|||
sbin/icecast
|
||||
bin/iceplay
|
||||
bin/shout
|
||||
bin/listen
|
||||
share/doc/icecast/AUTHORS
|
||||
share/doc/icecast/BUGS
|
||||
share/doc/icecast/BUGS.iceplay
|
||||
share/doc/icecast/CHANGES
|
||||
share/doc/icecast/CREDITS.shout
|
||||
share/doc/icecast/COPYING
|
||||
share/doc/icecast/FAQ
|
||||
share/doc/icecast/INSTALL
|
||||
share/doc/icecast/README
|
||||
share/doc/icecast/README.icedir
|
||||
share/doc/icecast/README.iceplay
|
||||
share/doc/icecast/README.shout
|
||||
share/doc/icecast/TESTED
|
||||
share/doc/icecast/TODO.shout
|
||||
share/examples/icecast/playlist.example
|
||||
share/examples/icecast/radio.tcl.example
|
||||
share/examples/icecast/shoutrc.example
|
||||
share/examples/icecast/icedir/addsrv
|
||||
share/examples/icecast/icedir/example.phtml
|
||||
share/examples/icecast/icedir/functions.phps
|
||||
share/examples/icecast/icedir/gen-playlist
|
||||
share/examples/icecast/icedir/icedir_cleanup.pl
|
||||
share/examples/icecast/icedir/remsrv
|
||||
share/examples/icecast/icedir/server_tbl.sql
|
||||
share/examples/icecast/icedir/tchsrv
|
||||
@dirrm share/doc/icecast
|
||||
@dirrm share/examples/icecast/icedir
|
||||
@dirrm share/examples/icecast
|
34
audio/icecast2/Makefile
Normal file
34
audio/icecast2/Makefile
Normal file
|
@ -0,0 +1,34 @@
|
|||
# New ports collection makefile for: icecast
|
||||
# Version required: 1.1.0
|
||||
# Date created: 28 Jan 1999
|
||||
# Whom: Chip Marshall <chip@eboai.org>
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
|
||||
DISTNAME= icecast-1.1.0
|
||||
CATEGORIES= audio net
|
||||
MASTER_SITES= http://icecast.linuxpower.org/releases/ \
|
||||
ftp://ftp.eboai.org/pub/icecast/
|
||||
|
||||
MAINTAINER= chip@eboai.org
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/icecast ${PREFIX}/sbin
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/iceplay/listen ${PREFIX}/bin
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/iceplay/shout ${PREFIX}/bin
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/iceplay/iceplay ${PREFIX}/bin
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${PREFIX}/share/doc/icecast
|
||||
${INSTALL_MAN} ${WRKSRC}/doc/* ${PREFIX}/share/doc/icecast
|
||||
${MKDIR} ${PREFIX}/share/examples/icecast
|
||||
${INSTALL_MAN} ${WRKSRC}/iceplay/shoutrc.example ${PREFIX}/share/examples/icecast
|
||||
${INSTALL_MAN} ${WRKSRC}/iceplay/playlist.example ${PREFIX}/share/examples/icecast
|
||||
${INSTALL_MAN} ${WRKSRC}/iceplay/radio.tcl.example ${PREFIX}/share/examples/icecast
|
||||
${MKDIR} ${PREFIX}/share/examples/icecast/icedir
|
||||
${INSTALL_MAN} ${WRKSRC}/icedir/* ${PREFIX}/share/examples/icecast/icedir
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
audio/icecast2/distinfo
Normal file
1
audio/icecast2/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (icecast-1.1.0.tar.gz) = f0bd176b2aea0583716a5ab110472213
|
1
audio/icecast2/pkg-comment
Normal file
1
audio/icecast2/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A SHOUTcast-compatible streaming MP3 server
|
18
audio/icecast2/pkg-descr
Normal file
18
audio/icecast2/pkg-descr
Normal file
|
@ -0,0 +1,18 @@
|
|||
icecast
|
||||
~~~~~~~
|
||||
Icecast provides nearly all the functionality of the Shoutcast Linux
|
||||
server. It will accept encoding streams from either iceplay or WinAmp.
|
||||
It can also add itself to a directory server such as our own
|
||||
icecast.linuxpower.org or Nullsoft's yp.shoutcast.com. It does not yet
|
||||
support redirection of streams from other icecast servers, but soon will.
|
||||
Command-line options are as follows (these can be obtained by running
|
||||
'icecast -h' as well):
|
||||
|
||||
contacts and webpage
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
The main webpage for icecast is http://icecast.linuxpower.org
|
||||
Please send any suggestions, bugfixes, or anything else to
|
||||
icecast@linuxpower.org
|
||||
|
||||
--
|
||||
Chip Marshall <chip@eboai.org> http://www.eboai.org/~chip/
|
5
audio/icecast2/pkg-message
Normal file
5
audio/icecast2/pkg-message
Normal file
|
@ -0,0 +1,5 @@
|
|||
FYI, there a several useful programs included in the icecast distribution that
|
||||
are not installed as part of this port. These include two ways of sending
|
||||
data to the server, a program for listening to the server, and another for
|
||||
managing a listing of servers. These are located in the subdirectories
|
||||
icedir and iceplay under the working directory.
|
32
audio/icecast2/pkg-plist
Normal file
32
audio/icecast2/pkg-plist
Normal file
|
@ -0,0 +1,32 @@
|
|||
sbin/icecast
|
||||
bin/iceplay
|
||||
bin/shout
|
||||
bin/listen
|
||||
share/doc/icecast/AUTHORS
|
||||
share/doc/icecast/BUGS
|
||||
share/doc/icecast/BUGS.iceplay
|
||||
share/doc/icecast/CHANGES
|
||||
share/doc/icecast/CREDITS.shout
|
||||
share/doc/icecast/COPYING
|
||||
share/doc/icecast/FAQ
|
||||
share/doc/icecast/INSTALL
|
||||
share/doc/icecast/README
|
||||
share/doc/icecast/README.icedir
|
||||
share/doc/icecast/README.iceplay
|
||||
share/doc/icecast/README.shout
|
||||
share/doc/icecast/TESTED
|
||||
share/doc/icecast/TODO.shout
|
||||
share/examples/icecast/playlist.example
|
||||
share/examples/icecast/radio.tcl.example
|
||||
share/examples/icecast/shoutrc.example
|
||||
share/examples/icecast/icedir/addsrv
|
||||
share/examples/icecast/icedir/example.phtml
|
||||
share/examples/icecast/icedir/functions.phps
|
||||
share/examples/icecast/icedir/gen-playlist
|
||||
share/examples/icecast/icedir/icedir_cleanup.pl
|
||||
share/examples/icecast/icedir/remsrv
|
||||
share/examples/icecast/icedir/server_tbl.sql
|
||||
share/examples/icecast/icedir/tchsrv
|
||||
@dirrm share/doc/icecast
|
||||
@dirrm share/examples/icecast/icedir
|
||||
@dirrm share/examples/icecast
|
Loading…
Reference in a new issue