Remove x264 dependency; add options to help building on mageia.
[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     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.36', 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     conf.check_cfg(package = 'liblzma', args = '--cflags --libs', uselib_store = 'LZMA', mandatory = True)
95     conf.check_cfg(package = '', path = conf.options.magickpp_config, args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True)
96
97     if conf.options.static:
98         conf.check_cc(fragment = """
99                         #include <stdio.h>\n
100                         #include <openjpeg.h>\n
101                         int main () {\n
102                         void* p = (void *) opj_image_create;\n
103                         return 0;\n
104                         }
105                         """, msg = 'Checking for library openjpeg', stlib = 'openjpeg', uselib_store = 'OPENJPEG')
106     else:
107         # Only 1.5.0 and 1.5.1 have been tested.
108         conf.check_cfg(package = 'libopenjpeg', args = '--cflags --libs', atleast_version = '1.5.0', uselib_store = 'OPENJPEG', mandatory = True)
109         conf.check_cfg(package = 'libopenjpeg', args = '--cflags --libs', max_version = '1.5.1', mandatory = True)
110
111     conf.check_cc(fragment  = """
112                               #include <libssh/libssh.h>\n
113                               int main () {\n
114                               ssh_session s = ssh_new ();\n
115                               return 0;\n
116                               }
117                               """, msg = 'Checking for library libssh', mandatory = True, lib = 'ssh', uselib_store = 'SSH')
118
119     conf.check_cxx(fragment = """
120                               #include <boost/thread.hpp>\n
121                               int main() { boost::thread t (); }\n
122                               """, msg = 'Checking for boost threading library',
123                               lib = [boost_thread, 'boost_system%s' % boost_lib_suffix],
124                               uselib_store = 'BOOST_THREAD')
125
126     conf.check_cxx(fragment = """
127                               #include <boost/filesystem.hpp>\n
128                               int main() { boost::filesystem::copy_file ("a", "b"); }\n
129                               """, msg = 'Checking for boost filesystem library',
130                               libpath = '/usr/local/lib',
131                               lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
132                               uselib_store = 'BOOST_FILESYSTEM')
133
134     conf.check_cxx(fragment = """
135                               #include <boost/date_time.hpp>\n
136                               int main() { boost::gregorian::day_clock::local_day(); }\n
137                               """, msg = 'Checking for boost datetime library',
138                               libpath = '/usr/local/lib',
139                               lib = ['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
140                               uselib_store = 'BOOST_DATETIME')
141
142     conf.check_cxx(fragment = """
143                               #include <boost/signals2.hpp>\n
144                               int main() { boost::signals2::signal<void (int)> x; }\n
145                               """,
146                               msg = 'Checking for boost signals2 library',
147                               uselib_store = 'BOOST_SIGNALS2')
148
149     conf.check_cc(fragment = """
150                              #include <glib.h>
151                              int main() { g_format_size (1); }
152                              """, msg = 'Checking for g_format_size ()',
153                              uselib = 'GLIB',
154                              define_name = 'HAVE_G_FORMAT_SIZE',
155                              mandatory = False)
156
157     conf.check_cc(fragment = """
158                              extern "C" {
159                                #include <libavutil/avutil.h>
160                              }
161                              int main() { AVPixelFormat f; }
162                              """, msg = 'Checking for AVPixelFormat',
163                              uselib = 'AVUTIL',
164                              define_name = 'HAVE_AV_PIXEL_FORMAT',
165                              mandatory = False)
166
167     conf.check_cc(fragment = """
168                              extern "C" {
169                                #include <libavcodec/avcodec.h>
170                              }
171                              int main() { AVFrame* f; av_frame_get_best_effort_timestamp(f); }
172                              """, msg = 'Checking for av_frame_get_best_effort_timestamp',
173                              uselib = 'AVCODEC',
174                              define_name = 'HAVE_AV_FRAME_GET_BEST_EFFORT_TIMESTAMP',
175                              mandatory = False)
176
177     conf.check_cc(fragment = """
178                              extern "C" {
179                                #include <libavfilter/buffersrc.h>
180                              }
181                              int main() { } 
182                              """, msg = 'Checking for buffersrc.h',
183                              uselib = 'AVCODEC',
184                              define_name = 'HAVE_BUFFERSRC_H',
185                              mandatory = False)
186
187     conf.recurse('src')
188     conf.recurse('test')
189
190 def build(bld):
191     create_version_cc(VERSION)
192
193     bld.recurse('src')
194     bld.recurse('test')
195     if bld.env.TARGET_WINDOWS:
196         bld.recurse('windows')
197
198     d = { 'PREFIX' : '${PREFIX' }
199
200     obj = bld(features = 'subst')
201     obj.source = 'dvdomatic.desktop.in'
202     obj.target = 'dvdomatic.desktop'
203     obj.dict = d
204
205     bld.install_files('${PREFIX}/share/applications', 'dvdomatic.desktop')
206     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
207         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dvdomatic.png' % r)
208
209     bld.add_post_fun(post)
210
211 def dist(ctx):
212     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'
213
214 def create_version_cc(version):
215     if os.path.exists('.git'):
216         cmd = "LANG= git log --abbrev HEAD^..HEAD ."
217         output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
218         o = output[0].decode('utf-8')
219         commit = o.replace ("commit ", "")[0:10]
220     else:
221         commit = 'release'
222
223     try:
224         text =  '#include "version.h"\n'
225         text += 'char const * dvdomatic_git_commit = \"%s\";\n' % commit
226         text += 'char const * dvdomatic_version = \"%s\";\n' % version
227         print('Writing version information to src/lib/version.cc')
228         o = open('src/lib/version.cc', 'w')
229         o.write(text)
230         o.close()
231     except IOError:
232         print('Could not open src/lib/version.cc for writing\n')
233         sys.exit(-1)
234     
235 def post(ctx):
236     if ctx.cmd == 'install':
237         ctx.exec_command('/sbin/ldconfig')