Merge branch 'dead-wood'
[dcpomatic.git] / wscript
1 import subprocess
2 import os
3 import sys
4
5 APPNAME = 'dvdomatic'
6 VERSION = '0.59pre'
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
16 def configure(conf):
17     conf.load('compiler_cxx')
18     if conf.options.target_windows:
19         conf.load('winres')
20
21     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-msse', '-mfpmath=sse', '-ffast-math', '-fno-strict-aliasing', '-Wall', '-Wno-attributes'])
22
23     if conf.options.target_windows:
24         conf.env.append_value('CXXFLAGS', ['-DDVDOMATIC_WINDOWS', '-DWIN32_LEAN_AND_MEAN', '-DBOOST_USE_WINDOWS_H'])
25         wxrc = os.popen('wx-config --rescomp').read().split()[1:]
26         print wxrc
27         conf.env.append_value('WINRCFLAGS', wxrc)
28         if conf.options.enable_debug:
29             conf.env.append_value('CXXFLAGS', ['-mconsole'])
30             conf.env.append_value('LINKFLAGS', ['-mconsole'])
31         conf.check(lib = 'ws2_32', uselib_store = 'WINSOCK2', msg = "Checking for library winsock2")
32         boost_lib_suffix = '-mt'
33         boost_thread = 'boost_thread_win32-mt'
34     else:
35         conf.env.append_value('CXXFLAGS', '-DDVDOMATIC_POSIX')
36         boost_lib_suffix = ''
37         boost_thread = 'boost_thread'
38         conf.env.append_value('LINKFLAGS', '-pthread')
39
40     conf.env.TARGET_WINDOWS = conf.options.target_windows
41     conf.env.DISABLE_GUI = conf.options.disable_gui
42     conf.env.VERSION = VERSION
43
44     if conf.options.enable_debug:
45         conf.env.append_value('CXXFLAGS', ['-g', '-DDVDOMATIC_DEBUG'])
46     else:
47         conf.env.append_value('CXXFLAGS', '-O2')
48
49     conf.check_cfg(package = 'libavformat', args = '--cflags --libs', uselib_store = 'AVFORMAT', mandatory = True)
50     conf.check_cfg(package = 'libavfilter', args = '--cflags --libs', uselib_store = 'AVFILTER', mandatory = True)
51     conf.check_cfg(package = 'libavcodec', args = '--cflags --libs', uselib_store = 'AVCODEC', mandatory = True)
52     conf.check_cfg(package = 'libavutil', args = '--cflags --libs', uselib_store = 'AVUTIL', mandatory = True)
53     conf.check_cfg(package = 'libswscale', args = '--cflags --libs', uselib_store = 'SWSCALE', mandatory = True)
54     conf.check_cfg(package = 'libswresample', args = '--cflags --libs', uselib_store = 'SWRESAMPLE', mandatory = False)
55     conf.check_cfg(package = 'libpostproc', args = '--cflags --libs', uselib_store = 'POSTPROC', mandatory = True)
56     conf.check_cfg(package = 'sndfile', args = '--cflags --libs', uselib_store = 'SNDFILE', mandatory = True)
57     conf.check_cfg(package = 'libdcp', atleast_version = '0.32', args = '--cflags --libs', uselib_store = 'DCP', mandatory = True)
58     conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True)
59     conf.check_cfg(package = '', path = 'Magick++-config', args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True)
60     conf.check_cc(msg = 'Checking for library libtiff', function_name = 'TIFFOpen', header_name = 'tiffio.h', lib = 'tiff', uselib_store = 'TIFF')
61     conf.check_cc(fragment  = """
62                               #include <stdio.h>\n
63                               #include <openjpeg.h>\n
64                               int main () {\n
65                               void* p = (void *) opj_image_create;\n
66                               return 0;\n
67                               }
68                               """, msg = 'Checking for library openjpeg', lib = 'openjpeg', uselib_store = 'OPENJPEG')
69
70     conf.check_cc(fragment  = """
71                               #include <libssh/libssh.h>\n
72                               int main () {\n
73                               ssh_session s = ssh_new ();\n
74                               return 0;\n
75                               }
76                               """, msg = 'Checking for library libssh', mandatory = False, lib = 'ssh', uselib_store = 'SSH')
77
78     conf.check_cxx(fragment = """
79                               #include <boost/thread.hpp>\n
80                               int main() { boost::thread t (); }\n
81                               """, msg = 'Checking for boost threading library',
82                               lib = [boost_thread, 'boost_system%s' % boost_lib_suffix],
83                               uselib_store = 'BOOST_THREAD')
84
85     conf.check_cxx(fragment = """
86                               #include <boost/filesystem.hpp>\n
87                               int main() { boost::filesystem::copy_file ("a", "b"); }\n
88                               """, msg = 'Checking for boost filesystem library',
89                               libpath = '/usr/local/lib',
90                               lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
91                               uselib_store = 'BOOST_FILESYSTEM')
92
93     conf.check_cxx(fragment = """
94                               #include <boost/date_time.hpp>\n
95                               int main() { boost::gregorian::day_clock::local_day(); }\n
96                               """, msg = 'Checking for boost datetime library',
97                               libpath = '/usr/local/lib',
98                               lib = ['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
99                               uselib_store = 'BOOST_DATETIME')
100
101     conf.check_cxx(fragment = """
102                               #include <boost/signals2.hpp>\n
103                               int main() { boost::signals2::signal<void (int)> x; }\n
104                               """,
105                               msg = 'Checking for boost signals2 library',
106                               uselib_store = 'BOOST_SIGNALS2')
107
108     conf.check_cc(fragment = """
109                              #include <glib.h>
110                              int main() { g_format_size (1); }
111                              """, msg = 'Checking for g_format_size ()',
112                              uselib = 'GLIB',
113                              define_name = 'HAVE_G_FORMAT_SIZE',
114                              mandatory = False)
115
116     conf.recurse('src')
117     conf.recurse('test')
118
119 def build(bld):
120     create_version_cc(VERSION)
121
122     bld.recurse('src')
123     bld.recurse('test')
124     if bld.env.TARGET_WINDOWS:
125         bld.recurse('windows')
126
127     d = { 'PREFIX' : '${PREFIX' }
128
129     obj = bld(features = 'subst')
130     obj.source = 'dvdomatic.desktop.in'
131     obj.target = 'dvdomatic.desktop'
132     obj.dict = d
133
134     bld.install_files('${PREFIX}/share/applications', 'dvdomatic.desktop')
135     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
136         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dvdomatic.png' % r)
137
138     bld.add_post_fun(post)
139
140 def dist(ctx):
141     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'
142
143 def create_version_cc(version):
144     if os.path.exists('.git'):
145         cmd = "LANG= git log --abbrev HEAD^..HEAD ."
146         output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
147         o = output[0].decode('utf-8')
148         commit = o.replace ("commit ", "")[0:10]
149     else:
150         commit = 'release'
151
152     try:
153         text =  '#include "version.h"\n'
154         text += 'char const * dvdomatic_git_commit = \"%s\";\n' % commit
155         text += 'char const * dvdomatic_version = \"%s\";\n' % version
156         print('Writing version information to src/lib/version.cc')
157         o = open('src/lib/version.cc', 'w')
158         o.write(text)
159         o.close()
160     except IOError:
161         print('Could not open src/lib/version.cc for writing\n')
162         sys.exit(-1)
163     
164 def post(ctx):
165     if ctx.cmd == 'install':
166         ctx.exec_command('/sbin/ldconfig')