ChangeLog.
[dcpomatic.git] / wscript
1 import subprocess
2 import os
3 import sys
4
5 APPNAME = 'dvdomatic'
6 VERSION = '0.90pre'
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.49', args = '--cflags --libs', uselib_store = 'DCP', 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_AVFORMAT = 1
76         conf.env.STLIB_AVFORMAT = ['avformat']
77         conf.env.HAVE_AVFILTER = 1
78         conf.env.STLIB_AVFILTER = ['avfilter', 'swresample']
79         conf.env.HAVE_AVCODEC = 1
80         conf.env.STLIB_AVCODEC = ['avcodec']
81         conf.env.LIB_AVCODEC = ['z']
82         conf.env.HAVE_AVUTIL = 1
83         conf.env.STLIB_AVUTIL = ['avutil']
84         conf.env.HAVE_SWSCALE = 1
85         conf.env.STLIB_SWSCALE = ['swscale']
86         conf.env.HAVE_SWRESAMPLE = 1
87         conf.env.STLIB_SWRESAMPLE = ['swresample']
88         conf.env.HAVE_POSTPROC = 1
89         conf.env.STLIB_POSTPROC = ['postproc']
90
91         # This doesn't seem to be set up, and we need it otherwise resampling support
92         # won't be included.  Hack upon a hack, obviously
93         conf.env.append_value('CXXFLAGS', ['-DHAVE_SWRESAMPLE=1'])
94
95     conf.check_cfg(package = 'sndfile', args = '--cflags --libs', uselib_store = 'SNDFILE', mandatory = True)
96     conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True)
97     if conf.options.target_windows is False:
98         conf.check_cfg(package = 'liblzma', args = '--cflags --libs', uselib_store = 'LZMA', mandatory = True)
99     conf.check_cfg(package = '', path = conf.options.magickpp_config, args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True)
100
101     if conf.options.static:
102         conf.check_cc(fragment = """
103                         #include <stdio.h>\n
104                         #include <openjpeg.h>\n
105                         int main () {\n
106                         void* p = (void *) opj_image_create;\n
107                         return 0;\n
108                         }
109                         """, msg = 'Checking for library openjpeg', stlib = 'openjpeg', uselib_store = 'OPENJPEG')
110     else:
111         # Only 1.5.0 and 1.5.1 have been tested.
112         conf.check_cfg(package = 'libopenjpeg', args = '--cflags --libs', atleast_version = '1.5.0', uselib_store = 'OPENJPEG', mandatory = True)
113         conf.check_cfg(package = 'libopenjpeg', args = '--cflags --libs', max_version = '1.5.1', mandatory = True)
114
115     conf.check_cxx(fragment = """
116                               #include <boost/version.hpp>\n
117                               #if BOOST_VERSION < 104500\n
118                               #error boost too old\n
119                               #endif\n
120                               int main(void) { return 0; }\n
121                               """,
122                    mandatory = True,
123                    msg = 'Checking for boost library >= 1.45',
124                    okmsg = 'yes',
125                    errmsg = 'too old\nPlease install boost version 1.45 or higher.')
126
127     conf.check_cc(fragment  = """
128                               #include <libssh/libssh.h>\n
129                               int main () {\n
130                               ssh_session s = ssh_new ();\n
131                               return 0;\n
132                               }
133                               """, msg = 'Checking for library libssh', mandatory = True, lib = 'ssh', uselib_store = 'SSH')
134
135     conf.check_cxx(fragment = """
136                               #include <boost/thread.hpp>\n
137                               int main() { boost::thread t (); }\n
138                               """, msg = 'Checking for boost threading library',
139                               libpath = '/usr/local/lib',
140                               lib = [boost_thread, 'boost_system%s' % boost_lib_suffix],
141                               uselib_store = 'BOOST_THREAD')
142
143     conf.check_cxx(fragment = """
144                               #include <boost/filesystem.hpp>\n
145                               int main() { boost::filesystem::copy_file ("a", "b"); }\n
146                               """, msg = 'Checking for boost filesystem library',
147                               libpath = '/usr/local/lib',
148                               lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
149                               uselib_store = 'BOOST_FILESYSTEM')
150
151     conf.check_cxx(fragment = """
152                               #include <boost/date_time.hpp>\n
153                               int main() { boost::gregorian::day_clock::local_day(); }\n
154                               """, msg = 'Checking for boost datetime library',
155                               libpath = '/usr/local/lib',
156                               lib = ['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
157                               uselib_store = 'BOOST_DATETIME')
158
159     conf.check_cxx(fragment = """
160                               #include <boost/signals2.hpp>\n
161                               int main() { boost::signals2::signal<void (int)> x; }\n
162                               """,
163                               msg = 'Checking for boost signals2 library',
164                               uselib_store = 'BOOST_SIGNALS2')
165
166     conf.check_cc(fragment = """
167                              #include <glib.h>
168                              int main() { g_format_size (1); }
169                              """, msg = 'Checking for g_format_size ()',
170                              uselib = 'GLIB',
171                              define_name = 'HAVE_G_FORMAT_SIZE',
172                              mandatory = False)
173
174     conf.check_cc(fragment = """
175                              extern "C" {
176                                #include <libavutil/avutil.h>
177                              }
178                              int main() { AVPixelFormat f; }
179                              """, msg = 'Checking for AVPixelFormat',
180                              uselib = 'AVUTIL',
181                              define_name = 'HAVE_AV_PIXEL_FORMAT',
182                              mandatory = False)
183
184     conf.check_cc(fragment = """
185                              extern "C" {
186                                #include <libavcodec/avcodec.h>
187                              }
188                              int main() { AVFrame* f; av_frame_get_best_effort_timestamp(f); }
189                              """, msg = 'Checking for av_frame_get_best_effort_timestamp',
190                              uselib = 'AVCODEC',
191                              define_name = 'HAVE_AV_FRAME_GET_BEST_EFFORT_TIMESTAMP',
192                              mandatory = False)
193
194     conf.check_cc(fragment = """
195                              extern "C" {
196                                #include <libavfilter/buffersrc.h>
197                              }
198                              int main() { } 
199                              """, msg = 'Checking for buffersrc.h',
200                              uselib = 'AVCODEC',
201                              define_name = 'HAVE_BUFFERSRC_H',
202                              mandatory = False)
203
204     conf.find_program('msgfmt', var='MSGFMT')
205     
206     datadir = conf.env.DATADIR
207     if not datadir:
208         datadir = os.path.join(conf.env.PREFIX, 'share')
209     
210     conf.define('LOCALEDIR', os.path.join(datadir, 'locale'))
211     conf.define('DATADIR', datadir)
212
213     conf.recurse('src')
214     conf.recurse('test')
215
216 def build(bld):
217     create_version_cc(VERSION)
218
219     bld.recurse('src')
220     bld.recurse('test')
221     if bld.env.TARGET_WINDOWS:
222         bld.recurse('windows')
223
224     d = { 'PREFIX' : '${PREFIX' }
225
226     obj = bld(features = 'subst')
227     obj.source = 'dvdomatic.desktop.in'
228     obj.target = 'dvdomatic.desktop'
229     obj.dict = d
230
231     obj = bld(features = 'subst')
232     obj.source = 'dvdomatic_batch.desktop.in'
233     obj.target = 'dvdomatic_batch.desktop'
234     obj.dict = d
235
236     bld.install_files('${PREFIX}/share/applications', ['dvdomatic.desktop', 'dvdomatic_batch.desktop'])
237     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
238         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dvdomatic.png' % r)
239
240     if not bld.env.TARGET_WINDOWS:
241         bld.install_files('${PREFIX}/share/dvdomatic', 'icons/taskbar_icon.png')
242
243     bld.add_post_fun(post)
244
245 def dist(ctx):
246     ctx.excl = """
247                TODO core *~ src/wx/*~ src/lib/*~ builds/*~ doc/manual/*~ src/tools/*~ *.pyc .waf* build .git
248                deps alignment hacks sync *.tar.bz2 *.exe .lock* *build-windows doc/manual/pdf doc/manual/html
249                GRSYMS GRTAGS GSYMS GTAGS
250                """
251
252 def create_version_cc(version):
253     if os.path.exists('.git'):
254         cmd = "LANG= git log --abbrev HEAD^..HEAD ."
255         output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
256         o = output[0].decode('utf-8')
257         commit = o.replace ("commit ", "")[0:10]
258     else:
259         commit = 'release'
260
261     try:
262         text =  '#include "version.h"\n'
263         text += 'char const * dvdomatic_git_commit = \"%s\";\n' % commit
264         text += 'char const * dvdomatic_version = \"%s\";\n' % version
265         print('Writing version information to src/lib/version.cc')
266         o = open('src/lib/version.cc', 'w')
267         o.write(text)
268         o.close()
269     except IOError:
270         print('Could not open src/lib/version.cc for writing\n')
271         sys.exit(-1)
272     
273 def post(ctx):
274     if ctx.cmd == 'install':
275         ctx.exec_command('/sbin/ldconfig')
276
277 def pot(bld):
278     bld.recurse('src')
279
280 def pot_merge(bld):
281     bld.recurse('src')