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