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