summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlastair Tse <liquidx@gentoo.org>2004-03-06 16:06:37 +0000
committerAlastair Tse <liquidx@gentoo.org>2004-03-06 16:06:37 +0000
commit7bc05d25e9368b164c1e2a5fda5328d9d5c1b224 (patch)
tree697718c09607698b9a6d791a74095ea7d40c7fce /media-sound/rhythmbox/files
parentlxbank-0.1.9 Version bump. (Manifest recommit) (diff)
downloadgentoo-2-7bc05d25e9368b164c1e2a5fda5328d9d5c1b224.tar.gz
gentoo-2-7bc05d25e9368b164c1e2a5fda5328d9d5c1b224.tar.bz2
gentoo-2-7bc05d25e9368b164c1e2a5fda5328d9d5c1b224.zip
oops, another version. this time we fix the amd64 patch as well
Diffstat (limited to 'media-sound/rhythmbox/files')
-rw-r--r--media-sound/rhythmbox/files/digest-rhythmbox-0.6.31
-rw-r--r--media-sound/rhythmbox/files/digest-rhythmbox-0.6.41
-rw-r--r--media-sound/rhythmbox/files/rhythmbox-0.6.8-amd64.patch26
3 files changed, 26 insertions, 2 deletions
diff --git a/media-sound/rhythmbox/files/digest-rhythmbox-0.6.3 b/media-sound/rhythmbox/files/digest-rhythmbox-0.6.3
deleted file mode 100644
index 1dac99dd205e..000000000000
--- a/media-sound/rhythmbox/files/digest-rhythmbox-0.6.3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 24edcdae89367e6acd1b087f2970e3c2 rhythmbox-0.6.3.tar.bz2 1573249
diff --git a/media-sound/rhythmbox/files/digest-rhythmbox-0.6.4 b/media-sound/rhythmbox/files/digest-rhythmbox-0.6.4
deleted file mode 100644
index 6416fa42f92e..000000000000
--- a/media-sound/rhythmbox/files/digest-rhythmbox-0.6.4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 8aa6809e065bc17fb1a0ef57eb058225 rhythmbox-0.6.4.tar.bz2 1579252
diff --git a/media-sound/rhythmbox/files/rhythmbox-0.6.8-amd64.patch b/media-sound/rhythmbox/files/rhythmbox-0.6.8-amd64.patch
new file mode 100644
index 000000000000..1d25131365a9
--- /dev/null
+++ b/media-sound/rhythmbox/files/rhythmbox-0.6.8-amd64.patch
@@ -0,0 +1,26 @@
+diff -ur rhythmbox-0.6.5/monkey-media/monkey-media-player-gst-tmp.c rhythmbox-0.6.5-patched/monkey-media/monkey-media-player-gst-tmp.c
+--- rhythmbox-0.6.5/monkey-media/monkey-media-player-gst-tmp.c 2004-01-18 03:57:40.000000000 +0100
++++ rhythmbox-0.6.5-patched/monkey-media/monkey-media-player-gst-tmp.c 2004-02-13 21:12:12.000000000 +0100
+@@ -347,7 +347,7 @@
+ {
+ char *ret = NULL, *cset;
+ va_list args;
+- int bytes_read, bytes_written;
++ gsize bytes_read, bytes_written;
+
+ if (g_utf8_validate (str, len, NULL))
+ return g_strndup (str, len >= 0 ? len : strlen (str));
+@@ -356,10 +356,10 @@
+ while ((cset = va_arg (args, char *)) != NULL)
+ {
+ if (!strcmp (cset, "locale"))
+- ret = g_locale_to_utf8 (str, len, &bytes_read,
++ ret = g_locale_to_utf8 (str, (gsize) len, &bytes_read,
+ &bytes_written, NULL);
+ else
+- ret = g_convert (str, len, "UTF-8", cset,
++ ret = g_convert (str, (gsize) len, "UTF-8", cset,
+ &bytes_read, &bytes_written, NULL);
+ if (ret)
+ break;
+