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