thread-safe fftw (needs fftw-3.3.5)
[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 shutil
7 import sys
8 import re
9 import time
10 from waflib.Task import Task
11 from waflib.Tools import winres
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_display.cc',
28         'ardour_dropdown.cc',
29         'ardour_knob.cc',
30         'ardour_ui.cc',
31         'ardour_ui2.cc',
32         'ardour_ui_dependents.cc',
33         'ardour_ui_dialogs.cc',
34         'ardour_ui_ed.cc',
35         'ardour_ui_mixer.cc',
36         'ardour_ui_options.cc',
37         'ardour_window.cc',
38         'audio_clock.cc',
39         'audio_region_editor.cc',
40         'audio_region_view.cc',
41         'audio_streamview.cc',
42         'audio_time_axis.cc',
43         'automation_controller.cc',
44         'automation_line.cc',
45         'automation_region_view.cc',
46         'automation_streamview.cc',
47         'automation_time_axis.cc',
48         'axis_view.cc',
49         'big_clock_window.cc',
50         'bundle_manager.cc',
51         'button_joiner.cc',
52         'clock_group.cc',
53         'configinfo.cc',
54         'control_point.cc',
55         'control_point_dialog.cc',
56         'cursor_context.cc',
57         'curvetest.cc',
58         'debug.cc',
59         'edit_note_dialog.cc',
60         'editing.cc',
61         'editor.cc',
62         'editor_actions.cc',
63         'editor_audio_import.cc',
64         'editor_pt_import.cc',
65         'editor_audiotrack.cc',
66         'editor_canvas.cc',
67         'editor_canvas_events.cc',
68         'editor_component.cc',
69         'editor_cursors.cc',
70         'editor_drag.cc',
71         'editor_route_groups.cc',
72         'editor_export_audio.cc',
73         'editor_group_tabs.cc',
74         'editor_keys.cc',
75         'editor_locations.cc',
76         'editor_markers.cc',
77         'editor_mixer.cc',
78         'editor_mouse.cc',
79         'editor_ops.cc',
80         'editor_regions.cc',
81         'editor_routes.cc',
82         'editor_rulers.cc',
83         'editor_selection.cc',
84         'editor_snapshots.cc',
85         'editor_summary.cc',
86         'editor_tempodisplay.cc',
87         'editor_timefx.cc',
88         'engine_dialog.cc',
89         'enums.cc',
90         'export_channel_selector.cc',
91         'export_dialog.cc',
92         'export_file_notebook.cc',
93         'export_filename_selector.cc',
94         'export_format_dialog.cc',
95         'export_format_selector.cc',
96         'export_preset_selector.cc',
97         'export_timespan_selector.cc',
98         'fft.cc',
99         'fft_graph.cc',
100         'fft_result.cc',
101         'floating_text_entry.cc',
102         'sfdb_freesound_mootcher.cc',
103         'gain_meter.cc',
104         'generic_pluginui.cc',
105         'ghostregion.cc',
106         'global_port_matrix.cc',
107         'group_tabs.cc',
108         'gtk_pianokeyboard.c',
109         'gui_object.cc',
110         'insert_remove_time_dialog.cc',
111         'instrument_selector.cc',
112         'interthread_progress_window.cc',
113         'io_selector.cc',
114         'hit.cc',
115         'keyboard.cc',
116         'keyeditor.cc',
117         'latency_gui.cc',
118         'led.cc',
119         'level_meter.cc',
120         'location_ui.cc',
121         'main.cc',
122         'main_clock.cc',
123         'marker.cc',
124         'midi_automation_line.cc',
125         'midi_channel_dialog.cc',
126         'midi_channel_selector.cc',
127         'midi_cut_buffer.cc',
128         'midi_export_dialog.cc',
129         'midi_list_editor.cc',
130         'midi_port_dialog.cc',
131         'midi_region_view.cc',
132         'midi_scroomer.cc',
133         'midi_selection.cc',
134         'midi_streamview.cc',
135         'midi_time_axis.cc',
136         'midi_tracer.cc',
137         'midi_velocity_dialog.cc',
138         'missing_file_dialog.cc',
139         'missing_plugin_dialog.cc',
140         'mixer_actor.cc',
141         'mixer_group_tabs.cc',
142         'mixer_strip.cc',
143         'mixer_ui.cc',
144         'meterbridge.cc',
145         'meter_strip.cc',
146         'meter_patterns.cc',
147         'monitor_section.cc',
148         'monitor_selector.cc',
149         'mono_panner.cc',
150         'mono_panner_editor.cc',
151         'mouse_cursors.cc',
152         'nag.cc',
153         'new_plugin_preset_dialog.cc',
154         'normalize_dialog.cc',
155         'note.cc',
156         'note_base.cc',
157         'note_player.cc',
158         'note_select_dialog.cc',
159         'nsm.cc',
160         'nsmclient.cc',
161         'option_editor.cc',
162         'opts.cc',
163         'panner2d.cc',
164         'panner_editor.cc',
165         'panner_interface.cc',
166         'panner_ui.cc',
167         'patch_change.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         'ruler_dialog.cc',
204         'save_as_dialog.cc',
205         'search_path_option.cc',
206         'selection.cc',
207         'selection_memento.cc',
208         'send_ui.cc',
209         'session_dialog.cc',
210         'session_import_dialog.cc',
211         'session_metadata_dialog.cc',
212         'session_option_editor.cc',
213         'sfdb_ui.cc',
214         'shuttle_control.cc',
215         'soundcloud_export_selector.cc',
216         'splash.cc',
217         'speaker_dialog.cc',
218         'startup.cc',
219         'step_editor.cc',
220         'step_entry.cc',
221         'stereo_panner.cc',
222         'stereo_panner_editor.cc',
223         'streamview.cc',
224         'strip_silence_dialog.cc',
225         'sys_ex.cc',
226         'tape_region_view.cc',
227         'tempo_dialog.cc',
228         'tempo_lines.cc',
229         'theme_manager.cc',
230         'time_axis_view.cc',
231         'time_axis_view_item.cc',
232         'time_fx_dialog.cc',
233         'time_info_box.cc',
234         'time_selection.cc',
235         'timers.cc',
236         'tooltips.cc',
237         'track_selection.cc',
238         'track_view_list.cc',
239         'transform_dialog.cc',
240         'transpose_dialog.cc',
241         'ui_config.cc',
242         'utils.cc',
243         'verbose_cursor.cc',
244         'visibility_group.cc',
245         'volume_controller.cc',
246         'window_manager.cc',
247 # video-timeline related sources:
248         'video_image_frame.cc',
249         'add_video_dialog.cc',
250         'editor_videotimeline.cc',
251         'video_timeline.cc',
252         'video_monitor.cc',
253         'transcode_ffmpeg.cc',
254         'transcode_video_dialog.cc',
255         'video_server_dialog.cc',
256         'utils_videotl.cc',
257         'export_video_dialog.cc',
258         'export_video_infobox.cc',
259         'video_tool_paths.cc'
260 ]
261
262 def enoify (major, minor):
263     if major == 3:
264         return "\\n\\\"E-No\\\""
265     elif major == 4:
266         if minor == 0:
267             return "\\n\\\"No Pussyfooting\\\""
268         elif minor == 1:
269             return "\\n\\\"Here Come the Warm Jets\\\""
270         elif minor == 2:
271             return "\\n\\\"Taking Tiger Mountain\\\""
272         elif minor == 3:
273             return "\\n\\\"Lady June's Linguistic Leprosy\\\""
274         elif minor == 4:
275             return "\\n\\\"Discreet Music\\\""
276         elif minor == 5:
277             return "\\n\\\"Another Green World\\\""
278         elif minor == 6:
279             return "\\n\\\"Evening Star\\\""
280     return "\\\"\\\""
281
282 def options(opt):
283     autowaf.set_options(opt)
284
285 def configure(conf):
286     conf.load('misc')
287     conf.load('compiler_cxx')
288     autowaf.configure(conf)
289
290     # TODO: Insert a sanity check for on OS X to ensure CoreAudio is present
291
292     autowaf.check_pkg(conf, 'fftw3f', uselib_store='FFTW3F',
293                       mandatory=True)
294     autowaf.check_pkg(conf, 'fftw3f', uselib_store='FFTW35F',
295                       atleast_version='3.3.5', mandatory=False)
296     autowaf.check_pkg(conf, 'flac', uselib_store='FLAC',
297                       atleast_version='1.2.1')
298     autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD',
299                       atleast_version='2.10.1')
300     autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK',
301                       atleast_version='2.18')
302     autowaf.check_pkg(conf, 'gtkmm-2.4', uselib_store='GTKMM',
303                       atleast_version='2.18')
304     autowaf.check_pkg(conf, 'ogg', uselib_store='OGG', atleast_version='1.1.2')
305     autowaf.check_pkg(conf, 'x11', uselib_store='X11', atleast_version='1.1', mandatory=False)
306     autowaf.check_pkg(conf, 'fontconfig', uselib_store='FONTCONFIG')
307
308     conf.write_config_header('gtk2ardour-config.h', remove=False)
309
310     bak = conf.env['define_key']
311     conf.define('VERSIONSTRING', str (conf.env['VERSION']))
312     conf.define('CODENAME', enoify(int(conf.env['MAJOR']), int(conf.env['MINOR'])))
313     conf.env['define_key'] = ['VERSIONSTRING', 'CODENAME' ]
314     conf.write_config_header('gtk2ardour-version.h')
315     conf.env['define_key'] = bak;
316
317     # Boost headers
318     autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp')
319     autowaf.check_header(conf, 'cxx', 'boost/weak_ptr.hpp')
320
321 # Add a waf `feature' to allow compilation of things using winegcc
322 from waflib.TaskGen import feature
323 @feature("wine")
324 def set_winegcc(self):
325     self.env.LINK_CXX = self.env.LINK_CC = 'wineg++'
326     self.env.CC = 'winegcc'
327
328 def _doPyp(infileName, deps = False):
329     outStr = ''
330     out = []
331     re_spaces = re.compile("\s+")
332
333     if infileName == '-':
334         fd = sys.stdin
335     else:
336         fd = open(infileName)
337     inLines = fd.readlines()
338     if fd != sys.stdin:
339         fd.close()
340         
341
342     for line in inLines:
343         bits = re_spaces.split(line)
344         if bits[0] == '##include':
345             incName = bits[1]
346             if (deps):
347                 out += [ incName ]
348             else:
349                 # assume included file comes from same place as source file
350                 incName = os.path.join (os.path.dirname (infileName), incName);
351                 outStr += _doPyp(incName)
352         else:
353             if not deps:
354                 outStr += line
355
356     # done
357     if deps:
358         return out
359     else:
360         return outStr
361
362 def include_processor(task):
363     infileName = task.inputs[0].srcpath()
364     outfileName = os.path.join(out, task.outputs[0].bldpath())
365     fdOut = open (outfileName, "w")
366     fdOut.write (_doPyp(infileName))
367     fdOut.close ()
368
369
370 def build_color_scheme(path, prefix):
371     f = open (path, 'r')
372     color_scheme = ''
373     for line in f:
374         if re.search ('^#@color', line):
375             line.strip() # remove newline
376             words = line.split()
377             if len(color_scheme):
378                 color_scheme += ';'
379             color_scheme += prefix
380             color_scheme += '_'
381             color_scheme += words[1]
382             color_scheme += ':'
383             color_scheme += words[2]
384     f.close()
385     return color_scheme
386
387 def build(bld):
388
389     VERSION = "%s.%s" % (bld.env['MAJOR'], bld.env['MINOR'])
390     I18N_PACKAGE = 'gtk2_ardour' + bld.env['MAJOR']
391
392     if bld.is_defined('WINDOWS_VST_SUPPORT') and bld.env['build_target'] != 'mingw':
393         # Windows VST support w/wine
394         # If we require VST support we build a stub main() and the FST library
395         # here using winegcc, and link it to the GTK front-end library
396         obj = bld (features = 'cxx c cxxprogram wine')
397         obj.source = ( '../libs/fst/vstwin.c', '../vst/winmain.c' )
398         #
399         # XXX do we really need to explicitly link to all of these for the wine executable?
400         #
401         obj.use          = [ 'libpbd',
402                              'libmidipp',
403                              'libardour',
404                              'libardour_cp',
405                              'libtimecode',
406                              'libmidipp',
407                              'libgtk2_ardour',
408                              'libgtkmm2ext',
409                              'libcanvas',
410                              'libptformat',
411                              ]
412         obj.target = 'ardour-' + str (bld.env['VERSION']) + '-vst.exe.so'
413         obj.includes  = [ '../libs/fst', '.' ]
414         obj.linkflags = ['-mwindows', '-Wl,--export-dynamic']
415         obj.linkflags += bld.env['LDFLAGS']
416         obj.defines = ['_POSIX_SOURCE', 'USE_WS_PREFIX']
417         obj.install_path = bld.env['DLLDIR']
418         # end of the wine executable
419
420         # now the shared library containing the GTK GUI for ardour
421         obj = bld (features = 'cxx c cxxshlib')
422         obj.source    = gtk2_ardour_sources
423         obj.includes  = [ '../libs/fst', '.' ]
424         obj.name      = 'libgtk2_ardour'
425         obj.target    = 'gtk2_ardour'
426
427     else:
428         # just the normal executable version of the GTK GUI
429         if bld.env['build_target'] == 'mingw':
430             obj = bld (features = 'cxx c cxxprogram winres')
431         else:
432             obj = bld (features = 'cxx c cxxprogram')
433         obj.source    = gtk2_ardour_sources
434         obj.target = 'ardour-' + str (bld.env['VERSION'])
435         obj.includes = ['.']
436         obj.ldflags = ['-no-undefined']
437
438         if bld.is_defined('WINDOWS_VST_SUPPORT'):
439         # Windows VST support mingw
440             obj.includes += [ '../libs/fst' ]
441
442     # at this point, "obj" refers to either the normal native executable
443     # OR the shared library built for use with wine on linux.
444
445     obj.use      = [ 'libpbd',
446                      'libardour',
447                      'libardour_cp',
448                      'libtimecode',
449                      'libmidipp',
450                      'libgtkmm2ext',
451                      'libcanvas',
452                      'libptformat',
453                      ]
454
455     obj.defines = [
456         'PACKAGE="' + I18N_PACKAGE + '"',
457         'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
458         'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
459         'LOCALEDIR="' + os.path.normpath(bld.env['LOCALEDIR']) + '"',
460         ]
461     obj.install_path = bld.env['DLLDIR']
462     obj.uselib       = 'UUID FLAC FONTCONFIG GLIBMM GTHREAD GTK OGG CURL DL'
463     obj.uselib       += ' GTKMM CANVAS FFTW3F'
464     obj.uselib       += ' AUDIOUNITS OSX GTKOSX LO '
465     obj.uselib       += ' TAGLIB '
466
467     if sys.platform == 'darwin':
468         obj.uselib += ' AUDIOUNITS OSX GTKOSX'
469         obj.use    += ' libappleutility'
470         obj.source += [ 'cocoacarbon.mm', 'bundle_env_cocoa.cc' ]
471     elif bld.env['build_target'] == 'mingw':
472         obj.source += [ 'bundle_env_mingw.cc' ]
473         obj.source += [ 'windows_icon.rc' ]
474     else:
475         obj.source += [ 'bundle_env_linux.cc' ]
476
477     obj.includes += ['../libs']
478
479     obj.use += 'libptformat'
480
481     if bld.env['build_target'] == 'mingw':
482         obj.linkflags = ['-mwindows']
483
484     if bld.is_defined('HAVE_SUIL'):
485         obj.source += [ 'lv2_plugin_ui.cc' ]
486         obj.use += [ 'SUIL' ]
487
488     if bld.is_defined('HAVE_FFTW35F'):
489         obj.linkflags = ' -lfftw3_threads'
490
491     if bld.is_defined('NEED_INTL'):
492         obj.linkflags = ' -lintl'
493
494     if bld.is_defined('WINDOWS_VST_SUPPORT'):
495         obj.source += [ 'windows_vst_plugin_ui.cc' ]
496         obj.defines += [ 'WINDOWS_VST_SUPPORT' ]
497         if bld.env['build_target'] != 'mingw':
498             obj.use += [ 'X11' ]
499         
500     if bld.is_defined('LXVST_SUPPORT'):
501         obj.source += [ 'linux_vst_gui_support.cc', 'lxvst_plugin_ui.cc' ]
502         obj.defines += [ 'LXVST_SUPPORT' ]
503         obj.use += [ 'X11' ]
504
505     if bld.is_defined('WINDOWS_VST_SUPPORT') or bld.is_defined('LXVST_SUPPORT'):
506         obj.source += [ 'vst_plugin_ui.cc' ]
507         
508     if bld.is_defined('PHONE_HOME'):
509         obj.defines += [ 'PHONE_HOME' ]
510
511     if bld.is_defined('HAVE_COREAUDIO'):
512         TaskGen.task_gen.mappings['.mm'] = TaskGen.task_gen.mappings['.cc']
513         obj.use += ' libappleutility '
514
515     if bld.is_defined('AUDIOUNIT_SUPPORT'):
516         obj.source += [ 'au_pluginui.mm' ]
517
518     # Wrappers
519
520     wrapper_subst_dict = {
521             'INSTALL_PREFIX' : bld.env['PREFIX'],
522             'LIBDIR'         : os.path.normpath(bld.env['DLLDIR']),
523             'DATADIR'        : os.path.normpath(bld.env['DATADIR']),
524             'CONFDIR'        : os.path.normpath(bld.env['CONFDIR']),
525             'LIBS'           : 'build/libs',
526             'VERSION'        : str (bld.env['VERSION']),
527             'EXECUTABLE'     : 'build/gtk2_ardour/ardour-' + str (bld.env['VERSION'])
528     }
529
530     def set_subst_dict(obj, dict):
531         for i in dict:
532             setattr(obj, i, dict[i])
533
534     obj              = bld(features = 'subst')
535     obj.source       = 'ardev_common.sh.in'
536     obj.target       = 'ardev_common_waf.sh'
537     obj.chmod        = Utils.O755
538     obj.dict         = wrapper_subst_dict
539     set_subst_dict(obj, wrapper_subst_dict)
540
541     obj              = bld(features = 'subst')
542     obj.source       = 'ardour.sh.in'
543     obj.target       = 'ardour' + str (bld.env['MAJOR'])
544     obj.chmod        = Utils.O755
545     obj.dict         = wrapper_subst_dict
546     obj.install_path = bld.env['BINDIR']
547     set_subst_dict(obj, wrapper_subst_dict)
548
549     if bld.is_defined('WINDOWS_VST_SUPPORT'):
550         obj              = bld(features = 'subst')
551         obj.source       = '../vst/ardourvst.in'
552         obj.target       = 'ardourvst' + str (bld.env['MAJOR'])
553         obj.chmod        = Utils.O755
554         obj.dict         = wrapper_subst_dict
555         obj.install_path = bld.env['BINDIR']
556         set_subst_dict(obj, wrapper_subst_dict)
557
558     # Font configuration
559
560     font_subst_dict = {}
561     font_sizes      = {}
562     base_font       = ""
563
564     # Set up font sizes
565     if bld.is_defined('GTKOSX'): # OS X fonts
566         basefont = ""
567         font_sizes = {
568                 'SMALLER' : '9',
569                 'SMALL' : '10',
570                 'NORMAL' : '11',
571                 'BIG' : '13',
572                 'BIGGER' : '17',
573                 'LARGE' : '18',
574                 'LARGER' : '28',
575                 'HUGER' : '36',
576                 'MASSIVE' : '60',
577         }
578         
579         # There is no acceptable monospace font available on older versions of OS X
580         # and no API on those versions to load TTF files that will work with 
581         # GTK/fontconfig/pango.
582         #
583         # In addition, the ArdourMono font gets clipped for some reason on OS X
584         #
585         # Moreover, Lucida Grande just seems to work even though it is not monospace
586         # so just use it.
587         #
588         font_names = {
589             'MONOSPACE' : 'Monaco',
590             'CLOCKFONT' : 'Lucida Grande',
591         }
592     else: # Linux/X11 fonts
593         basefont = '' # unspecified - use system defaults
594         font_sizes = {
595                 'SMALLER' : '6',
596                 'SMALL' : '7',
597                 'NORMAL' : '8',
598                 'BIG' : '11',
599                 'BIGGER' : '13.5',
600                 'LARGE' : '14.5',
601                 'LARGER' : '19',
602                 'HUGER' : '27',
603                 'MASSIVE' : '48',
604         }
605         font_names = {
606                 'MONOSPACE' : 'ArdourMono',
607                 'CLOCKFONT' : 'ArdourMono',
608         }
609
610     # Set up font substitution dictionary
611     # @FONT_XXXX@
612     for style in ['', 'BOLD', 'ITALIC']:
613         for sizename,points in iter(font_sizes.items()):
614             if (len (style)):
615                 key = "_".join (['FONT',style,sizename])
616                 fontstyle = " ".join ([basefont,style.lower(),points])
617             else:
618                 key = "_".join (['FONT',sizename])
619                 fontstyle = " ".join ([basefont,points])
620                 
621             font_subst_dict[key] = fontstyle
622             
623     # @FONT_SIZE_XXXX@
624     for sizename,points in iter(font_sizes.items()):
625             key = "_".join (['FONT_SIZE',sizename])
626             font_subst_dict[key] = points
627
628     # various font names, eg @BOLD_MONOSPACE@
629     for font_sym,text in iter(font_names.items()):
630         key = font_sym
631         font_subst_dict[key] = text
632
633     # RC file
634
635     obj              = bld(features = 'subst')
636     obj.source       = [ 'clearlooks.rc.in' ]
637     obj.target       = 'clearlooks.rc'
638     obj.install_path = bld.env['CONFDIR']
639     set_subst_dict(obj, font_subst_dict)
640
641     obj              = bld(features = 'subst')
642     obj.source       = [ 'default_ui_config.in' ]
643     obj.target       = 'default_ui_config'
644     obj.install_path = bld.env['CONFDIR']
645     set_subst_dict(obj, font_subst_dict)
646
647     # Menus
648     menus_argv = []
649     if bld.is_defined('GTKOSX'):
650         menus_argv = [ '-E', '-P', '-DGTKOSX' ]
651     else:
652         menus_argv = [ '-E', '-P' ]
653
654     if bld.is_defined('PTFORMAT'):
655         menus_argv += [ '-DPTFORMAT' ]
656
657     # always build all versions of the menu definitions
658     # so that we can try them out with different program builds.
659     for program in [ 'ardour', 'trx' ]:
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.dep_vars = ['PTFORMAT', 'GTKOSX', 'WINDOWS']
666         obj.stdin = program + '.menus.in'
667         obj.stdout = program + '.menus'
668         bld.install_files (bld.env['CONFDIR'], program + '.menus')
669
670     # Keybindings
671
672     # 'SAE-de-keypad', 'SAE-de-nokeypad', 'SAE-us-keypad',
673     # 'SAE-us-nokeypad', 'ergonomic-us'
674
675     #
676     # explicitly state the use of perl here so that it works on windows too
677     # 
678     a_rule = 'perl ../tools/fmt-bindings --platform="%s" --winkey="%s" --accelmap <${SRC} >${TGT}' % (sys.platform, bld.env['WINDOWS_KEY'] )
679     for b in [ 'mnemonic-us' ] :
680         obj = bld(
681             target = b + '.bindings',
682             source = b + '.bindings.in',
683             rule = a_rule
684             )
685         obj.install_path = bld.env['CONFDIR']
686
687     # not modified at present
688     bld.install_files(bld.env['CONFDIR'], 'dark.colors')
689     bld.install_files(bld.env['CONFDIR'], 'step_editing.bindings')
690     bld.install_files(bld.env['CONFDIR'], 'mixer.bindings')
691
692     # Icons/Images
693     bld.install_files(os.path.join (bld.env['DATADIR'], 'icons'), bld.path.ant_glob('icons/*.png'))
694     bld.install_files(os.path.join (bld.env['DATADIR'], 'pixmaps'), bld.path.ant_glob('pixmaps/*.xpm'))
695     bld.install_files(bld.env['DATADIR'], 'splash.png')
696     bld.install_files(bld.env['DATADIR'], 'small-splash.png')
697     bld.install_files(bld.env['DATADIR'], 'ArdourMono.ttf')
698
699     if bld.env['build_target'] == 'mingw':
700         # These icons need to overwrite the files already installed in the icons
701         # directory above. Do this in the external packaging scripts for now.
702         #bld.install_files(os.path.join (bld.env['DATADIR'], 'icons'), bld.path.ant_glob('icons/cursor_square/*.png'))
703         bld.install_files(os.path.join (bld.env['DATADIR'], 'icons'), 'icons/cursor_square/hotspots')
704
705     # Default UI configuration
706     bld.install_files(bld.env['CONFDIR'], 'default_ui_config')
707     # Color Themes
708     bld.install_files(bld.env['CONFDIR'], 'dark.colors')
709
710     # Default export stuff
711     bld.install_files(os.path.join(bld.env['CONFDIR'], 'export'), bld.path.ant_glob('export/*.format'))
712
713     # i18n
714     if bld.is_defined('ENABLE_NLS'):
715         mo_files = bld.path.ant_glob('po/*.mo')
716         for mo in mo_files:
717             lang = os.path.basename(mo.srcpath()).replace('.mo', '')
718             bld.install_as (os.path.join(os.path.normpath(bld.env['LOCALEDIR']), lang, 'LC_MESSAGES', I18N_PACKAGE + '.mo'),
719                             mo)
720
721 def i18n(bld):
722         I18N_PACKAGE = 'gtk2_ardour' + bld.env['MAJOR']
723         autowaf.build_i18n(bld, top, 'gtk2_ardour', I18N_PACKAGE, gtk2_ardour_sources,
724                            'Paul Davis')
725         
726 def i18n_pot(bld):
727         I18N_PACKAGE = 'gtk2_ardour' + bld.env['MAJOR']
728         autowaf.build_i18n_pot(bld, top, 'gtk2_ardour', I18N_PACKAGE, gtk2_ardour_sources,
729                                'Paul Davis')
730
731 def i18n_po(bld):
732         I18N_PACKAGE = 'gtk2_ardour' + bld.env['MAJOR']
733         autowaf.build_i18n_po(bld, top, 'gtk2_ardour', I18N_PACKAGE, gtk2_ardour_sources,
734                               'Paul Davis')
735         
736 def i18n_mo(bld):
737         I18N_PACKAGE = 'gtk2_ardour' + bld.env['MAJOR']
738         autowaf.build_i18n_mo(bld, top, 'gtk2_ardour', I18N_PACKAGE, gtk2_ardour_sources,
739                               'Paul Davis')