summaryrefslogtreecommitdiff
path: root/audio/icecast1
diff options
context:
space:
mode:
authorkim <kim@pkgsrc.org>2004-04-11 05:48:34 +0000
committerkim <kim@pkgsrc.org>2004-04-11 05:48:34 +0000
commit7f306ebf8ac41f3f5fd4a48a0a2174fddf11cdac (patch)
treee1e26f7ca2e0316154e02969d9fcc0f8e29c6492 /audio/icecast1
parentecb61286fed4cb1f71a6aaba95d20b9b9b55a7c9 (diff)
downloadpkgsrc-7f306ebf8ac41f3f5fd4a48a0a2174fddf11cdac.tar.gz
Fix WMP9 playback time limit by not sending a Content-Length header.
Diffstat (limited to 'audio/icecast1')
-rw-r--r--audio/icecast1/Makefile4
-rw-r--r--audio/icecast1/distinfo3
-rw-r--r--audio/icecast1/patches/patch-ad13
3 files changed, 17 insertions, 3 deletions
diff --git a/audio/icecast1/Makefile b/audio/icecast1/Makefile
index fb9466e4319..89a75ff2f66 100644
--- a/audio/icecast1/Makefile
+++ b/audio/icecast1/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.3 2004/01/12 03:54:28 kim Exp $
+# $NetBSD: Makefile,v 1.4 2004/04/11 05:48:34 kim Exp $
#
DISTNAME= icecast-1.3.12
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= audio
MASTER_SITES= http://www.icecast.org/releases/
diff --git a/audio/icecast1/distinfo b/audio/icecast1/distinfo
index 09f384de06b..d25767c7ae9 100644
--- a/audio/icecast1/distinfo
+++ b/audio/icecast1/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.1.1.2 2004/01/11 16:59:34 kim Exp $
+$NetBSD: distinfo,v 1.2 2004/04/11 05:48:34 kim Exp $
SHA1 (icecast-1.3.12.tar.gz) = bacb760390453718de536b85979ff3a9a73c7710
Size (icecast-1.3.12.tar.gz) = 269822 bytes
SHA1 (patch-aa) = 169202f563e4e2812d8d532264dcdb4f9ffc8df2
SHA1 (patch-ab) = de33a89e6078721a7e9c3a09515846752e76680e
SHA1 (patch-ac) = 4775c84b910f9b19134f66a57f5196b572daf3cc
+SHA1 (patch-ad) = 787838025c33a2b84bc0dd20ac6442e5d8cc24c0
diff --git a/audio/icecast1/patches/patch-ad b/audio/icecast1/patches/patch-ad
new file mode 100644
index 00000000000..e6c772a98ef
--- /dev/null
+++ b/audio/icecast1/patches/patch-ad
@@ -0,0 +1,13 @@
+$NetBSD: patch-ad,v 1.1 2004/04/11 05:48:34 kim Exp $
+
+--- src/client.c.orig 2001-08-01 20:56:47.000000000 -0400
++++ src/client.c 2004-04-11 01:41:01.000000000 -0400
+@@ -476,6 +476,8 @@
+ return 1;
+ if (strstr(val, "RMA/1.0"))
+ return 1;
++ if (strstr(val, "NSPlayer/9"))
++ return 0;
+ if (strstr(val, "NSPlayer"))
+ return 1;
+ return 0;