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