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