diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2007-09-29 11:10:49 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2007-09-29 11:10:49 +0000 |
commit | e4d65d4832d0b65a8c422de2edabdc1f08abd76c (patch) | |
tree | d066af86b721559fe96df0bf99dc682c722c7fad /media-plugins/gst-plugins-gnomevfs | |
parent | dev-cpp/glibmm: upgrade the glib dep to 2.14 (bug #194023) (diff) | |
download | historical-e4d65d4832d0b65a8c422de2edabdc1f08abd76c.tar.gz historical-e4d65d4832d0b65a8c422de2edabdc1f08abd76c.tar.bz2 historical-e4d65d4832d0b65a8c422de2edabdc1f08abd76c.zip |
Removing GStreamer 0.8.
Package-Manager: portage-2.1.3.11
Diffstat (limited to 'media-plugins/gst-plugins-gnomevfs')
5 files changed, 0 insertions, 98 deletions
diff --git a/media-plugins/gst-plugins-gnomevfs/files/digest-gst-plugins-gnomevfs-0.8.11 b/media-plugins/gst-plugins-gnomevfs/files/digest-gst-plugins-gnomevfs-0.8.11 deleted file mode 100644 index d30f6bd8cca1..000000000000 --- a/media-plugins/gst-plugins-gnomevfs/files/digest-gst-plugins-gnomevfs-0.8.11 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 35aea4e2860ff5c9a86c3fca0ec07295 gst-plugins-0.8.11-conffix.patch.bz2 463 -RMD160 070ca474768776984765390d97d02de8e62376ff gst-plugins-0.8.11-conffix.patch.bz2 463 -SHA256 c8b6e6d7e231b69be598a5cedef278716bb71eec0136500946490ef992bc48de gst-plugins-0.8.11-conffix.patch.bz2 463 -MD5 ea787eeed3761ff03cb60ecebebe1c30 gst-plugins-0.8.11.tar.bz2 2439654 -RMD160 833aec123a52cd0f36ec883c349cc8d69090d749 gst-plugins-0.8.11.tar.bz2 2439654 -SHA256 0e48eef1d3bfa2263c1047f9f84622a4e16e33d963252cb8153ff1b340c4ba90 gst-plugins-0.8.11.tar.bz2 2439654 diff --git a/media-plugins/gst-plugins-gnomevfs/files/digest-gst-plugins-gnomevfs-0.8.12 b/media-plugins/gst-plugins-gnomevfs/files/digest-gst-plugins-gnomevfs-0.8.12 deleted file mode 100644 index 2835eef1c17c..000000000000 --- a/media-plugins/gst-plugins-gnomevfs/files/digest-gst-plugins-gnomevfs-0.8.12 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 c5cb7312d96fe008763b3ac56e665ca5 gst-plugins-0.8.12.tar.bz2 2506926 -RMD160 cc0bbf3d790cb5791ce982fe6493bf2d8496a507 gst-plugins-0.8.12.tar.bz2 2506926 -SHA256 8728da4f71bc87e10fb064d28154220d66a3d8332482fd2c8a7ed47c5f0a03ba gst-plugins-0.8.12.tar.bz2 2506926 diff --git a/media-plugins/gst-plugins-gnomevfs/files/gst-plugins-gnomevfs-0.10.4-fix.diff b/media-plugins/gst-plugins-gnomevfs/files/gst-plugins-gnomevfs-0.10.4-fix.diff deleted file mode 100644 index aedd82e29d80..000000000000 --- a/media-plugins/gst-plugins-gnomevfs/files/gst-plugins-gnomevfs-0.10.4-fix.diff +++ /dev/null @@ -1,65 +0,0 @@ -=================================================================== -RCS file: /srv/anoncvs.freedesktop.org/cvs/gstreamer/gst-plugins-base/ext/gnomevfs/gstgnomevfssrc.c,v -rcsdiff: /srv/anoncvs.freedesktop.org/cvs/gstreamer/gst-plugins-base/ext/gnomevfs/gstgnomevfssrc.c,v: warning: Unknown phrases like `commitid ...;' are present. -retrieving revision 1.82 -retrieving revision 1.83 -diff -u -r1.82 -r1.83 ---- gstgnomevfssrc.c 2006/03/09 17:50:59 1.82 -+++ gstgnomevfssrc.c 2006/03/11 16:40:20 1.83 -@@ -1075,26 +1075,45 @@ - gst_gnome_vfs_src_check_get_range (GstBaseSrc * basesrc) - { - GstGnomeVFSSrc *src; -- gboolean is_local; -+ const gchar *protocol; - - src = GST_GNOME_VFS_SRC (basesrc); - - if (src->uri == NULL) { - GST_WARNING_OBJECT (src, "no URI set yet"); -- /* don't know what to do, let the basesrc class decide for us */ -- if (GST_BASE_SRC_CLASS (parent_class)->check_get_range) -- return GST_BASE_SRC_CLASS (parent_class)->check_get_range (basesrc); -- else -- return FALSE; -+ return FALSE; -+ } -+ -+ if (gnome_vfs_uri_is_local (src->uri)) { -+ GST_LOG_OBJECT (src, "local URI (%s), assuming random access is possible", -+ GST_STR_NULL (src->uri_name)); -+ return TRUE; -+ } -+ -+ /* blacklist certain protocols we know won't work getrange-based */ -+ protocol = gnome_vfs_uri_get_scheme (src->uri); -+ if (protocol == NULL) -+ goto undecided; -+ -+ if (strcmp (protocol, "http") == 0) { -+ GST_LOG_OBJECT (src, "blacklisted protocol '%s', no random access possible" -+ " (URI=%s)", protocol, GST_STR_NULL (src->uri_name)); -+ return FALSE; - } - -- is_local = gnome_vfs_uri_is_local (src->uri); -+ /* fall through to undecided */ -+ -+undecided: -+ { -+ /* don't know what to do, let the basesrc class decide for us */ -+ GST_LOG_OBJECT (src, "undecided about URI '%s', let base class handle it", -+ GST_STR_NULL (src->uri_name)); - -- GST_LOG_OBJECT (src, "%s URI (%s), random access %spossible", -- (is_local) ? "local" : "remote", GST_STR_NULL (src->uri_name), -- (is_local) ? "" : "not "); -+ if (GST_BASE_SRC_CLASS (parent_class)->check_get_range) -+ return GST_BASE_SRC_CLASS (parent_class)->check_get_range (basesrc); - -- return is_local; -+ return FALSE; -+ } - } - - static gboolean diff --git a/media-plugins/gst-plugins-gnomevfs/gst-plugins-gnomevfs-0.8.11.ebuild b/media-plugins/gst-plugins-gnomevfs/gst-plugins-gnomevfs-0.8.11.ebuild deleted file mode 100644 index 3d724f8f99e1..000000000000 --- a/media-plugins/gst-plugins-gnomevfs/gst-plugins-gnomevfs-0.8.11.ebuild +++ /dev/null @@ -1,12 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-gnomevfs/gst-plugins-gnomevfs-0.8.11.ebuild,v 1.12 2006/10/14 21:19:51 vapier Exp $ - -inherit gst-plugins - -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86" -IUSE="" - -DEPEND=">=gnome-base/gnome-vfs-2" - -GST_PLUGINS_BUILD="gnome_vfs" diff --git a/media-plugins/gst-plugins-gnomevfs/gst-plugins-gnomevfs-0.8.12.ebuild b/media-plugins/gst-plugins-gnomevfs/gst-plugins-gnomevfs-0.8.12.ebuild deleted file mode 100644 index 0aa01dea6a08..000000000000 --- a/media-plugins/gst-plugins-gnomevfs/gst-plugins-gnomevfs-0.8.12.ebuild +++ /dev/null @@ -1,12 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-gnomevfs/gst-plugins-gnomevfs-0.8.12.ebuild,v 1.3 2006/10/14 21:19:51 vapier Exp $ - -inherit gst-plugins - -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86" -IUSE="" - -DEPEND=">=gnome-base/gnome-vfs-2" - -GST_PLUGINS_BUILD="gnome_vfs" |