| 1 |
diff -up Miro-2.5.2/platform/gtk-x11/plat/renderers/xinerenderer.py.orig Miro-2.5.2/platform/gtk-x11/plat/renderers/xinerenderer.py
|
| 2 |
--- Miro-2.5.2/platform/gtk-x11/plat/renderers/xinerenderer.py.orig 2009-08-04 01:32:18.000000000 -0400
|
| 3 |
+++ Miro-2.5.2/platform/gtk-x11/plat/renderers/xinerenderer.py 2009-08-04 01:36:20.000000000 -0400
|
| 4 |
@@ -247,8 +247,8 @@ class AudioRenderer(Renderer):
|
| 5 |
Renderer.on_eos(self)
|
| 6 |
|
| 7 |
def movie_data_program_info(movie_path, thumbnail_path):
|
| 8 |
- if os.path.exists(resources.path('../../../lib/miro/xine_extractor')):
|
| 9 |
- path = resources.path('../../../lib/miro/xine_extractor')
|
| 10 |
+ if os.path.exists(resources.path('/usr/libexec/xine_extractor')):
|
| 11 |
+ path = resources.path('/usr/libexec/xine_extractor')
|
| 12 |
return ((path, movie_path, thumbnail_path), None)
|
| 13 |
else:
|
| 14 |
logging.error("xine_extractor cannot be found.")
|
| 15 |
diff -up Miro-2.5.2/platform/gtk-x11/setup.py.orig Miro-2.5.2/platform/gtk-x11/setup.py
|
| 16 |
--- Miro-2.5.2/platform/gtk-x11/setup.py.orig 2009-08-04 01:32:05.000000000 -0400
|
| 17 |
+++ Miro-2.5.2/platform/gtk-x11/setup.py 2009-08-04 01:35:39.000000000 -0400
|
| 18 |
@@ -673,7 +673,7 @@ data_files += [
|
| 19 |
[os.path.join(platform_dir, 'miro.1.gz')]),
|
| 20 |
('/usr/share/man/man1',
|
| 21 |
[os.path.join(platform_dir, 'miro.real.1.gz')]),
|
| 22 |
- ('/usr/lib/miro/',
|
| 23 |
+ ('/usr/libexec//',
|
| 24 |
[os.path.join(platform_dir, 'xine/xine_extractor')]),
|
| 25 |
]
|
| 26 |
|