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