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