aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia/miro/files/patch-linux__setup.py
blob: 0bc54c37bfa301b32b345fb9b89af9d3e9cdf813 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
--- linux/setup.py.orig 2013-04-05 16:02:42.000000000 +0000
+++ linux/setup.py  2013-08-17 04:32:00.154355610 +0000
@@ -249,7 +249,7 @@
 xlib_ext = \
     Extension("miro.plat.xlibhelper",
         [os.path.join(platform_package_dir, 'xlibhelper.pyx')],
-        library_dirs=['/usr/X11R6/lib'],
+        library_dirs=['/usr/local/lib'],
         libraries=['X11'],
     )
 
@@ -264,6 +264,7 @@
 namecollation_ext = \
     Extension("miro.data.namecollation",
         [os.path.join(portable_dir, 'data', 'namecollation.cpp')],
+        library_dirs=['/usr/local/lib'],
         libraries=['sqlite3'],
     )
 
@@ -300,16 +301,16 @@
 # filter out app.config.template (which is handled specially)
 files = [f for f in listfiles(resource_dir) \
         if os.path.basename(f) != 'app.config.template']
-data_files.append(('/usr/share/miro/resources/', files))
+data_files.append(('/usr/local/share/miro/resources/', files))
 
 # handle the sub directories.
 for dir in ('searchengines', 'images', 'conversions', 'devices'):
     source_dir = os.path.join(resource_dir, dir)
-    dest_dir = os.path.join('/usr/share/miro/resources/', dir)
+    dest_dir = os.path.join('/usr/local/share/miro/resources/', dir)
     data_files.append((dest_dir, listfiles(source_dir)))
 for path, dirs, files in os.walk(os.path.join(resource_dir, 'testdata')):
     relpath = os.path.relpath(path, resource_dir)
-    dest_dir = os.path.join('/usr/share/miro/resources/', relpath)
+    dest_dir = os.path.join('/usr/local/share/miro/resources/', relpath)
     files = [os.path.join(resource_dir, relpath, f) for f in files]
     data_files.append((dest_dir, files))
 
@@ -321,7 +322,7 @@
     files = [os.path.join(root, f) for f in files
              if (not f.endswith("~") and not "#" in f)]
     data_files.append((
-        os.path.join('/usr/share/miro/resources/extensions/', extroot),
+        os.path.join('/usr/local/share/miro/resources/extensions/', extroot),
         files))
 
 # add core platform extension files
@@ -330,28 +331,28 @@
     files = [os.path.join(root, f) for f in files
              if (not f.endswith("~") and not "#" in f)]
     data_files.append((
-        os.path.join('/usr/share/miro/resources/extensions/', extroot),
+        os.path.join('/usr/local/share/miro/resources/extensions/', extroot),
         files))
 
 for mem in ["24", "48", "72", "128"]:
     d = os.path.join("icons", "hicolor", "%sx%s" % (mem, mem), "apps")
     source = os.path.join(platform_dir, d, "miro.png")
-    dest = os.path.join("/usr/share/", d)
+    dest = os.path.join("/usr/local/share/", d)
     data_files.append((dest, [source]))
 
 # add the desktop file, mime data, and man page
 data_files += [
-    ('/usr/share/miro/resources',
+    ('/usr/local/share/miro/resources',
      [os.path.join(root_dir, 'CREDITS')]),
-    ('/usr/share/pixmaps',
+    ('/usr/local/share/pixmaps',
      glob(os.path.join(platform_dir, 'miro.xpm'))),
-    ('/usr/share/applications',
+    ('/usr/local/share/applications',
      [os.path.join(platform_dir, 'miro.desktop')]),
-    ('/usr/share/mime/packages',
+    ('/usr/local/share/mime/packages',
      [os.path.join(platform_dir, 'miro.xml')]),
-    ('/usr/share/man/man1',
+    ('/usr/local/man/man1',
      [os.path.join(platform_dir, 'miro.1.gz')]),
-    ('/usr/share/man/man1',
+    ('/usr/local/man/man1',
      [os.path.join(platform_dir, 'miro.real.1.gz')]),
 ]
 
@@ -377,7 +378,7 @@
 
     def install_app_config(self):
         source = os.path.join(resource_dir, 'app.config.template')
-        dest = '/usr/share/miro/resources/app.config'
+        dest = '/usr/local/share/miro/resources/app.config'
 
         config_file = buildutils.read_simple_config_file(source)
         print "Trying to figure out the git revision...."
@@ -419,7 +420,7 @@
             lang = os.path.basename(source)[:-3]
             if 'LINGUAS' in os.environ and lang not in os.environ['LINGUAS']:
                 continue
-            dest = '/usr/share/locale/%s/LC_MESSAGES/miro.mo' % lang
+            dest = '/usr/local/share/locale/%s/LC_MESSAGES/miro.mo' % lang
             if self.root:
                 dest = change_root(self.root, dest)
             self.mkpath(os.path.dirname(dest))
@@ -434,7 +435,8 @@
         cc = ccompiler.new_compiler()
         # Fedora places ffmpeg include into this directory rather than
         # root /usr/include.
-        cc.add_include_dir('/usr/include/ffmpeg')
+        cc.add_include_dir('/usr/local/include')
+        cc.add_library_dir('/usr/local/lib')
         output_dir = os.path.join(self.build_base, 'miro-segmenter')
         segmenter_objs = cc.compile([segmenter_src],
                                     output_dir=output_dir,
@@ -450,7 +454,7 @@
         self.distribution.scripts.append(segmenter_exe)
 
     def build_echoprint_codegen(self):
-        subprocess.check_call('/usr/bin/make', cwd=echoprint_src_dir)
+        subprocess.check_call('/usr/local/bin/gmake', cwd=echoprint_src_dir)
         src_binary = os.path.join(echoprint_dir, 'echoprint-codegen')
         dest_dir = os.path.join(self.build_base, 'echoprint-codegen')
         dest_binary = os.path.join(dest_dir, 'echoprint-codegen')
@@ -490,7 +494,7 @@
 
 #### install_theme installs a specified theme .zip
 class install_theme(Command):
-    description = 'Install a provided theme to /usr/share/miro/themes'
+    description = 'Install a provided theme to /usr/local/share/miro/themes'
     user_options = [("theme=", None, 'ZIP file containing the theme')]
 
     def initialize_options(self):
@@ -518,7 +522,7 @@
             raise DistutilsOptionError("invalid theme file")
         self.zipfile = zf
         self.theme_name = themeName
-        self.theme_dir = '/usr/share/miro/themes/%s' % themeName
+        self.theme_dir = '/usr/local/share/miro/themes/%s' % themeName
 
     def run(self):
         if os.path.exists(self.theme_dir):