Try to move Linux desktop files into platform/
[dcpomatic.git] / wscript
1 import subprocess
2 import os
3 import sys
4
5 APPNAME = 'dvdomatic'
6 VERSION = '0.94pre'
7
8 def options(opt):
9     opt.load('compiler_cxx')
10     opt.load('winres')
11
12     opt.add_option('--enable-debug', action='store_true', default=False, help='build with debugging information and without optimisation')
13     opt.add_option('--disable-gui', action='store_true', default=False, help='disable building of GUI tools')
14     opt.add_option('--target-windows', action='store_true', default=False, help='set up to do a cross-compile to Windows')
15     opt.add_option('--static', action='store_true', default=False, help='build statically, and link statically to libdcp and FFmpeg')
16     opt.add_option('--magickpp-config', action='store', default='Magick++-config', help='path to Magick++-config')
17     opt.add_option('--wx-config', action='store', default='wx-config', help='path to wx-config')
18     opt.add_option('--osx', action='store_true', default=False, help='build on OS X')
19
20 def configure(conf):
21     conf.load('compiler_cxx')
22     if conf.options.target_windows:
23         conf.load('winres')
24
25     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-msse', '-mfpmath=sse', '-ffast-math', '-fno-strict-aliasing',
26                                        '-Wall', '-Wno-attributes', '-Wextra'])
27
28     if conf.options.target_windows:
29         conf.env.append_value('CXXFLAGS', ['-DDVDOMATIC_WINDOWS', '-DWIN32_LEAN_AND_MEAN', '-DBOOST_USE_WINDOWS_H', '-DUNICODE'])
30         wxrc = os.popen('wx-config --rescomp').read().split()[1:]
31         conf.env.append_value('WINRCFLAGS', wxrc)
32         if conf.options.enable_debug:
33             conf.env.append_value('CXXFLAGS', ['-mconsole'])
34             conf.env.append_value('LINKFLAGS', ['-mconsole'])
35         conf.check(lib = 'ws2_32', uselib_store = 'WINSOCK2', msg = "Checking for library winsock2")
36         conf.check(lib = 'bfd', uselib_store = 'BFD', msg = "Checking for library bfd")
37         conf.check(lib = 'dbghelp', uselib_store = 'DBGHELP', msg = "Checking for library dbghelp")
38         conf.check(lib = 'iberty', uselib_store = 'IBERTY', msg = "Checking for library iberty")
39         boost_lib_suffix = '-mt'
40         boost_thread = 'boost_thread_win32-mt'
41     else:
42         conf.env.append_value('CXXFLAGS', '-DDVDOMATIC_POSIX')
43         conf.env.append_value('CXXFLAGS', '-DPOSIX_LOCALE_PREFIX="%s/share/locale"' % conf.env['PREFIX'])
44         conf.env.append_value('CXXFLAGS', '-DPOSIX_ICON_PREFIX="%s/share/dvdomatic"' % conf.env['PREFIX'])
45         boost_lib_suffix = ''
46         boost_thread = 'boost_thread'
47         conf.env.append_value('LINKFLAGS', '-pthread')
48         # libxml2 seems to be linked against this on Ubuntu, but it doesn't mention it in its .pc file
49         conf.env.append_value('LIB', 'lzma')
50
51     conf.env.TARGET_WINDOWS = conf.options.target_windows
52     conf.env.DISABLE_GUI = conf.options.disable_gui
53     conf.env.STATIC = conf.options.static
54     conf.env.VERSION = VERSION
55     conf.env.TARGET_OSX = conf.options.osx
56     conf.env.TARGET_LINUX = not conf.options.target_windows and not conf.options.osx
57
58     if conf.options.enable_debug:
59         conf.env.append_value('CXXFLAGS', ['-g', '-DDVDOMATIC_DEBUG'])
60     else:
61         conf.env.append_value('CXXFLAGS', '-O2')
62
63     if not conf.options.static:
64         conf.check_cfg(package = 'libdcp', atleast_version = '0.49', args = '--cflags --libs', uselib_store = 'DCP', mandatory = True)
65         conf.check_cfg(package = 'libavformat', args = '--cflags --libs', uselib_store = 'AVFORMAT', mandatory = True)
66         conf.check_cfg(package = 'libavfilter', args = '--cflags --libs', uselib_store = 'AVFILTER', mandatory = True)
67         conf.check_cfg(package = 'libavcodec', args = '--cflags --libs', uselib_store = 'AVCODEC', mandatory = True)
68         conf.check_cfg(package = 'libavutil', args = '--cflags --libs', uselib_store = 'AVUTIL', mandatory = True)
69         conf.check_cfg(package = 'libswscale', args = '--cflags --libs', uselib_store = 'SWSCALE', mandatory = True)
70         conf.check_cfg(package = 'libswresample', args = '--cflags --libs', uselib_store = 'SWRESAMPLE', mandatory = False)
71         conf.check_cfg(package = 'libpostproc', args = '--cflags --libs', uselib_store = 'POSTPROC', mandatory = True)
72     else:
73         # This is hackio grotesquio for static builds (ie for .deb packages).  We need to link some things
74         # statically and some dynamically, or things get horribly confused and the dynamic linker (I think)
75         # crashes horribly.  These calls do what the check_cfg calls would have done, but specify the
76         # different bits as static or dynamic as required.  It'll break if you look at it funny, but
77         # I think anyone else who builds would do so dynamically.
78         conf.env.HAVE_DCP = 1
79         conf.env.STLIB_DCP = ['dcp', 'asdcp-libdcp', 'kumu-libdcp']
80         conf.env.LIB_DCP = ['glibmm-2.4', 'xml++-2.6', 'ssl', 'crypto', 'bz2']
81         conf.env.HAVE_AVFORMAT = 1
82         conf.env.STLIB_AVFORMAT = ['avformat']
83         conf.env.HAVE_AVFILTER = 1
84         conf.env.STLIB_AVFILTER = ['avfilter', 'swresample']
85         conf.env.HAVE_AVCODEC = 1
86         conf.env.STLIB_AVCODEC = ['avcodec']
87         conf.env.LIB_AVCODEC = ['z']
88         conf.env.HAVE_AVUTIL = 1
89         conf.env.STLIB_AVUTIL = ['avutil']
90         conf.env.HAVE_SWSCALE = 1
91         conf.env.STLIB_SWSCALE = ['swscale']
92         conf.env.HAVE_SWRESAMPLE = 1
93         conf.env.STLIB_SWRESAMPLE = ['swresample']
94         conf.env.HAVE_POSTPROC = 1
95         conf.env.STLIB_POSTPROC = ['postproc']
96
97         # This doesn't seem to be set up, and we need it otherwise resampling support
98         # won't be included.  Hack upon a hack, obviously
99         conf.env.append_value('CXXFLAGS', ['-DHAVE_SWRESAMPLE=1'])
100
101     conf.check_cfg(package = 'sndfile', args = '--cflags --libs', uselib_store = 'SNDFILE', mandatory = True)
102     conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True)
103     if conf.options.target_windows is False:
104         conf.check_cfg(package = 'liblzma', args = '--cflags --libs', uselib_store = 'LZMA', mandatory = True)
105     conf.check_cfg(package = '', path = conf.options.magickpp_config, args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True)
106
107     if conf.options.static:
108         conf.check_cc(fragment = """
109                         #include <stdio.h>\n
110                         #include <openjpeg.h>\n
111                         int main () {\n
112                         void* p = (void *) opj_image_create;\n
113                         return 0;\n
114                         }
115                         """, msg = 'Checking for library openjpeg', stlib = 'openjpeg', uselib_store = 'OPENJPEG')
116     else:
117         # Only 1.5.0 and 1.5.1 have been tested.
118         conf.check_cfg(package = 'libopenjpeg', args = '--cflags --libs', atleast_version = '1.5.0', uselib_store = 'OPENJPEG', mandatory = True)
119         conf.check_cfg(package = 'libopenjpeg', args = '--cflags --libs', max_version = '1.5.1', mandatory = True)
120
121     conf.check_cxx(fragment = """
122                               #include <boost/version.hpp>\n
123                               #if BOOST_VERSION < 104500\n
124                               #error boost too old\n
125                               #endif\n
126                               int main(void) { return 0; }\n
127                               """,
128                    mandatory = True,
129                    msg = 'Checking for boost library >= 1.45',
130                    okmsg = 'yes',
131                    errmsg = 'too old\nPlease install boost version 1.45 or higher.')
132
133     conf.check_cc(fragment  = """
134                               #include <libssh/libssh.h>\n
135                               int main () {\n
136                               ssh_session s = ssh_new ();\n
137                               return 0;\n
138                               }
139                               """, msg = 'Checking for library libssh', mandatory = True, lib = 'ssh', uselib_store = 'SSH')
140
141     conf.check_cxx(fragment = """
142                               #include <boost/thread.hpp>\n
143                               int main() { boost::thread t (); }\n
144                               """, msg = 'Checking for boost threading library',
145                               libpath = '/usr/local/lib',
146                               lib = [boost_thread, 'boost_system%s' % boost_lib_suffix],
147                               uselib_store = 'BOOST_THREAD')
148
149     conf.check_cxx(fragment = """
150                               #include <boost/filesystem.hpp>\n
151                               int main() { boost::filesystem::copy_file ("a", "b"); }\n
152                               """, msg = 'Checking for boost filesystem library',
153                               libpath = '/usr/local/lib',
154                               lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
155                               uselib_store = 'BOOST_FILESYSTEM')
156
157     conf.check_cxx(fragment = """
158                               #include <boost/date_time.hpp>\n
159                               int main() { boost::gregorian::day_clock::local_day(); }\n
160                               """, msg = 'Checking for boost datetime library',
161                               libpath = '/usr/local/lib',
162                               lib = ['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
163                               uselib_store = 'BOOST_DATETIME')
164
165     conf.check_cxx(fragment = """
166                               #include <boost/signals2.hpp>\n
167                               int main() { boost::signals2::signal<void (int)> x; }\n
168                               """,
169                               msg = 'Checking for boost signals2 library',
170                               uselib_store = 'BOOST_SIGNALS2')
171
172     conf.check_cc(fragment = """
173                              #include <glib.h>
174                              int main() { g_format_size (1); }
175                              """, msg = 'Checking for g_format_size ()',
176                              uselib = 'GLIB',
177                              define_name = 'HAVE_G_FORMAT_SIZE',
178                              mandatory = False)
179
180     conf.find_program('msgfmt', var='MSGFMT')
181     
182     datadir = conf.env.DATADIR
183     if not datadir:
184         datadir = os.path.join(conf.env.PREFIX, 'share')
185     
186     conf.define('LOCALEDIR', os.path.join(datadir, 'locale'))
187     conf.define('DATADIR', datadir)
188
189     conf.recurse('src')
190     conf.recurse('test')
191
192 def build(bld):
193     create_version_cc(VERSION)
194
195     bld.recurse('src')
196     bld.recurse('test')
197     if bld.env.TARGET_WINDOWS:
198         bld.recurse('platform/windows')
199     if bld.env.TARGET_LINUX:
200         bld.recurse('platform/linux')
201
202     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
203         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dvdomatic.png' % r)
204
205     if not bld.env.TARGET_WINDOWS:
206         bld.install_files('${PREFIX}/share/dvdomatic', 'icons/taskbar_icon.png')
207
208     bld.add_post_fun(post)
209
210 def dist(ctx):
211     ctx.excl = """
212                TODO core *~ src/wx/*~ src/lib/*~ builds/*~ doc/manual/*~ src/tools/*~ *.pyc .waf* build .git
213                deps alignment hacks sync *.tar.bz2 *.exe .lock* *build-windows doc/manual/pdf doc/manual/html
214                GRSYMS GRTAGS GSYMS GTAGS
215                """
216
217 def create_version_cc(version):
218     if os.path.exists('.git'):
219         cmd = "LANG= git log --abbrev HEAD^..HEAD ."
220         output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
221         o = output[0].decode('utf-8')
222         commit = o.replace ("commit ", "")[0:10]
223     else:
224         commit = 'release'
225
226     try:
227         text =  '#include "version.h"\n'
228         text += 'char const * dvdomatic_git_commit = \"%s\";\n' % commit
229         text += 'char const * dvdomatic_version = \"%s\";\n' % version
230         print('Writing version information to src/lib/version.cc')
231         o = open('src/lib/version.cc', 'w')
232         o.write(text)
233         o.close()
234     except IOError:
235         print('Could not open src/lib/version.cc for writing\n')
236         sys.exit(-1)
237     
238 def post(ctx):
239     if ctx.cmd == 'install':
240         ctx.exec_command('/sbin/ldconfig')
241
242 def pot(bld):
243     bld.recurse('src')
244
245 def pot_merge(bld):
246     bld.recurse('src')