Bump version
[dcpomatic.git] / wscript
1 import subprocess
2 import os
3 import sys
4
5 APPNAME = 'dvdomatic'
6 VERSION = '0.51'
7
8 def options(opt):
9     opt.load('compiler_cxx')
10     opt.load('winres')
11
12     opt.add_option('--debug-hash', action='store_true', default = False, help = 'print hashes of data at various points')
13     opt.add_option('--enable-debug', action='store_true', default = False, help = 'build with debugging information and without optimisation')
14     opt.add_option('--disable-gui', action='store_true', default = False, help = 'disable building of GUI tools')
15     opt.add_option('--disable-player', action='store_true', default = False, help = 'disable building of the player components')
16     opt.add_option('--target-windows', action='store_true', default = False, help = 'set up to do a cross-compile to Windows')
17
18 def configure(conf):
19     conf.load('compiler_cxx')
20     if conf.options.target_windows:
21         conf.load('winres')
22
23     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-msse', '-mfpmath=sse', '-ffast-math', '-fno-strict-aliasing', '-Wall', '-Wno-attributes'])
24     conf.env.append_value('CXXFLAGS', ['-DDVDOMATIC_VERSION="%s"' % VERSION])
25
26     # Turn off player for now
27     conf.options.disable_player = True
28
29     if conf.options.target_windows:
30         conf.env.append_value('CXXFLAGS', ['-DDVDOMATIC_WINDOWS', '-DWIN32_LEAN_AND_MEAN'])
31         conf.options.disable_player = True
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
40     conf.env.DEBUG_HASH = conf.options.debug_hash
41     conf.env.TARGET_WINDOWS = conf.options.target_windows
42     conf.env.DISABLE_GUI = conf.options.disable_gui
43     conf.env.DISABLE_PLAYER = conf.options.disable_player
44     conf.env.VERSION = VERSION
45
46     if conf.options.disable_player:
47         conf.env.append_value('CXXFLAGS', '-DDVDOMATIC_DISABLE_PLAYER')
48
49     if conf.options.enable_debug:
50         conf.env.append_value('CXXFLAGS', ['-g', '-DDVDOMATIC_DEBUG'])
51     else:
52         conf.env.append_value('CXXFLAGS', '-O3')
53
54     conf.check_cfg(package = 'sigc++-2.0', args = '--cflags --libs', uselib_store = 'SIGC++', 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     conf.check_cfg(package = 'sndfile', args = '--cflags --libs', uselib_store = 'SNDFILE', mandatory = True)
63     conf.check_cfg(package = 'libdcp', atleast_version = '0.21', args = '--cflags --libs', uselib_store = 'DCP', mandatory = True)
64     conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True)
65     conf.check_cfg(package = '', path = 'Magick++-config', args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True)
66     conf.check_cc(msg = 'Checking for library libtiff', function_name = 'TIFFOpen', header_name = 'tiffio.h', lib = 'tiff', uselib_store = 'TIFF')
67     conf.check_cc(fragment  = """
68                               #include <stdio.h>\n
69                               #include <openjpeg.h>\n
70                               int main () {\n
71                               void* p = (void *) opj_image_create;\n
72                               return 0;\n
73                               }
74                               """, msg = 'Checking for library openjpeg', lib = 'openjpeg', uselib_store = 'OPENJPEG')
75
76     conf.check_cc(fragment  = """
77                               #include <libssh/libssh.h>\n
78                               int main () {\n
79                               ssh_session s = ssh_new ();\n
80                               return 0;\n
81                               }
82                               """, msg = 'Checking for library libssh', mandatory = False, lib = 'ssh', uselib_store = 'SSH')
83
84     conf.check_cxx(fragment = """
85                               #include <boost/thread.hpp>\n
86                               int main() { boost::thread t (); }\n
87                               """, msg = 'Checking for boost threading library',
88                               lib = [boost_thread, 'boost_system%s' % boost_lib_suffix],
89                               uselib_store = 'BOOST_THREAD')
90
91     conf.check_cxx(fragment = """
92                               #include <boost/filesystem.hpp>\n
93                               int main() { boost::filesystem::copy_file ("a", "b"); }\n
94                               """, msg = 'Checking for boost filesystem library',
95                               libpath = '/usr/local/lib',
96                               lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
97                               uselib_store = 'BOOST_FILESYSTEM')
98
99     conf.check_cc(fragment = """
100                              #include <glib.h>
101                              int main() { g_format_size (1); }
102                              """, msg = 'Checking for g_format_size ()',
103                              uselib = 'GLIB',
104                              define_name = 'HAVE_G_FORMAT_SIZE',
105                              mandatory = False)
106
107     conf.recurse('src')
108     conf.recurse('test')
109
110 def build(bld):
111     create_version_cc(VERSION)
112
113     bld.recurse('src')
114     bld.recurse('test')
115     if bld.env.TARGET_WINDOWS:
116         bld.recurse('windows')
117
118     d = { 'PREFIX' : '${PREFIX' }
119
120     obj = bld(features = 'subst')
121     obj.source = 'dvdomatic.desktop.in'
122     obj.target = 'dvdomatic.desktop'
123     obj.dict = d
124
125     bld.install_files('${PREFIX}/share/applications', 'dvdomatic.desktop')
126     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
127         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dvdomatic.png' % r)
128
129     bld.add_post_fun(post)
130
131 def dist(ctx):
132     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'
133
134 def create_version_cc(version):
135     if os.path.exists('.git'):
136         cmd = "LANG= git log --abbrev HEAD^..HEAD ."
137         output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
138         o = output[0].decode('utf-8')
139         commit = o.replace ("commit ", "")[0:10]
140     else:
141         commit = 'release'
142
143     try:
144         text =  '#include "version.h"\n'
145         text += 'char const * dvdomatic_git_commit = \"%s\";\n' % commit
146         text += 'char const * dvdomatic_version = \"%s\";\n' % version
147         print('Writing version information to src/lib/version.cc')
148         o = open('src/lib/version.cc', 'w')
149         o.write(text)
150         o.close()
151     except IOError:
152         print('Could not open src/lib/version.cc for writing\n')
153         sys.exit(-1)
154     
155 def post(ctx):
156     if ctx.cmd == 'install':
157         ctx.exec_command('/sbin/ldconfig')