Merge branch '2.0' of ssh://main.carlh.net/home/carl/git/dcpomatic into 2.0
[dcpomatic.git] / wscript
1 import subprocess
2 import os
3 import sys
4 import distutils
5 import distutils.spawn
6
7 APPNAME = 'dcpomatic'
8 VERSION = '2.0.21devel'
9
10 def options(opt):
11     opt.load('compiler_cxx')
12     opt.load('winres')
13
14     opt.add_option('--enable-debug',      action='store_true', default=False, help='build with debugging information and without optimisation')
15     opt.add_option('--disable-gui',       action='store_true', default=False, help='disable building of GUI tools')
16     opt.add_option('--disable-tests',     action='store_true', default=False, help='disable building of tests')
17     opt.add_option('--target-windows',    action='store_true', default=False, help='set up to do a cross-compile to make a Windows package')
18     opt.add_option('--target-debian',     action='store_true', default=False, help='set up to compile for a Debian/Ubuntu package')
19     opt.add_option('--debian-unstable',   action='store_true', default=False, help='add extra libraries to static-build correctly on Debian unstable')
20     opt.add_option('--target-centos-6',   action='store_true', default=False, help='set up to compile for a Centos 6.5 package')
21     opt.add_option('--target-centos-7',   action='store_true', default=False, help='set up to compile for a Centos 7 package')
22     opt.add_option('--magickpp-config',   action='store',      default='Magick++-config', help='path to Magick++-config')
23     opt.add_option('--wx-config',         action='store',      default='wx-config', help='path to wx-config')
24     opt.add_option('--address-sanitizer', action='store_true', default=False, help='build with address sanitizer')
25     opt.add_option('--install-prefix',                         default=None,  help='prefix of where DCP-o-matic will be installed')
26
27 def static_ffmpeg(conf):
28     conf.check_cfg(package='libavformat', args='--cflags', uselib_store='AVFORMAT', mandatory=True)
29     conf.env.STLIB_AVFORMAT = ['avformat']
30     conf.check_cfg(package='libavfilter', args='--cflags', uselib_store='AVFILTER', mandatory=True)
31     conf.env.STLIB_AVFILTER = ['avfilter', 'swresample']
32     conf.check_cfg(package='libavcodec', args='--cflags', uselib_store='AVCODEC', mandatory=True)
33     # lzma link is needed by Centos 7, at least
34     conf.env.STLIB_AVCODEC = ['avcodec']
35     conf.env.LIB_AVCODEC = ['z', 'lzma']
36     conf.check_cfg(package='libavutil', args='--cflags', uselib_store='AVUTIL', mandatory=True)
37     conf.env.STLIB_AVUTIL = ['avutil']
38     conf.check_cfg(package='libswscale', args='--cflags', uselib_store='SWSCALE', mandatory=True)
39     conf.env.STLIB_SWSCALE = ['swscale']
40     conf.check_cfg(package='libswresample', args='--cflags', uselib_store='SWRESAMPLE', mandatory=True)
41     conf.env.STLIB_SWRESAMPLE = ['swresample']
42     conf.check_cfg(package='libpostproc', args='--cflags', uselib_store='POSTPROC', mandatory=True)
43     conf.env.STLIB_POSTPROC = ['postproc']
44
45 def dynamic_ffmpeg(conf):
46     conf.check_cfg(package='libavformat', args='--cflags --libs', uselib_store='AVFORMAT', mandatory=True)
47     conf.check_cfg(package='libavfilter', args='--cflags --libs', uselib_store='AVFILTER', mandatory=True)
48     conf.check_cfg(package='libavcodec', args='--cflags --libs', uselib_store='AVCODEC', mandatory=True)
49     conf.check_cfg(package='libavutil', args='--cflags --libs', uselib_store='AVUTIL', mandatory=True)
50     conf.check_cfg(package='libswscale', args='--cflags --libs', uselib_store='SWSCALE', mandatory=True)
51     conf.check_cfg(package='libswresample', args='--cflags --libs', uselib_store='SWRESAMPLE', mandatory=True)
52     conf.check_cfg(package='libpostproc', args='--cflags --libs', uselib_store='POSTPROC', mandatory=True)
53
54 def static_openjpeg(conf):
55     conf.check_cfg(package='libopenjpeg', args='--cflags', atleast_version='1.5.0', uselib_store='OPENJPEG', mandatory=True)
56     conf.check_cfg(package='libopenjpeg', args='--cflags', max_version='1.5.2', mandatory=True)
57     conf.env.STLIB_OPENJPEG = ['openjpeg']
58
59 def dynamic_openjpeg(conf):
60     conf.check_cfg(package='libopenjpeg', args='--cflags --libs', atleast_version='1.5.0', uselib_store='OPENJPEG', mandatory=True)
61     conf.check_cfg(package='libopenjpeg', args='--cflags --libs', max_version='1.5.2', mandatory=True)
62
63 def static_sub(conf):
64     conf.check_cfg(package='libsub', atleast_version='0.01.0', args='--cflags', uselib_store='SUB', mandatory=True)
65     conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
66     conf.env.STLIB_SUB = ['sub']
67
68 def static_dcp(conf, static_boost, static_xmlpp, static_xmlsec, static_ssh):
69     conf.check_cfg(package='libdcp-1.0', atleast_version='1.0', args='--cflags', uselib_store='DCP', mandatory=True)
70     conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
71     conf.env.STLIB_DCP = ['dcp-1.0', 'asdcp-libdcp-1.0', 'kumu-libdcp-1.0']
72     conf.env.LIB_DCP = ['glibmm-2.4', 'ssl', 'crypto', 'bz2', 'xslt']
73
74     if static_boost:
75         conf.env.STLIB_DCP.append('boost_system')
76
77     if static_xmlpp:
78         conf.env.STLIB_DCP.append('xml++-2.6')
79     else:
80         conf.env.LIB_DCP.append('xml++-2.6')
81
82     if static_xmlsec:
83         conf.env.STLIB_DCP.append('xmlsec1-openssl')
84         conf.env.STLIB_DCP.append('xmlsec1')
85     else:
86         conf.env.LIB_DCP.append('xmlsec1-openssl')
87         conf.env.LIB_DCP.append('xmlsec1')
88
89     if static_ssh:
90         conf.env.STLIB_DCP.append('ssh')
91     else:
92         conf.env.LIB_DCP.append('ssh')
93
94 def dynamic_dcp(conf):
95     conf.check_cfg(package='libdcp-1.0', atleast_version='0.92', args='--cflags --libs', uselib_store='DCP', mandatory=True)
96     conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
97
98 def dynamic_sub(conf):
99     conf.check_cfg(package='libsub', atleast_version='0.01.0', args='--cflags --libs', uselib_store='SUB', mandatory=True)
100     conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
101
102 def dynamic_ssh(conf):
103     conf.check_cc(fragment="""
104                            #include <libssh/libssh.h>\n
105                            int main () {\n
106                            ssh_session s = ssh_new ();\n
107                            return 0;\n
108                            }
109                            """, msg='Checking for library libssh', mandatory=True, lib='ssh', uselib_store='SSH')
110
111 def dynamic_boost(conf, lib_suffix, thread):
112     conf.check_cxx(fragment="""
113                             #include <boost/version.hpp>\n
114                             #if BOOST_VERSION < 104500\n
115                             #error boost too old\n
116                             #endif\n
117                             int main(void) { return 0; }\n
118                             """,
119                    mandatory=True,
120                    msg='Checking for boost library >= 1.45',
121                    okmsg='yes',
122                    errmsg='too old\nPlease install boost version 1.45 or higher.')
123
124     conf.check_cxx(fragment="""
125                             #include <boost/thread.hpp>\n
126                             int main() { boost::thread t (); }\n
127                             """, msg='Checking for boost threading library',
128                             libpath='/usr/local/lib',
129                             lib=[thread, 'boost_system%s' % lib_suffix],
130                             uselib_store='BOOST_THREAD')
131
132     conf.check_cxx(fragment="""
133                             #include <boost/filesystem.hpp>\n
134                             int main() { boost::filesystem::copy_file ("a", "b"); }\n
135                             """, msg='Checking for boost filesystem library',
136                             libpath='/usr/local/lib',
137                             lib=['boost_filesystem%s' % lib_suffix, 'boost_system%s' % lib_suffix],
138                             uselib_store='BOOST_FILESYSTEM')
139
140     conf.check_cxx(fragment="""
141                             #include <boost/date_time.hpp>\n
142                             int main() { boost::gregorian::day_clock::local_day(); }\n
143                             """, msg='Checking for boost datetime library',
144                             libpath='/usr/local/lib',
145                             lib=['boost_date_time%s' % lib_suffix, 'boost_system%s' % lib_suffix],
146                             uselib_store='BOOST_DATETIME')
147
148     conf.check_cxx(fragment="""
149                             #include <boost/signals2.hpp>\n
150                             int main() { boost::signals2::signal<void (int)> x; }\n
151                             """,
152                             msg='Checking for boost signals2 library',
153                             uselib_store='BOOST_SIGNALS2')
154
155 def static_boost(conf, lib_suffix):
156     conf.env.STLIB_BOOST_THREAD = ['boost_thread']
157     conf.env.STLIB_BOOST_FILESYSTEM = ['boost_filesystem%s' % lib_suffix]
158     conf.env.STLIB_BOOST_DATETIME = ['boost_date_time%s' % lib_suffix, 'boost_system%s' % lib_suffix]
159     conf.env.STLIB_BOOST_SIGNALS2 = ['boost_signals2']
160
161 def configure(conf):
162     conf.load('compiler_cxx')
163     if conf.options.target_windows:
164         conf.load('winres')
165
166     # conf.options -> conf.env
167     conf.env.TARGET_WINDOWS = conf.options.target_windows
168     conf.env.DISABLE_GUI = conf.options.disable_gui
169     conf.env.DISABLE_TESTS = conf.options.disable_tests
170     conf.env.TARGET_DEBIAN = conf.options.target_debian
171     conf.env.DEBIAN_UNSTABLE = conf.options.debian_unstable
172     conf.env.TARGET_CENTOS_6 = conf.options.target_centos_6
173     conf.env.TARGET_CENTOS_7 = conf.options.target_centos_7
174     conf.env.VERSION = VERSION
175     conf.env.TARGET_OSX = sys.platform == 'darwin'
176     conf.env.TARGET_LINUX = not conf.env.TARGET_WINDOWS and not conf.env.TARGET_OSX
177     # true if we should build dcpomatic/libdcpomatic/libdcpomatic-wx statically
178     conf.env.BUILD_STATIC = conf.options.target_debian or conf.options.target_centos_6 or conf.options.target_centos_7
179     if conf.options.install_prefix is None:
180         conf.env.INSTALL_PREFIX = conf.env.PREFIX
181     else:
182         conf.env.INSTALL_PREFIX = conf.options.install_prefix
183
184     # Common CXXFLAGS
185     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-D__STDC_LIMIT_MACROS', '-msse', '-ffast-math', '-fno-strict-aliasing',
186                                        '-Wall', '-Wno-attributes', '-Wextra', '-Wno-unused-result', '-D_FILE_OFFSET_BITS=64'])
187
188     if conf.options.enable_debug:
189         conf.env.append_value('CXXFLAGS', ['-g', '-DDCPOMATIC_DEBUG'])
190     else:
191         conf.env.append_value('CXXFLAGS', '-O2')
192
193     if conf.options.address_sanitizer:
194         conf.env.append_value('CXXFLAGS', ['-fsanitize=address', '-fno-omit-frame-pointer'])
195         conf.env.append_value('LINKFLAGS', ['-fsanitize=address'])
196
197     #
198     # Platform-specific CFLAGS hacks and other tinkering
199     #
200
201     # Windows
202     if conf.env.TARGET_WINDOWS:
203         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_WINDOWS')
204         conf.env.append_value('CXXFLAGS', '-DWIN32_LEAN_AND_MEAN')
205         conf.env.append_value('CXXFLAGS', '-DBOOST_USE_WINDOWS_H')
206         conf.env.append_value('CXXFLAGS', '-DUNICODE')
207         conf.env.append_value('CXXFLAGS', '-DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN')
208         conf.env.append_value('CXXFLAGS', '-mfpmath=sse')
209         wxrc = os.popen('wx-config --rescomp').read().split()[1:]
210         conf.env.append_value('WINRCFLAGS', wxrc)
211         if conf.options.enable_debug:
212             conf.env.append_value('CXXFLAGS', ['-mconsole'])
213             conf.env.append_value('LINKFLAGS', ['-mconsole'])
214         conf.check(lib='ws2_32', uselib_store='WINSOCK2', msg="Checking for library winsock2")
215         conf.check(lib='bfd', uselib_store='BFD', msg="Checking for library bfd")
216         conf.check(lib='dbghelp', uselib_store='DBGHELP', msg="Checking for library dbghelp")
217         conf.check(lib='iberty', uselib_store='IBERTY', msg="Checking for library iberty")
218         conf.check(lib='shlwapi', uselib_store='SHLWAPI', msg="Checking for library shlwapi")
219         conf.check(lib='mswsock', uselib_store='MSWSOCK', msg="Checking for library mswsock")
220         boost_lib_suffix = '-mt'
221         boost_thread = 'boost_thread_win32-mt'
222
223     # POSIX
224     if conf.env.TARGET_LINUX or conf.env.TARGET_OSX:
225         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_POSIX')
226         conf.env.append_value('CXXFLAGS', '-DPOSIX_LOCALE_PREFIX="%s/share/locale"' % conf.env['INSTALL_PREFIX'])
227         conf.env.append_value('CXXFLAGS', '-DPOSIX_ICON_PREFIX="%s/share/dcpomatic2"' % conf.env['INSTALL_PREFIX'])
228         boost_lib_suffix = ''
229         boost_thread = 'boost_thread'
230         conf.env.append_value('LINKFLAGS', '-pthread')
231
232     # Linux
233     if conf.env.TARGET_LINUX:
234         conf.env.append_value('CXXFLAGS', '-mfpmath=sse')
235         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_LINUX')
236
237     if conf.env.TARGET_DEBIAN:
238         # libxml2 seems to be linked against this on Ubuntu but it doesn't mention it in its .pc file
239         conf.check_cfg(package='liblzma', args='--cflags --libs', uselib_store='LZMA', mandatory=True)
240
241     if conf.env.TARGET_CENTOS_6 or conf.env.TARGET_CENTOS_7:
242         # libavcodec seems to be linked against this on Centos
243         conf.check_cfg(package='liblzma', args='--cflags --libs', uselib_store='LZMA', mandatory=True)
244         
245     if not conf.env.DISABLE_GUI and conf.env.TARGET_LINUX:
246         conf.check_cfg(package='gtk+-2.0', args='--cflags --libs', uselib_store='GTK', mandatory=True)
247
248     # OSX
249     if conf.env.TARGET_OSX:
250         conf.env.append_value('CXXFLAGS', ['-DDCPOMATIC_OSX', '-Wno-unused-function', '-Wno-unused-parameter'])
251         conf.env.append_value('LINKFLAGS', '-headerpad_max_install_names')
252
253     #
254     # Dependencies.
255     # There's probably a neater way of expressing these, but I've gone for brute force for now.
256     #
257
258     if conf.env.TARGET_DEBIAN:
259         conf.check_cfg(package='libcxml', atleast_version='0.11', args='--cflags', uselib_store='CXML', mandatory=True)
260         conf.env.STLIB_CXML = ['cxml']
261         conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XMLPP', mandatory=True)
262         conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
263         static_ffmpeg(conf)
264         static_openjpeg(conf)
265         static_sub(conf)
266         static_dcp(conf, False, False, False, False)
267         dynamic_boost(conf, boost_lib_suffix, boost_thread)
268
269     if conf.env.TARGET_CENTOS_6:
270         # Centos 6.5's boost is too old, so we build a new version statically in the chroot
271         conf.check_cfg(package='libcxml', atleast_version='0.08', args='--cflags --libs-only-L', uselib_store='CXML', mandatory=True)
272         conf.env.STLIB_CXML = ['cxml', 'boost_filesystem']
273         conf.check_cfg(package='libcurl', args='--cflags --libs-only-L', uselib_store='CURL', mandatory=True)
274         conf.env.STLIB_CURL = ['curl']
275         conf.env.LIB_CURL = ['ssh2', 'idn']
276         static_ffmpeg(conf)
277         static_openjpeg(conf)
278         static_sub(conf)
279         static_dcp(conf, True, True, True, True)
280         static_boost(conf, boost_lib_suffix)
281
282     if conf.env.TARGET_CENTOS_7:
283         # Centos 7's boost is ok so we link it dynamically
284         conf.check_cfg(package='libcxml', atleast_version='0.08', args='--cflags', uselib_store='CXML', mandatory=True)
285         conf.env.STLIB_CXML = ['cxml']
286         conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
287         conf.env.LIB_SSH = ['gssapi_krb5']
288         conf.env.LIB_XMLPP = ['xml2']
289         conf.env.LIB_XMLSEC = ['ltdl']
290         static_ffmpeg(conf)
291         static_openjpeg(conf)
292         static_sub(conf)
293         static_dcp(conf, False, True, True, True)
294         dynamic_boost(conf, boost_lib_suffix, boost_thread)
295
296     if conf.env.TARGET_WINDOWS:
297         conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XMLPP', mandatory=True)
298         conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
299         conf.check_cxx(fragment="""
300                                 #include <boost/locale.hpp>\n
301                                 int main() { std::locale::global (boost::locale::generator().generate ("")); }\n
302                                 """, msg='Checking for boost locale library',
303                                 libpath='/usr/local/lib',
304                                 lib=['boost_locale%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
305                                 uselib_store='BOOST_LOCALE')
306         dynamic_boost(conf, boost_lib_suffix, boost_thread)
307         dynamic_ffmpeg(conf)
308         dynamic_openjpeg(conf)
309         dynamic_dcp(conf)
310         dynamic_sub(conf)
311         dynamic_ssh(conf)
312
313     # Not packaging; just a straight build
314     if not conf.env.TARGET_WINDOWS and not conf.env.TARGET_DEBIAN and not conf.env.TARGET_CENTOS_6 and not conf.env.TARGET_CENTOS_7:
315         conf.check_cfg(package='libcxml', atleast_version='0.08', args='--cflags --libs', uselib_store='CXML', mandatory=True)
316         conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XMLPP', mandatory=True)
317         conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
318         dynamic_boost(conf, boost_lib_suffix, boost_thread)
319         dynamic_ffmpeg(conf)
320         dynamic_dcp(conf)
321         dynamic_sub(conf)
322         dynamic_openjpeg(conf)
323         dynamic_ssh(conf)
324
325     # Dependencies which are always dynamically linked
326     conf.check_cfg(package='sndfile', args='--cflags --libs', uselib_store='SNDFILE', mandatory=True)
327     conf.check_cfg(package='glib-2.0', args='--cflags --libs', uselib_store='GLIB', mandatory=True)
328     if distutils.spawn.find_executable(conf.options.magickpp_config):
329         conf.check_cfg(package='', path=conf.options.magickpp_config, args='--cppflags --cxxflags --libs', uselib_store='MAGICK', mandatory=True)
330         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_IMAGE_MAGICK')
331     else:
332         conf.check_cfg(package='GraphicsMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=True)
333         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_GRAPHICS_MAGICK')
334         
335     conf.check_cfg(package='libzip', args='--cflags --libs', uselib_store='ZIP', mandatory=True)
336     conf.check_cfg(package='pangomm-1.4', args='--cflags --libs', uselib_store='PANGOMM', mandatory=True)
337     conf.check_cfg(package='cairomm-1.0', args='--cflags --libs', uselib_store='CAIROMM', mandatory=True)
338
339     conf.check_cc(fragment="""
340                            #include <glib.h>
341                            int main() { g_format_size (1); }
342                            """, msg='Checking for g_format_size ()',
343                            uselib='GLIB',
344                            define_name='HAVE_G_FORMAT_SIZE',
345                            mandatory=False)
346
347     conf.find_program('msgfmt', var='MSGFMT')
348     
349     datadir = conf.env.DATADIR
350     if not datadir:
351         datadir = os.path.join(conf.env.PREFIX, 'share')
352     
353     conf.define('LOCALEDIR', os.path.join(datadir, 'locale'))
354     conf.define('DATADIR', datadir)
355
356     conf.recurse('src')
357     if not conf.env.DISABLE_TESTS:
358         conf.recurse('test')
359
360 def build(bld):
361     create_version_cc(VERSION, bld.env.CXXFLAGS)
362
363     bld.recurse('src')
364     if not bld.env.DISABLE_TESTS:
365         bld.recurse('test')
366     if bld.env.TARGET_WINDOWS:
367         bld.recurse('platform/windows')
368     if bld.env.TARGET_LINUX:
369         bld.recurse('platform/linux')
370     if bld.env.TARGET_OSX:
371         bld.recurse('platform/osx')
372
373     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
374         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dcpomatic2.png' % r)
375
376     if not bld.env.TARGET_WINDOWS:
377         bld.install_files('${PREFIX}/share/dcpomatic2', 'icons/taskbar_icon.png')
378
379     bld.add_post_fun(post)
380
381 def git_revision():
382     if not os.path.exists('.git'):
383         return None
384
385     cmd = "LANG= git log --abbrev HEAD^..HEAD ."
386     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
387     o = output[0].decode('utf-8')
388     return o.replace("commit ", "")[0:10]
389
390 def dist(ctx):
391     r = git_revision()
392     if r is not None:
393         f = open('.git_revision', 'w')
394         print >>f,r
395     f.close()
396
397     ctx.excl = """
398                TODO core *~ src/wx/*~ src/lib/*~ builds/*~ doc/manual/*~ src/tools/*~ *.pyc .waf* build .git
399                deps alignment hacks sync *.tar.bz2 *.exe .lock* *build-windows doc/manual/pdf doc/manual/html
400                GRSYMS GRTAGS GSYMS GTAGS
401                """
402
403
404 def create_version_cc(version, cxx_flags):
405     commit = git_revision()
406     if commit is None and os.path.exists('.git_revision'):
407         f = open('.git_revision', 'r')
408         commit = f.readline().strip()
409     
410     if commit is None:
411         commit = 'release'
412
413     try:
414         text =  '#include "version.h"\n'
415         text += 'char const * dcpomatic_git_commit = \"%s\";\n' % commit
416         text += 'char const * dcpomatic_version = \"%s\";\n' % version
417
418         t = ''
419         for f in cxx_flags:
420             f = f.replace('"', '\\"')
421             t += f + ' '
422         text += 'char const * dcpomatic_cxx_flags = \"%s\";\n' % t[:-1]
423
424         print('Writing version information to src/lib/version.cc')
425         o = open('src/lib/version.cc', 'w')
426         o.write(text)
427         o.close()
428     except IOError:
429         print('Could not open src/lib/version.cc for writing\n')
430         sys.exit(-1)
431     
432 def post(ctx):
433     if ctx.cmd == 'install':
434         ctx.exec_command('/sbin/ldconfig')
435
436 def pot(bld):
437     bld.recurse('src')
438
439 def pot_merge(bld):
440     bld.recurse('src')
441
442 def tags(bld):
443     os.system('etags src/lib/*.cc src/lib/*.h src/wx/*.cc src/wx/*.h src/tools/*.cc src/tools/*.h test/*.cc')