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