summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Raghavan <ford_prefect@gentoo.org>2011-01-31 06:12:00 +0000
committerArun Raghavan <ford_prefect@gentoo.org>2011-01-31 06:12:00 +0000
commitc51719ceea1b35bbc263b2751114650df0a9a810 (patch)
treefda3197751195155f3b70034b8713c7f0ddbd390 /media-video/pitivi/files
parentslotmove kvkbd to 4 (diff)
downloadgentoo-2-c51719ceea1b35bbc263b2751114650df0a9a810.tar.gz
gentoo-2-c51719ceea1b35bbc263b2751114650df0a9a810.tar.bz2
gentoo-2-c51719ceea1b35bbc263b2751114650df0a9a810.zip
Bump to 0.13.5. Lots of enhancements and bug fixes.
(Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
Diffstat (limited to 'media-video/pitivi/files')
-rw-r--r--media-video/pitivi/files/pitivi-0.13.5-work-with-old-good.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/media-video/pitivi/files/pitivi-0.13.5-work-with-old-good.patch b/media-video/pitivi/files/pitivi-0.13.5-work-with-old-good.patch
new file mode 100644
index 000000000000..e01456f425a6
--- /dev/null
+++ b/media-video/pitivi/files/pitivi-0.13.5-work-with-old-good.patch
@@ -0,0 +1,16 @@
+diff -urNp pitivi-0.13.5.old/pitivi/factories/base.py pitivi-0.13.5/pitivi/factories/base.py
+--- pitivi-0.13.5.old/pitivi/factories/base.py 2011-01-30 16:40:27.672000221 +0530
++++ pitivi-0.13.5/pitivi/factories/base.py 2011-01-30 16:41:12.784000223 +0530
+@@ -421,7 +421,11 @@ class SourceFactory(ObjectFactory):
+ b.csp = gst.element_factory_make("identity")
+
+ b.alpha = gst.element_factory_make("alpha", "internal-alpha")
+- b.alpha.props.prefer_passthrough = True
++ try:
++ b.alpha.props.prefer_passthrough = True
++ except AttributeError:
++ self.warning("User has old version of alpha. "
++ "prefer-passthrough not enabled")
+ b.scale = gst.element_factory_make("videoscale")
+ try:
+ b.scale.props.add_borders = True