Merge remote-tracking branch 'remotes/origin/master' into windows+cc
[ardour.git] / gtk2_ardour / wscript
1 #!/usr/bin/env python
2 from waflib.extras import autowaf as autowaf
3 from waflib import Options, TaskGen
4 import waflib.Logs as Logs, waflib.Utils as Utils
5 import os
6 import sys
7 import re
8 import time
9 from waflib.Task import Task
10
11 I18N_PACKAGE = 'gtk2_ardour3'
12
13 # Mandatory variables
14 top = '.'
15 out = 'build'
16
17 path_prefix = 'gtk2_ardour/'
18
19 gtk2_ardour_sources = [
20         'about.cc',
21         'actions.cc',
22         'add_route_dialog.cc',
23         'ambiguous_file_dialog.cc',
24         'analysis_window.cc',
25         'ardour_button.cc',
26         'ardour_dialog.cc',
27         'ardour_ui.cc',
28         'ardour_ui2.cc',
29         'ardour_ui_dependents.cc',
30         'ardour_ui_dialogs.cc',
31         'ardour_ui_ed.cc',
32         'ardour_ui_mixer.cc',
33         'ardour_ui_options.cc',
34         'ardour_window.cc',
35         'audio_clock.cc',
36         'audio_region_editor.cc',
37         'audio_region_view.cc',
38         'audio_streamview.cc',
39         'audio_time_axis.cc',
40         'automation_controller.cc',
41         'automation_line.cc',
42         'automation_region_view.cc',
43         'automation_streamview.cc',
44         'automation_time_axis.cc',
45         'axis_view.cc',
46         'big_clock_window.cc',
47         'bundle_manager.cc',
48         'button_joiner.cc',
49         'clock_group.cc',
50         'configinfo.cc',
51         'control_point.cc',
52         'control_point_dialog.cc',
53         'curvetest.cc',
54         'debug.cc',
55         'edit_note_dialog.cc',
56         'editing.cc',
57         'editor.cc',
58         'editor_actions.cc',
59         'editor_audio_import.cc',
60         'editor_audiotrack.cc',
61         'editor_canvas.cc',
62         'editor_canvas_events.cc',
63         'editor_component.cc',
64         'editor_cursors.cc',
65         'editor_drag.cc',
66         'editor_route_groups.cc',
67         'editor_export_audio.cc',
68         'editor_group_tabs.cc',
69         'editor_keys.cc',
70         'editor_locations.cc',
71         'editor_markers.cc',
72         'editor_mixer.cc',
73         'editor_mouse.cc',
74         'editor_ops.cc',
75         'editor_regions.cc',
76         'editor_routes.cc',
77         'editor_rulers.cc',
78         'editor_selection.cc',
79         'editor_snapshots.cc',
80         'editor_summary.cc',
81         'editor_tempodisplay.cc',
82         'editor_timefx.cc',
83         'engine_dialog.cc',
84         'enums.cc',
85         'export_channel_selector.cc',
86         'export_dialog.cc',
87         'export_file_notebook.cc',
88         'export_filename_selector.cc',
89         'export_format_dialog.cc',
90         'export_format_selector.cc',
91         'export_preset_selector.cc',
92         'export_timespan_selector.cc',
93         'fft.cc',
94         'fft_graph.cc',
95         'fft_result.cc',
96         'sfdb_freesound_mootcher.cc',
97         'gain_meter.cc',
98         'generic_pluginui.cc',
99         'ghostregion.cc',
100         'global_port_matrix.cc',
101         'group_tabs.cc',
102         'gtk-custom-hruler.c',
103         'gtk-custom-ruler.c',
104         'gtk_pianokeyboard.c',
105         'gui_object.cc',
106         'insert_time_dialog.cc',
107         'interthread_progress_window.cc',
108         'io_selector.cc',
109         'hit.cc',
110         'keyboard.cc',
111         'keyeditor.cc',
112         'latency_gui.cc',
113         'led.cc',
114         'level_meter.cc',
115         'location_ui.cc',
116         'main.cc',
117         'main_clock.cc',
118         'marker.cc',
119         'midi_automation_line.cc',
120         'midi_channel_dialog.cc',
121         'midi_channel_selector.cc',
122         'midi_cut_buffer.cc',
123         'midi_export_dialog.cc',
124         'midi_list_editor.cc',
125         'midi_port_dialog.cc',
126         'midi_region_view.cc',
127         'midi_scroomer.cc',
128         'midi_selection.cc',
129         'midi_streamview.cc',
130         'midi_time_axis.cc',
131         'midi_tracer.cc',
132         'midi_velocity_dialog.cc',
133         'missing_file_dialog.cc',
134         'missing_plugin_dialog.cc',
135         'mixer_actor.cc',
136         'mixer_group_tabs.cc',
137         'mixer_strip.cc',
138         'mixer_ui.cc',
139         'meterbridge.cc',
140         'meter_strip.cc',
141         'meter_patterns.cc',
142         'monitor_section.cc',
143         'mono_panner.cc',
144         'mono_panner_editor.cc',
145         'mouse_cursors.cc',
146         'nag.cc',
147         'new_plugin_preset_dialog.cc',
148         'normalize_dialog.cc',
149         'note.cc',
150         'note_base.cc',
151         'note_player.cc',
152         'nsm.cc',
153         'nsmclient.cc',
154         'option_editor.cc',
155         'opts.cc',
156         'panner2d.cc',
157         'panner_editor.cc',
158         'panner_interface.cc',
159         'panner_ui.cc',
160         'patch_change.cc',
161         'piano_roll_header.cc',
162         'pingback.cc',
163         'playlist_selector.cc',
164         'plugin_eq_gui.cc',
165         'plugin_selector.cc',
166         'plugin_ui.cc',
167         'port_group.cc',
168         'port_insert_ui.cc',
169         'port_matrix.cc',
170         'port_matrix_body.cc',
171         'port_matrix_column_labels.cc',
172         'port_matrix_component.cc',
173         'port_matrix_grid.cc',
174         'port_matrix_labels.cc',
175         'port_matrix_row_labels.cc',
176         'processor_box.cc',
177         'patch_change_dialog.cc',
178         'progress_reporter.cc',
179         'prompter.cc',
180         'public_editor.cc',
181         'quantize_dialog.cc',
182         'rc_option_editor.cc',
183         'region_editor.cc',
184         'region_gain_line.cc',
185         'region_layering_order_editor.cc',
186         'region_selection.cc',
187         'region_view.cc',
188         'return_ui.cc',
189         'rhythm_ferret.cc',
190         'route_group_dialog.cc',
191         'route_group_menu.cc',
192         'route_params_ui.cc',
193         'route_processor_selection.cc',
194         'route_time_axis.cc',
195         'route_ui.cc',
196         'search_path_option.cc',
197         'selection.cc',
198         'send_ui.cc',
199         'session_dialog.cc',
200         'session_import_dialog.cc',
201         'session_metadata_dialog.cc',
202         'session_option_editor.cc',
203         'sfdb_ui.cc',
204         'shuttle_control.cc',
205         'splash.cc',
206         'speaker_dialog.cc',
207         'startup.cc',
208         'step_editor.cc',
209         'step_entry.cc',
210         'stereo_panner.cc',
211         'stereo_panner_editor.cc',
212         'streamview.cc',
213         'strip_silence_dialog.cc',
214         'sys_ex.cc',
215         'tape_region_view.cc',
216         'tempo_dialog.cc',
217         'tempo_lines.cc',
218         'theme_manager.cc',
219         'time_axis_view.cc',
220         'time_axis_view_item.cc',
221         'time_fx_dialog.cc',
222         'time_info_box.cc',
223         'time_selection.cc',
224         'track_selection.cc',
225         'track_view_list.cc',
226         'transpose_dialog.cc',
227         'ui_config.cc',
228         'utils.cc',
229         'verbose_cursor.cc',
230         'version.cc',
231         'visibility_group.cc',
232         'volume_controller.cc',
233         'window_manager.cc',
234 # video-timeline related sources:
235         'video_image_frame.cc',
236         'add_video_dialog.cc',
237         'editor_videotimeline.cc',
238         'video_timeline.cc',
239         'system_exec.cc',
240         'video_monitor.cc',
241         'transcode_ffmpeg.cc',
242         'transcode_video_dialog.cc',
243         'video_server_dialog.cc',
244         'utils_videotl.cc',
245         'export_video_dialog.cc',
246         'export_video_infobox.cc'
247 ]
248
249 def options(opt):
250     autowaf.set_options(opt)
251
252 def configure(conf):
253     conf.load('misc')
254     conf.load('compiler_cxx')
255     # we don't use hard-coded micro versions with ardour, so hard code it to zero
256     autowaf.build_version_files(
257         path_prefix + 'version.h',
258         path_prefix + 'version.cc',
259         'gtk2_ardour', conf.env['MAJOR'], conf.env['MINOR'], 0)
260     autowaf.configure(conf)
261
262     if Options.options.dist_target == 'auto':
263         if re.search ("linux", sys.platform) != None:
264             autowaf.check_pkg(conf, 'alsa', uselib_store='ALSA')
265
266     # TODO: Insert a sanity check for on OS X to ensure CoreAudio is present
267
268     autowaf.check_pkg(conf, 'flac', uselib_store='FLAC',
269                       atleast_version='1.2.1')
270     autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD',
271                       atleast_version='2.10.1')
272     autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK',
273                       atleast_version='2.18')
274     autowaf.check_pkg(conf, 'gtkmm-2.4', uselib_store='GTKMM',
275                       atleast_version='2.18')
276     autowaf.check_pkg(conf, 'ogg', uselib_store='OGG', atleast_version='1.1.2')
277     autowaf.check_pkg(conf, 'x11', uselib_store='X11', atleast_version='1.1', mandatory=False)
278     autowaf.check_pkg(conf, 'fontconfig', uselib_store='FONTCONFIG')
279
280     conf.write_config_header('gtk2ardour-config.h', remove=False)
281
282     # Boost headers
283     autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp')
284     autowaf.check_header(conf, 'cxx', 'boost/weak_ptr.hpp')
285
286 # Add a waf `feature' to allow compilation of things using winegcc
287 from waflib.TaskGen import feature
288 @feature("wine")
289 def set_winegcc(self):
290     self.env.LINK_CXX = self.env.LINK_CC = 'wineg++'
291     self.env.CC = 'winegcc'
292
293 def _doPyp(infileName, deps = False):
294     outStr = ''
295     out = []
296     re_spaces = re.compile("\s+")
297
298     if infileName == '-':
299         fd = sys.stdin
300     else:
301         fd = open(infileName)
302     inLines = fd.readlines()
303     if fd != sys.stdin:
304         fd.close()
305         
306
307     for line in inLines:
308         bits = re_spaces.split(line)
309         if bits[0] == '##include':
310             incName = bits[1]
311             if (deps):
312                 out += [ incName ]
313             else:
314                 # assume included file comes from same place as source file
315                 incName = os.path.join (os.path.dirname (infileName), incName);
316                 outStr += _doPyp(incName)
317         else:
318             if not deps:
319                 outStr += line
320
321     # done
322     if deps:
323         return out
324     else:
325         return outStr
326
327 def include_processor(task):
328     infileName = task.inputs[0].srcpath()
329     outfileName = os.path.join(out, task.outputs[0].bldpath())
330     fdOut = open (outfileName, "w")
331     fdOut.write (_doPyp(infileName))
332     fdOut.close ()
333
334
335 def build_color_scheme(path, prefix):
336     f = open (path, 'r')
337     color_scheme = ''
338     for line in f:
339         if re.search ('^#@color', line):
340             line.strip() # remove newline
341             words = line.split()
342             if len(color_scheme):
343                 color_scheme += ';'
344             color_scheme += prefix
345             color_scheme += '_'
346             color_scheme += words[1]
347             color_scheme += ':'
348             color_scheme += words[2]
349     f.close()
350     return color_scheme
351
352 def build(bld):
353
354     VERSION = "%s.%s" % (bld.env['MAJOR'], bld.env['MINOR'])
355
356     if bld.is_defined('WINDOWS_VST_SUPPORT'):
357         # If we require VST support we build a stub main() and the FST library
358         # here using winegcc, and link it to the GTK front-end library
359         obj = bld(features = 'cxx c cxxprogram wine')
360         obj.source = '''
361                 ../libs/fst/fst.c
362                 ../libs/fst/fstinfofile.c
363                 ../libs/fst/vsti.c
364                 ../libs/fst/vstwin.c
365                 ../vst/winmain.c
366         '''
367         obj.uselib = 'ALSA'
368         obj.use          = [ 'libpbd',
369                              'libmidipp',
370                              'libtaglib',
371                              'libardour',
372                              'libardour_cp',
373                              'libgtk2_ardour',
374                              'libgtkmm2ext',
375                              'libtaglib',
376                              'libcanvas'
377                              ]
378         obj.target = 'ardour-' + bld.env['VERSION'] + '-vst.exe.so'
379         obj.includes  = [ '../libs/fst', '.' ]
380         obj.linkflags = ['-mwindows', '-Wl,--export-dynamic']
381         obj.defines = ['_POSIX_SOURCE', 'USE_WS_PREFIX']
382         obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
383         # end of the wine executable
384
385         # now the shared library containing the GTK GUI for ardour
386         obj = bld (features = 'cxx c cxxshlib')
387         obj.source    = gtk2_ardour_sources
388         obj.includes  = [ '../libs/fst', '.' ]
389         obj.name      = 'libgtk2_ardour'
390         obj.target    = 'gtk2_ardour'
391     else:
392         # just the normal executable version of the GTK GUI
393         obj = bld(features = 'cxx c cxxprogram')
394         obj.source    = gtk2_ardour_sources
395         obj.target = 'ardour-' + bld.env['VERSION']
396         obj.includes = ['.']
397
398     # continue with setup of obj, which could be a shared library
399     # or an executable.
400
401     obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
402
403     obj.uselib       = 'UUID FLAC FONTCONFIG GLIBMM GTHREAD GTK OGG ALSA CURL DL GTKMM LO'
404     obj.use          = [ 'libpbd',
405                          'libmidipp',
406                          'libtaglib',
407                          'libardour',
408                          'libardour_cp',
409                          'libgtkmm2ext',
410                          'libtaglib',
411                          'libcanvas'
412                          ]
413     if bld.env['build_target'] == 'mingw':
414         if bld.env['DEBUG'] == False:
415             obj.linkflags = ['-mwindows']
416     if sys.platform == 'darwin':
417         obj.uselib += ' AUDIOUNITS OSX GTKOSX'
418         obj.use    += ' libappleutility'
419     obj.defines     = [
420         'PACKAGE="' + I18N_PACKAGE + '"',
421         'VERSIONSTRING="' + bld.env['VERSION'] + '"',
422         'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
423         'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
424         'LOCALEDIR="' + os.path.join(os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
425         'PROGRAM_NAME="' + bld.env['PROGRAM_NAME'] + '"'
426         ]
427     obj.includes += ['../libs']
428
429     if bld.is_defined('HAVE_SUIL'):
430         obj.source += [ 'lv2_plugin_ui.cc' ]
431         obj.use += [ 'SUIL' ]
432
433     if bld.is_defined('NEED_INTL'):
434         obj.linkflags = ' -lintl'
435
436     if bld.is_defined('WINDOWS_VST_SUPPORT'):
437         obj.source += [ 'windows_vst_plugin_ui.cc' ]
438         obj.defines += [ 'WINDOWS_VST_SUPPORT' ]
439         obj.use += [ 'X11' ]
440         
441     if bld.is_defined('LXVST_SUPPORT'):
442         obj.source += [ 'linux_vst_gui_support.cc', 'lxvst_plugin_ui.cc' ]
443         obj.defines += [ 'LXVST_SUPPORT' ]
444         obj.use += [ 'X11' ]
445
446     if bld.is_defined('WINDOWS_VST_SUPPORT') or bld.is_defined('LXVST_SUPPORT'):
447         obj.source += [ 'vst_plugin_ui.cc' ]
448         
449     if bld.is_defined('PHONE_HOME'):
450         obj.defines += [ 'PHONE_HOME' ]
451
452     if bld.is_defined('HAVE_COREAUDIO'):
453         TaskGen.task_gen.mappings['.mm'] = TaskGen.task_gen.mappings['.cc']
454         obj.source += [ 'cocoacarbon.mm' ]
455         obj.use += ' libappleutility '
456
457     if bld.is_defined('AUDIOUNIT_SUPPORT'):
458         obj.source += [ 'au_pluginui.mm' ]
459
460     # Wrappers
461
462     wrapper_subst_dict = {
463             'INSTALL_PREFIX' : bld.env['PREFIX'],
464             'LIBDIR'         : os.path.normpath(bld.env['LIBDIR']),
465             'DATADIR'        : os.path.normpath(bld.env['DATADIR']),
466             'SYSCONFDIR'     : os.path.normpath(bld.env['SYSCONFDIR']),
467             'LIBS'           : 'build/libs',
468             'VERSION'        : bld.env['VERSION'],
469             'EXECUTABLE'     : 'build/gtk2_ardour/ardour-' + bld.env['VERSION']
470     }
471
472     def set_subst_dict(obj, dict):
473         for i in dict:
474             setattr(obj, i, dict[i])
475
476     obj              = bld(features = 'subst', rule= 'chmod 0755 ${TGT}')
477     obj.source       = 'ardev_common.sh.in'
478     obj.target       = 'ardev_common_waf.sh'
479     obj.chmod        = Utils.O755
480     obj.dict         = wrapper_subst_dict
481     set_subst_dict(obj, wrapper_subst_dict)
482
483     obj              = bld(features = 'subst')
484     obj.source       = 'ardour.sh.in'
485     obj.target       = 'ardour3'
486     obj.chmod        = Utils.O755
487     obj.dict         = wrapper_subst_dict
488     obj.install_path = bld.env['BINDIR']
489     set_subst_dict(obj, wrapper_subst_dict)
490
491     if bld.is_defined('WINDOWS_VST_SUPPORT'):
492         obj              = bld(features = 'subst')
493         obj.source       = '../vst/ardourvst.in'
494         obj.target       = 'ardourvst3'
495         obj.chmod        = Utils.O755
496         obj.dict         = wrapper_subst_dict
497         obj.install_path = bld.env['BINDIR']
498         set_subst_dict(obj, wrapper_subst_dict)
499
500     # Font configuration
501
502     dark_rc_subst_dict = {}
503     light_rc_subst_dict = {}
504     font_sizes      = {}
505     base_font       = ""
506
507     # Set up font sizes
508     if bld.is_defined('GTKOSX'): # OS X fonts
509         basefont = ""
510         font_sizes = {
511                 'SMALLER' : '9',
512                 'SMALL' : '10',
513                 'NORMAL' : '11',
514                 'BIG' : '13',
515                 'BIGGER' : '17',
516                 'LARGE' : '18',
517                 'LARGER' : '28',
518                 'HUGER' : '36',
519                 'MASSIVE' : '60',
520         }
521         
522         # There is no acceptable monospace font available on older versions of OS X
523         # and no API on those versions to load TTF files that will work with 
524         # GTK/fontconfig/pango.
525         #
526         # In addition, the ArdourMono font gets clipped for some reason on OS X
527         #
528         # Moreover, Lucida Grande just seems to work even though it is not monospace
529         # so just use it.
530         #
531         font_names = {
532             'MONOSPACE' : 'Lucida Grande',
533         }
534     else: # Linux/X11 fonts
535         basefont = '' # unspecified - use system defaults
536         font_sizes = {
537                 'SMALLER' : '8',
538                 'SMALL' : '9',
539                 'NORMAL' : '10',
540                 'BIG' : '14',
541                 'BIGGER' : '17',
542                 'LARGE' : '18',
543                 'LARGER' : '24',
544                 'HUGER' : '34',
545                 'MASSIVE' : '60',
546         }
547         font_names = {
548                 'MONOSPACE' : 'ArdourMono',
549         }
550
551     # Set up font substitution dictionary
552     # @FONT_XXXX@
553     for style in ['', 'BOLD', 'ITALIC']:
554         for sizename,points in iter(font_sizes.items()):
555             if (len (style)):
556                 key = "_".join (['FONT',style,sizename])
557                 fontstyle = " ".join ([basefont,style.lower(),points])
558             else:
559                 key = "_".join (['FONT',sizename])
560                 fontstyle = " ".join ([basefont,points])
561
562             dark_rc_subst_dict[key] = fontstyle
563             light_rc_subst_dict[key] = fontstyle
564
565     # @FONT_SIZE_XXXX@
566     for sizename,points in iter(font_sizes.items()):
567             key = "_".join (['FONT_SIZE',sizename])
568             dark_rc_subst_dict[key] = points
569             light_rc_subst_dict[key] = points
570
571     # various font names, eg @BOLD_MONOSPACE@
572     for font_sym,text in iter(font_names.items()):
573         key = font_sym
574         dark_rc_subst_dict[key] = text
575         light_rc_subst_dict[key] = text
576
577     # RC files
578     dark_rc_subst_dict['COLOR_SCHEME'] = build_color_scheme(
579         'gtk2_ardour/ardour3_ui_dark.rc.in', 'ARDOUR_DARK')
580     dark_rc_subst_dict['COLPREFIX'] = 'ARDOUR_DARK'
581     light_rc_subst_dict['COLOR_SCHEME'] = build_color_scheme(
582         'gtk2_ardour/ardour3_ui_light.rc.in', 'ARDOUR_LIGHT')
583     light_rc_subst_dict['COLPREFIX'] = 'ARDOUR_LIGHT'
584
585     obj              = bld(features = 'subst')
586     obj.source       = [ 'ardour3_ui_dark.rc.in' ]
587     obj.target       = 'ardour3_ui_dark.rc.pre'
588     obj.install_path = None
589     set_subst_dict(obj, dark_rc_subst_dict)
590
591     obj              = bld(features = 'subst')
592     obj.source       = [ 'ardour3_ui_light.rc.in' ]
593     obj.target       = 'ardour3_ui_light.rc.pre'
594     obj.install_path = None
595     set_subst_dict(obj, light_rc_subst_dict)
596
597     obj              = bld(features = 'subst')
598     obj.source       = [ 'ardour3_styles.rc.in' ]
599     obj.target       = 'ardour3_dark_styles.rc'
600     obj.install_path = None
601     set_subst_dict(obj, dark_rc_subst_dict)
602
603     obj              = bld(features = 'subst')
604     obj.source       = [ 'ardour3_styles.rc.in' ]
605     obj.target       = 'ardour3_light_styles.rc'
606     obj.install_path = None
607     set_subst_dict(obj, light_rc_subst_dict)
608
609     obj              = bld(features = 'subst')
610     obj.source       = [ 'ardour3_fonts.rc.in' ]
611     obj.target       = 'ardour3_dark_fonts.rc'
612     obj.install_path = None
613     set_subst_dict(obj, dark_rc_subst_dict)
614
615     obj              = bld(features = 'subst')
616     obj.source       = [ 'ardour3_fonts.rc.in' ]
617     obj.target       = 'ardour3_light_fonts.rc'
618     obj.install_path = None
619     set_subst_dict(obj, light_rc_subst_dict)
620
621     obj              = bld(rule = 'cp ${SRC} ${TGT}')
622     obj.source       = [ 'ardour3_widget_list.rc' ]
623     obj.target       = 'ardour3_widgets.rc'
624     obj.install_path = None
625
626     obj = bld (rule = include_processor)
627     obj.source = [ 'ardour3_ui_dark.rc.pre' ]
628     # find and add all ##include dependencies as sources
629     obj.source += _doPyp (bld.path.find_resource ('ardour3_ui_dark.rc.in').srcpath(), True)
630     obj.target = 'ardour3_ui_dark.rc'
631     obj.install_path = '${SYSCONFDIR}/ardour3'
632
633     obj = bld (rule = include_processor)
634     obj.source = [ 'ardour3_ui_light.rc.pre' ]
635     # find and add all ##include dependencies as sources
636     obj.source += _doPyp (bld.path.find_resource ('ardour3_ui_light.rc.in').srcpath(), True)
637     obj.target = 'ardour3_ui_light.rc'
638     obj.install_path = '${SYSCONFDIR}/ardour3'
639
640     # Menus
641     menus_argv = []
642     if bld.is_defined('GTKOSX'):
643         menus_argv = [ '-E', '-P', '-DGTKOSX' ]
644     else:
645         menus_argv = [ '-E', '-P' ]
646
647     obj = bld(features = 'command-output')
648     obj.command = 'cpp'
649     obj.command_is_external = True
650     obj.no_inputs = True
651     obj.argv = menus_argv
652     obj.stdin = 'ardour.menus.in'
653     obj.stdout = 'ardour.menus'
654     obj.dep_vars = ['GTKOSX']
655     bld.install_files(os.path.join(bld.env['SYSCONFDIR'], 'ardour3'),
656                       'ardour.menus')
657
658     # Keybindings
659
660     # 'SAE-de-keypad', 'SAE-de-nokeypad', 'SAE-us-keypad',
661     # 'SAE-us-nokeypad', 'ergonomic-us'
662
663     for b in [ 'mnemonic-us' ] :
664         obj = bld(
665             target = b + '.bindings',
666             source = b + '.bindings.in',
667             rule = '../tools/fmt-bindings --platform="%s" --winkey="%s" --accelmap <${SRC} >${TGT}' % (sys.platform, bld.env['WINDOWS_KEY'] )
668             )
669         obj.install_path = os.path.join(bld.env['SYSCONFDIR'], 'ardour3')
670
671     # not modified at present
672     bld.install_files(os.path.join(bld.env['SYSCONFDIR'], 'ardour3'),
673                       'step_editing.bindings')
674     bld.install_files(os.path.join(bld.env['SYSCONFDIR'], 'ardour3'),
675                       'mixer.bindings')
676
677     # Icons/Images
678     bld.install_files('${DATADIR}/ardour3/icons', bld.path.ant_glob('icons/*.png'))
679     bld.install_files('${DATADIR}/ardour3/pixmaps', bld.path.ant_glob('pixmaps/*.xpm'))
680     bld.install_files('${DATADIR}/ardour3', 'splash.png')
681     bld.install_files('${DATADIR}/ardour3', 'ArdourMono.ttf')
682
683     # Default UI configuration
684     bld.install_files('${SYSCONFDIR}/ardour3', 'ardour3_ui_default.conf')
685
686     # Default export stuff
687     bld.install_files('${SYSCONFDIR}/ardour3/export', bld.path.ant_glob('export/*.format'))
688
689     # i18n
690     if bld.is_defined('ENABLE_NLS'):
691         mo_files = bld.path.ant_glob('po/*.mo')
692         for mo in mo_files:
693             lang = os.path.basename(mo.srcpath()).replace('.mo', '')
694             bld.install_as(os.path.join(bld.env['PREFIX'], 'share', 'locale',
695                                         lang, 'LC_MESSAGES', I18N_PACKAGE + '.mo'),
696                            mo)
697
698 def i18n(bld):
699     autowaf.build_i18n(bld, top, 'gtk2_ardour', I18N_PACKAGE, gtk2_ardour_sources,
700                        'Paul Davis')
701
702 def i18n_pot(bld):
703     autowaf.build_i18n_pot(bld, top, 'gtk2_ardour', I18N_PACKAGE, gtk2_ardour_sources,
704                        'Paul Davis')
705
706 def i18n_po(bld):
707     autowaf.build_i18n_po(bld, top, 'gtk2_ardour', I18N_PACKAGE, gtk2_ardour_sources,
708                        'Paul Davis')
709
710 def i18n_mo(bld):
711     autowaf.build_i18n_mo(bld, top, 'gtk2_ardour', I18N_PACKAGE, gtk2_ardour_sources,
712                        'Paul Davis')