summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarinus Schraal <foser@gentoo.org>2003-02-27 12:41:07 +0000
committerMarinus Schraal <foser@gentoo.org>2003-02-27 12:41:07 +0000
commit1da8001025bf6b4f276976dddaae55eeccc62942 (patch)
treee50b6da51b3ed3b1c13d7f7fb4bb656aec02c4e5 /media-libs/gst-plugins/files
parentUpdated digest file (diff)
downloadgentoo-2-1da8001025bf6b4f276976dddaae55eeccc62942.tar.gz
gentoo-2-1da8001025bf6b4f276976dddaae55eeccc62942.tar.bz2
gentoo-2-1da8001025bf6b4f276976dddaae55eeccc62942.zip
added patch
Diffstat (limited to 'media-libs/gst-plugins/files')
-rw-r--r--media-libs/gst-plugins/files/digest-gst-plugins-0.5.21
-rw-r--r--media-libs/gst-plugins/files/digest-gst-plugins-0.6.0-r41
-rw-r--r--media-libs/gst-plugins/files/gst-plugins-0.4.0-configure.patch20
-rw-r--r--media-libs/gst-plugins/files/gst-plugins-0.5.0-never-return-on-oss-busy.patch42
-rw-r--r--media-libs/gst-plugins/files/gst-plugins-0.5.1-never-return-on-oss-busy.patch42
-rw-r--r--media-libs/gst-plugins/files/gst-plugins-0.6-disable_ffmpeg_mpeg_typefind.patch14
6 files changed, 15 insertions, 105 deletions
diff --git a/media-libs/gst-plugins/files/digest-gst-plugins-0.5.2 b/media-libs/gst-plugins/files/digest-gst-plugins-0.5.2
deleted file mode 100644
index d765ce3a8a7c..000000000000
--- a/media-libs/gst-plugins/files/digest-gst-plugins-0.5.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b0983ad64705b38b02a0c266a94bb4d5 gst-plugins-0.5.2.tar.bz2 1859340
diff --git a/media-libs/gst-plugins/files/digest-gst-plugins-0.6.0-r4 b/media-libs/gst-plugins/files/digest-gst-plugins-0.6.0-r4
new file mode 100644
index 000000000000..8195a933e515
--- /dev/null
+++ b/media-libs/gst-plugins/files/digest-gst-plugins-0.6.0-r4
@@ -0,0 +1 @@
+MD5 6548e5cde239dff066f1eb5b9f62fec5 gst-plugins-0.6.0.tar.bz2 1876447
diff --git a/media-libs/gst-plugins/files/gst-plugins-0.4.0-configure.patch b/media-libs/gst-plugins/files/gst-plugins-0.4.0-configure.patch
deleted file mode 100644
index 97eddbb8f66a..000000000000
--- a/media-libs/gst-plugins/files/gst-plugins-0.4.0-configure.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- configure.orig Mon Jul 8 07:28:37 2002
-+++ configure Mon Jul 8 07:32:39 2002
-@@ -12022,7 +12022,7 @@
- if test "$AALIB_CONFIG" = "no" ; then
- no_aalib=yes
- else
-- AALIB_CFLAGS=`$AALIB_CONFIG $aalibconf_args --cflags`
-+ AALIB_CFLAGS=`$AALIB_CONFIG $aalibconf_args --cflags|sed s:-I/usr/include::`
- AALIB_LIBS=`$AALIB_CONFIG $aalibconf_args --libs`
-
- aalib_major_version=`$AALIB_CONFIG $aalib_args --version | \
-@@ -14099,7 +14099,7 @@
- HAVE_DVDNAV=no
- else
- DVDNAV_LIBS=`dvdnav-config --libs `
-- DVDNAV_CFLAGS=`dvdnav-config --cflags `
-+ DVDNAV_CFLAGS=`dvdnav-config --cflags |sed s:-I/usr/include::`
- HAVE_DVDNAV=yes
- fi
-
diff --git a/media-libs/gst-plugins/files/gst-plugins-0.5.0-never-return-on-oss-busy.patch b/media-libs/gst-plugins/files/gst-plugins-0.5.0-never-return-on-oss-busy.patch
deleted file mode 100644
index 9ec6a5545651..000000000000
--- a/media-libs/gst-plugins/files/gst-plugins-0.5.0-never-return-on-oss-busy.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- gst-plugins-0.5.0/sys/oss/gstosscommon.c.orig 2002-12-27 08:58:32.000000000 +0200
-+++ gst-plugins-0.5.0/sys/oss/gstosscommon.c 2002-12-27 09:01:44.000000000 +0200
-@@ -279,9 +279,23 @@
- GST_INFO (GST_CAT_PLUGIN_INFO, "common: attempting to open sound device");
-
- /* first try to open the sound card */
-- /* FIXME: this code is dubious, why do we need to open and close this ?*/
-+ /* FIXME: This code is dubious, why do we need to open and close this ?
-+ * For linux at least this causes the second open to never return
-+ * if the device was already in use .. */
-+#ifndef __linux__
- if (mode == GST_OSSCOMMON_WRITE) {
-+#endif
- common->fd = open (common->device, O_WRONLY | O_NONBLOCK);
-+#ifdef __linux__
-+ if (common->fd >= 0) {
-+ /* remove the non-blocking flag */
-+ if(fcntl (common->fd, F_SETFL, 0) < 0) {
-+ *error = g_strdup_printf ("osscommon: Can't make filedescriptor blocking for %s",
-+ common->device);
-+ return FALSE;
-+ }
-+ }
-+#else
- if (errno == EBUSY) {
- g_warning ("osscommon: unable to open the sound device (in use ?)\n");
- }
-@@ -295,9 +309,14 @@
- else {
- common->fd = open (common->device, O_RDONLY);
- }
-+#endif
-
- if (common->fd < 0) {
- switch (errno) {
-+ case EBUSY:
-+ *error = g_strdup_printf ("osscommon: Unable to open %s (in use ?)",
-+ common->device);
-+ break;
- case EISDIR:
- *error = g_strdup_printf ("osscommon: Device %s is a directory",
- common->device);
diff --git a/media-libs/gst-plugins/files/gst-plugins-0.5.1-never-return-on-oss-busy.patch b/media-libs/gst-plugins/files/gst-plugins-0.5.1-never-return-on-oss-busy.patch
deleted file mode 100644
index 9ec6a5545651..000000000000
--- a/media-libs/gst-plugins/files/gst-plugins-0.5.1-never-return-on-oss-busy.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- gst-plugins-0.5.0/sys/oss/gstosscommon.c.orig 2002-12-27 08:58:32.000000000 +0200
-+++ gst-plugins-0.5.0/sys/oss/gstosscommon.c 2002-12-27 09:01:44.000000000 +0200
-@@ -279,9 +279,23 @@
- GST_INFO (GST_CAT_PLUGIN_INFO, "common: attempting to open sound device");
-
- /* first try to open the sound card */
-- /* FIXME: this code is dubious, why do we need to open and close this ?*/
-+ /* FIXME: This code is dubious, why do we need to open and close this ?
-+ * For linux at least this causes the second open to never return
-+ * if the device was already in use .. */
-+#ifndef __linux__
- if (mode == GST_OSSCOMMON_WRITE) {
-+#endif
- common->fd = open (common->device, O_WRONLY | O_NONBLOCK);
-+#ifdef __linux__
-+ if (common->fd >= 0) {
-+ /* remove the non-blocking flag */
-+ if(fcntl (common->fd, F_SETFL, 0) < 0) {
-+ *error = g_strdup_printf ("osscommon: Can't make filedescriptor blocking for %s",
-+ common->device);
-+ return FALSE;
-+ }
-+ }
-+#else
- if (errno == EBUSY) {
- g_warning ("osscommon: unable to open the sound device (in use ?)\n");
- }
-@@ -295,9 +309,14 @@
- else {
- common->fd = open (common->device, O_RDONLY);
- }
-+#endif
-
- if (common->fd < 0) {
- switch (errno) {
-+ case EBUSY:
-+ *error = g_strdup_printf ("osscommon: Unable to open %s (in use ?)",
-+ common->device);
-+ break;
- case EISDIR:
- *error = g_strdup_printf ("osscommon: Device %s is a directory",
- common->device);
diff --git a/media-libs/gst-plugins/files/gst-plugins-0.6-disable_ffmpeg_mpeg_typefind.patch b/media-libs/gst-plugins/files/gst-plugins-0.6-disable_ffmpeg_mpeg_typefind.patch
new file mode 100644
index 000000000000..4e014feee0da
--- /dev/null
+++ b/media-libs/gst-plugins/files/gst-plugins-0.6-disable_ffmpeg_mpeg_typefind.patch
@@ -0,0 +1,14 @@
+diff -ur gst-plugins-0.6.0/ext/ffmpeg/gstffmpegtypes.c gst-plugins-0.6.0.patched/ext/ffmpeg/gstffmpegtypes.c
+--- gst-plugins-0.6.0/ext/ffmpeg/gstffmpegtypes.c 2003-01-26 12:56:37.000000000 +0100
++++ gst-plugins-0.6.0.patched/ext/ffmpeg/gstffmpegtypes.c 2003-02-27 01:38:53.000000000 +0100
+@@ -77,8 +77,8 @@
+ global_types = g_hash_table_new (g_str_hash, g_str_equal);
+
+ ADD_TYPE ("avi", GST_CAPS_NEW ("ffmpeg_type_avi", "video/avi", NULL));
+- ADD_TYPE ("mpeg", GST_CAPS_NEW ("ffmpeg_type_mpeg", "video/mpeg",
+- "systemstream", GST_PROPS_BOOLEAN (TRUE)));
++/* ADD_TYPE ("mpeg", GST_CAPS_NEW ("ffmpeg_type_mpeg", "video/mpeg",
++ "systemstream", GST_PROPS_BOOLEAN (TRUE)));*/
+ ADD_TYPE ("mpegts", GST_CAPS_NEW ("ffmpeg_type_mpegts", "video/x-mpegts",
+ "systemstream", GST_PROPS_BOOLEAN (TRUE)));
+ ADD_TYPE ("rm", GST_CAPS_NEW ("ffmpeg_type_rm", "audio/x-pn-realaudio", NULL));