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