Bump version
[dcpomatic.git] / wscript
1 import subprocess
2 import os
3 import sys
4
5 APPNAME = 'dvdomatic'
6 VERSION = '0.59'
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     # Arguments to pkg-config for things that we might want to link statically
54     pkgconfig_args = '--cflags --libs'
55     if conf.options.static:
56         pkgconfig_args += ' --static'
57
58     conf.check_cfg(package = 'libdcp', atleast_version = '0.34', args = pkgconfig_args, uselib_store = 'DCP', mandatory = True)
59     conf.check_cfg(package = 'libavformat', args = pkgconfig_args, uselib_store = 'AVFORMAT', mandatory = True)
60     conf.check_cfg(package = 'libavfilter', args = pkgconfig_args, uselib_store = 'AVFILTER', mandatory = True)
61     conf.check_cfg(package = 'libavcodec', args = pkgconfig_args, uselib_store = 'AVCODEC', mandatory = True)
62     conf.check_cfg(package = 'libavutil', args = pkgconfig_args, uselib_store = 'AVUTIL', mandatory = True)
63     conf.check_cfg(package = 'libswscale', args = pkgconfig_args, uselib_store = 'SWSCALE', mandatory = True)
64     conf.check_cfg(package = 'libswresample', args = pkgconfig_args, uselib_store = 'SWRESAMPLE', mandatory = False)
65     conf.check_cfg(package = 'libpostproc', args = pkgconfig_args, uselib_store = 'POSTPROC', mandatory = True)
66     conf.check_cfg(package = 'sndfile', args = '--cflags --libs', uselib_store = 'SNDFILE', mandatory = True)
67     conf.check_cfg(package = 'libdcp', atleast_version = '0.33', args = pkgconfig_args, uselib_store = 'DCP', mandatory = True)
68     conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True)
69     conf.check_cfg(package = '', path = 'Magick++-config', args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True)
70
71     openjpeg_fragment = """
72                         #include <stdio.h>\n
73                         #include <openjpeg.h>\n
74                         int main () {\n
75                         void* p = (void *) opj_image_create;\n
76                         return 0;\n
77                         }
78                         """
79
80     if conf.options.static:
81         conf.check_cc(fragment  = openjpeg_fragment, msg = 'Checking for library openjpeg', stlib = 'openjpeg', uselib_store = 'OPENJPEG')
82     else:
83         conf.check_cc(fragment  = openjpeg_fragment, msg = 'Checking for library openjpeg', lib = 'openjpeg', uselib_store = 'OPENJPEG')
84
85     conf.check_cc(fragment  = """
86                               #include <libssh/libssh.h>\n
87                               int main () {\n
88                               ssh_session s = ssh_new ();\n
89                               return 0;\n
90                               }
91                               """, msg = 'Checking for library libssh', mandatory = False, lib = 'ssh', uselib_store = 'SSH')
92
93     conf.check_cxx(fragment = """
94                               #include <boost/thread.hpp>\n
95                               int main() { boost::thread t (); }\n
96                               """, msg = 'Checking for boost threading library',
97                               lib = [boost_thread, 'boost_system%s' % boost_lib_suffix],
98                               uselib_store = 'BOOST_THREAD')
99
100     conf.check_cxx(fragment = """
101                               #include <boost/filesystem.hpp>\n
102                               int main() { boost::filesystem::copy_file ("a", "b"); }\n
103                               """, msg = 'Checking for boost filesystem library',
104                               libpath = '/usr/local/lib',
105                               lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
106                               uselib_store = 'BOOST_FILESYSTEM')
107
108     conf.check_cxx(fragment = """
109                               #include <boost/date_time.hpp>\n
110                               int main() { boost::gregorian::day_clock::local_day(); }\n
111                               """, msg = 'Checking for boost datetime library',
112                               libpath = '/usr/local/lib',
113                               lib = ['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
114                               uselib_store = 'BOOST_DATETIME')
115
116     conf.check_cxx(fragment = """
117                               #include <boost/signals2.hpp>\n
118                               int main() { boost::signals2::signal<void (int)> x; }\n
119                               """,
120                               msg = 'Checking for boost signals2 library',
121                               uselib_store = 'BOOST_SIGNALS2')
122
123     conf.check_cc(fragment = """
124                              #include <glib.h>
125                              int main() { g_format_size (1); }
126                              """, msg = 'Checking for g_format_size ()',
127                              uselib = 'GLIB',
128                              define_name = 'HAVE_G_FORMAT_SIZE',
129                              mandatory = False)
130
131     conf.recurse('src')
132     conf.recurse('test')
133
134 def build(bld):
135     create_version_cc(VERSION)
136
137     bld.recurse('src')
138     bld.recurse('test')
139     if bld.env.TARGET_WINDOWS:
140         bld.recurse('windows')
141
142     d = { 'PREFIX' : '${PREFIX' }
143
144     obj = bld(features = 'subst')
145     obj.source = 'dvdomatic.desktop.in'
146     obj.target = 'dvdomatic.desktop'
147     obj.dict = d
148
149     bld.install_files('${PREFIX}/share/applications', 'dvdomatic.desktop')
150     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
151         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dvdomatic.png' % r)
152
153     bld.add_post_fun(post)
154
155 def dist(ctx):
156     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'
157
158 def create_version_cc(version):
159     if os.path.exists('.git'):
160         cmd = "LANG= git log --abbrev HEAD^..HEAD ."
161         output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
162         o = output[0].decode('utf-8')
163         commit = o.replace ("commit ", "")[0:10]
164     else:
165         commit = 'release'
166
167     try:
168         text =  '#include "version.h"\n'
169         text += 'char const * dvdomatic_git_commit = \"%s\";\n' % commit
170         text += 'char const * dvdomatic_version = \"%s\";\n' % version
171         print('Writing version information to src/lib/version.cc')
172         o = open('src/lib/version.cc', 'w')
173         o.write(text)
174         o.close()
175     except IOError:
176         print('Could not open src/lib/version.cc for writing\n')
177         sys.exit(-1)
178     
179 def post(ctx):
180     if ctx.cmd == 'install':
181         ctx.exec_command('/sbin/ldconfig')