diff options
Diffstat (limited to 'audio/icecast2')
| -rw-r--r-- | audio/icecast2/Makefile | 43 | ||||
| -rw-r--r-- | audio/icecast2/distinfo | 1 | ||||
| -rw-r--r-- | audio/icecast2/files/patch-aa | 67 | ||||
| -rw-r--r-- | audio/icecast2/pkg-comment | 1 | ||||
| -rw-r--r-- | audio/icecast2/pkg-descr | 8 | ||||
| -rw-r--r-- | audio/icecast2/pkg-install | 9 | ||||
| -rw-r--r-- | audio/icecast2/pkg-message | 15 | ||||
| -rw-r--r-- | audio/icecast2/pkg-plist | 28 |
8 files changed, 0 insertions, 172 deletions
diff --git a/audio/icecast2/Makefile b/audio/icecast2/Makefile deleted file mode 100644 index 1c1192629baf..000000000000 --- a/audio/icecast2/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# New ports collection makefile for: icecast -# Date created: 28 Jan 1999 -# Whom: Chip Marshall <chip@eboai.org> -# -# $FreeBSD$ -# - -PORTNAME= icecast -PORTVERSION= 1.3.7 -PORTREVISION= 1 -CATEGORIES= audio net -MASTER_SITES= http://www.icecast.org/releases/ - -MAINTAINER= chip@eboai.org - -FORBIDDEN= "Nope, still insecure..lots of tasty buffer overflows" - -HAS_CONFIGURE= yes -CONFIGURE_ARGS=--with-libwrap - -pre-fetch: -.if !defined(BATCH) && !defined(PACKAGE_BUILDING) - ${SH} pkg-install -.endif - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/icecast ${PREFIX}/sbin - ${MKDIR} ${PREFIX}/etc/icecast/conf - ${MKDIR} ${PREFIX}/etc/icecast/templates -.for CONF in groups.aut.dist icecast.conf.dist mounts.aut.dist users.aut.dist - ${INSTALL_DATA} ${WRKSRC}/conf/${CONF} ${PREFIX}/etc/icecast/conf -.endfor -.for TEMPL in 306.html 400.html 403.html 404.html 504.html bodytag.html info.html \ - list_directory.html mountlist.html statistics.html admin_describe.html \ - admin.html alias_add.html manual.html alias_del.html header.html \ - footer.html admin_change.html - ${INSTALL_DATA} ${WRKSRC}/templates/${TEMPL} ${PREFIX}/etc/icecast/templates -.endfor - ${MKDIR} ${PREFIX}/share/doc/icecast/ - ${INSTALL_DATA} ${WRKSRC}/doc/manual.html ${PREFIX}/share/doc/icecast/ - @${CAT} ${PKGMESSAGE} | ${SED} -e 's,%%PREFIX%%,${PREFIX},g' - -.include <bsd.port.mk> diff --git a/audio/icecast2/distinfo b/audio/icecast2/distinfo deleted file mode 100644 index 8aaa993cbf06..000000000000 --- a/audio/icecast2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (icecast-1.3.7.tar.gz) = 74f78ca33bea3cfd562530bc90d0d214 diff --git a/audio/icecast2/files/patch-aa b/audio/icecast2/files/patch-aa deleted file mode 100644 index bd3c746dfc71..000000000000 --- a/audio/icecast2/files/patch-aa +++ /dev/null @@ -1,67 +0,0 @@ ---- src/http.c.orig Wed Jul 5 10:41:27 2000 -+++ src/http.c Sat Mar 10 23:03:45 2001 -@@ -710,7 +710,7 @@ - if (fd < 0) - sock_write (clicon->sock, "%s", out); - else -- fd_write (fd, out); -+ fd_write (fd, "%s", out); - - return 1; - } else { ---- src/utility.c.orig Wed Jul 5 12:52:40 2000 -+++ src/utility.c Sat Mar 10 23:01:37 2001 -@@ -162,7 +162,7 @@ - - if (!param) { - fd_write (info.statsfile, -- buf); -+ "%s", buf); - flags2string (admin, NULL); - fd_write (info.statsfile, "\n"); - } else { -@@ -198,7 +198,7 @@ - nice_time (get_time () - con->connect_time, timebuf), type); - - if (!param) -- fd_write (info.statsfile, buf); -+ fd_write (info.statsfile, "%s", buf); - else - sock_write (*sock, "%s", buf); - } -@@ -223,7 +223,7 @@ - source->num_clients); - - if (!param) -- fd_write (info.statsfile, buf); -+ fd_write (info.statsfile, "%s", buf); - else - sock_write (*sock, "%s", buf); - } -@@ -257,7 +257,7 @@ - } - - if (!param) -- fd_write (info.statsfile, buf); -+ fd_write (info.statsfile, "%s", buf); - else - sock_write (*sock, "%s", buf); - -@@ -267,7 +267,7 @@ - source->audiocast.mount, source->audiocast.description, source->audiocast.public); - - if (!param) -- fd_write (info.statsfile, buf); -+ fd_write (info.statsfile, "%s", buf); - else - sock_write (*sock, "%s", buf); - -@@ -330,7 +330,7 @@ - get_user_agent (con), client->type == listener_e ? "listener" : "relay"); - - if (!param) -- fd_write(info.statsfile, buf); -+ fd_write(info.statsfile, "%s", buf); - else - sock_write (*sock, "%s", buf); - } diff --git a/audio/icecast2/pkg-comment b/audio/icecast2/pkg-comment deleted file mode 100644 index 627383078592..000000000000 --- a/audio/icecast2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A streaming mp3 audio server diff --git a/audio/icecast2/pkg-descr b/audio/icecast2/pkg-descr deleted file mode 100644 index c683f3434b65..000000000000 --- a/audio/icecast2/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Icecast is a streaming mp3 audio server. - -Icecast provides nearly all the functionality of the Shoutcast server. -It will accept encoding streams from encoders like winamp, shout and ices. -It can also add itself to a directory server such as our own -icecast.linuxpower.org or Nullsoft's yp.shoutcast.com. - -WWW: http://www.icecast.org/ diff --git a/audio/icecast2/pkg-install b/audio/icecast2/pkg-install deleted file mode 100644 index df572c129f2f..000000000000 --- a/audio/icecast2/pkg-install +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -if [ "$2" = "POST-INSTALL" -o -n "${PACKAGE_BUILDING}" ]; then - exit 0 -fi - -/usr/bin/dialog --yesno "SECURITY NOTE: The icecast software suffered from numerous format string vulnerabilities, which allowed remote attackers to execute arbitrary code as the user running icecast. Most of these have been fixed in the FreeBSD port, but a comprehensive audit has not been conducted, and there are several remaining suspicious cases which need to be carefully checked. It is possible that further security vulnerabilities exist in this software. Do you wish to proceed with the installation of icecast anyway?" 12 70 || /usr/bin/false - - diff --git a/audio/icecast2/pkg-message b/audio/icecast2/pkg-message deleted file mode 100644 index 34690c5d02ae..000000000000 --- a/audio/icecast2/pkg-message +++ /dev/null @@ -1,15 +0,0 @@ ------------------------------------------------------------------ - -Icecast's various components have been installed in the following -directories: - - - The icecast server: - %%PREFIX%%/sbin/icecast - - - Icecast configuration files have been installed in: - %%PREFIX%%/etc/icecast/ - - - Icecast documentation is located in: - %%PREFIX%%/share/doc/icecast/ - ------------------------------------------------------------------ diff --git a/audio/icecast2/pkg-plist b/audio/icecast2/pkg-plist deleted file mode 100644 index 5ed338f1a9f0..000000000000 --- a/audio/icecast2/pkg-plist +++ /dev/null @@ -1,28 +0,0 @@ -etc/icecast/conf/groups.aut.dist -etc/icecast/conf/icecast.conf.dist -etc/icecast/conf/mounts.aut.dist -etc/icecast/conf/users.aut.dist -etc/icecast/templates/306.html -etc/icecast/templates/400.html -etc/icecast/templates/403.html -etc/icecast/templates/404.html -etc/icecast/templates/504.html -etc/icecast/templates/admin.html -etc/icecast/templates/admin_change.html -etc/icecast/templates/admin_describe.html -etc/icecast/templates/alias_add.html -etc/icecast/templates/alias_del.html -etc/icecast/templates/bodytag.html -etc/icecast/templates/footer.html -etc/icecast/templates/header.html -etc/icecast/templates/info.html -etc/icecast/templates/list_directory.html -etc/icecast/templates/manual.html -etc/icecast/templates/mountlist.html -etc/icecast/templates/statistics.html -sbin/icecast -share/doc/icecast/manual.html -@dirrm etc/icecast/conf -@dirrm etc/icecast/templates -@dirrm etc/icecast -@dirrm share/doc/icecast |
