summaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2010-08-02 10:24:33 +0000
committerdrochner <drochner@pkgsrc.org>2010-08-02 10:24:33 +0000
commit5e208a58f843983f4d927a3f4186a9378eafbd3b (patch)
tree09cd24b61485e1975f22c71a5905a9810e925a60 /multimedia
parent944d9ac69f2feab45e0a62d481a980a7ebf181d4 (diff)
downloadpkgsrc-5e208a58f843983f4d927a3f4186a9378eafbd3b.tar.gz
modify the youtube video request URI so that it works again
(this was by try&error, does anybody know more about the protocol?) bump PKGREVISION
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/totem/Makefile4
-rw-r--r--multimedia/totem/distinfo3
-rw-r--r--multimedia/totem/patches/patch-aj12
3 files changed, 16 insertions, 3 deletions
diff --git a/multimedia/totem/Makefile b/multimedia/totem/Makefile
index 14c5604b9bd..c4366403a2a 100644
--- a/multimedia/totem/Makefile
+++ b/multimedia/totem/Makefile
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.41 2010/06/13 22:45:07 wiz Exp $
+# $NetBSD: Makefile,v 1.42 2010/08/02 10:24:33 drochner Exp $
#
PKG_DESTDIR_SUPPORT= user-destdir
.include "Makefile.common"
-PKGREVISION= 1
+PKGREVISION= 2
DEPENDS+= gst-plugins0.10-soup-[0-9]*:../../net/gst-plugins0.10-soup
diff --git a/multimedia/totem/distinfo b/multimedia/totem/distinfo
index 3506021e15b..c90973c4153 100644
--- a/multimedia/totem/distinfo
+++ b/multimedia/totem/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.40 2010/07/06 15:32:17 drochner Exp $
+$NetBSD: distinfo,v 1.41 2010/08/02 10:24:33 drochner Exp $
SHA1 (totem-2.30.2.tar.gz) = 3f09d21994b3caa9aa4eca9f1fa9021a263bdc92
RMD160 (totem-2.30.2.tar.gz) = 302963f368d7dcdb782d9350c03133413ff4dc33
@@ -6,3 +6,4 @@ Size (totem-2.30.2.tar.gz) = 4839425 bytes
SHA1 (patch-ad) = ec8cd092d202255981049ace4ac643c41a0044be
SHA1 (patch-af) = 8e4ffb97aedbf56a052d5ffacea73f8b2f071183
SHA1 (patch-ai) = 6f95138b8260dc925493845e34a7b7e9f6f93a53
+SHA1 (patch-aj) = 2eedc2d45e985d9f67ca23477adc3ba596c12af1
diff --git a/multimedia/totem/patches/patch-aj b/multimedia/totem/patches/patch-aj
new file mode 100644
index 00000000000..c243457aee6
--- /dev/null
+++ b/multimedia/totem/patches/patch-aj
@@ -0,0 +1,12 @@
+$NetBSD: patch-aj,v 1.1 2010/08/02 10:24:33 drochner Exp $
+
+--- src/plugins/youtube/totem-youtube.c.orig 2010-05-12 15:41:25.000000000 +0000
++++ src/plugins/youtube/totem-youtube.c
+@@ -530,6 +530,7 @@ resolve_t_param_cb (GObject *source_obje
+ g_string_append_uri_escaped (video_uri_string, video_id, NULL, TRUE);
+ g_string_append (video_uri_string, "&t=");
+ g_string_append_uri_escaped (video_uri_string, t_param, NULL, TRUE);
++ g_string_append (video_uri_string, "&asv=");
+ g_string_append (video_uri_string, fmt_param);
+
+ video_uri = g_string_free (video_uri_string, FALSE);