upcoming codenames
[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 import subprocess
13 import glob
14 import copy
15
16 # Mandatory variables
17 top = '.'
18 out = 'build'
19
20 from waflib import TaskGen
21 @TaskGen.extension('.m')
22 def m_hook(self, node):
23         """Alias .m files to be compiled the same as .c files, gcc will do the right thing."""
24         return self.create_compiled_task('c', node)
25
26 path_prefix = 'gtk2_ardour/'
27
28 gtk2_ardour_sources = [
29         'about.cc',
30         'actions.cc',
31         'add_route_dialog.cc',
32         'ambiguous_file_dialog.cc',
33         'analysis_window.cc',
34         'ardour_button.cc',
35         'ardour_dialog.cc',
36         'ardour_display.cc',
37         'ardour_dropdown.cc',
38         'ardour_http.cc',
39         'ardour_knob.cc',
40         'ardour_spinner.cc',
41         'ardour_ui.cc',
42         'ardour_ui2.cc',
43         'ardour_ui_dependents.cc',
44         'ardour_ui_dialogs.cc',
45         'ardour_ui_ed.cc',
46         'ardour_ui_mixer.cc',
47         'ardour_ui_options.cc',
48         'ardour_window.cc',
49         'audio_clock.cc',
50         'audio_region_editor.cc',
51         'audio_region_view.cc',
52         'audio_streamview.cc',
53         'audio_time_axis.cc',
54         'automation_controller.cc',
55         'automation_line.cc',
56         'automation_region_view.cc',
57         'automation_streamview.cc',
58         'automation_time_axis.cc',
59         'axis_view.cc',
60         'big_clock_window.cc',
61         'bundle_manager.cc',
62         'button_joiner.cc',
63         'clock_group.cc',
64         'color_theme_manager.cc',
65         'configinfo.cc',
66         'control_point.cc',
67         'control_point_dialog.cc',
68         'control_slave_ui.cc',
69         'cursor_context.cc',
70         'curvetest.cc',
71         'debug.cc',
72         'duplicate_routes_dialog.cc',
73         'edit_note_dialog.cc',
74         'editing.cc',
75         'editor.cc',
76         'editor_actions.cc',
77         'editor_audio_import.cc',
78         'editor_pt_import.cc',
79         'editor_audiotrack.cc',
80         'editor_canvas.cc',
81         'editor_canvas_events.cc',
82         'editor_component.cc',
83         'editor_cursors.cc',
84         'editor_drag.cc',
85         'editor_route_groups.cc',
86         'editor_export_audio.cc',
87         'editor_group_tabs.cc',
88         'editor_keys.cc',
89         'editor_locations.cc',
90         'editor_markers.cc',
91         'editor_mixer.cc',
92         'editor_mouse.cc',
93         'editor_ops.cc',
94         'editor_regions.cc',
95         'editor_routes.cc',
96         'editor_rulers.cc',
97         'editor_selection.cc',
98         'editor_snapshots.cc',
99         'editor_summary.cc',
100         'editor_tempodisplay.cc',
101         'editor_timefx.cc',
102         'engine_dialog.cc',
103         'enums.cc',
104         'export_channel_selector.cc',
105         'export_dialog.cc',
106         'export_file_notebook.cc',
107         'export_filename_selector.cc',
108         'export_format_dialog.cc',
109         'export_format_selector.cc',
110         'export_preset_selector.cc',
111         'export_report.cc',
112         'export_timespan_selector.cc',
113         'fft.cc',
114         'fft_graph.cc',
115         'fft_result.cc',
116         'floating_text_entry.cc',
117         'sfdb_freesound_mootcher.cc',
118         'gain_meter.cc',
119         'generic_pluginui.cc',
120         'ghostregion.cc',
121         'global_port_matrix.cc',
122         'group_tabs.cc',
123         'gtk_pianokeyboard.c',
124         'gui_object.cc',
125         'insert_remove_time_dialog.cc',
126         'instrument_selector.cc',
127         'interthread_progress_window.cc',
128         'io_selector.cc',
129         'hit.cc',
130         'keyboard.cc',
131         'keyeditor.cc',
132         'latency_gui.cc',
133         'led.cc',
134         'level_meter.cc',
135         'location_ui.cc',
136         'lua_script_manager.cc',
137         'luainstance.cc',
138         'luawindow.cc',
139         'main.cc',
140         'main_clock.cc',
141         'marker.cc',
142         'midi_automation_line.cc',
143         'midi_channel_dialog.cc',
144         'midi_channel_selector.cc',
145         'midi_cut_buffer.cc',
146         'midi_export_dialog.cc',
147         'midi_list_editor.cc',
148         'midi_region_view.cc',
149         'midi_scroomer.cc',
150         'midi_selection.cc',
151         'midi_streamview.cc',
152         'midi_time_axis.cc',
153         'midi_tracer.cc',
154         'midi_velocity_dialog.cc',
155         'mini_timeline.cc',
156         'missing_file_dialog.cc',
157         'missing_plugin_dialog.cc',
158         'mixer_group_tabs.cc',
159         'mixer_strip.cc',
160         'mixer_ui.cc',
161         'meterbridge.cc',
162         'meter_strip.cc',
163         'meter_patterns.cc',
164         'monitor_section.cc',
165         'monitor_selector.cc',
166         'mono_panner.cc',
167         'mono_panner_editor.cc',
168         'mouse_cursors.cc',
169         'nag.cc',
170         'new_plugin_preset_dialog.cc',
171         'normalize_dialog.cc',
172         'note.cc',
173         'note_base.cc',
174         'note_player.cc',
175         'note_select_dialog.cc',
176         'nsm.cc',
177         'nsmclient.cc',
178         'option_editor.cc',
179         'opts.cc',
180         'panner2d.cc',
181         'panner_editor.cc',
182         'panner_interface.cc',
183         'panner_ui.cc',
184         'patch_change.cc',
185         'piano_roll_header.cc',
186         'pingback.cc',
187         'playlist_selector.cc',
188         'plugin_eq_gui.cc',
189         'plugin_pin_dialog.cc',
190         'plugin_setup_dialog.cc',
191         'plugin_selector.cc',
192         'plugin_ui.cc',
193         'port_group.cc',
194         'port_insert_ui.cc',
195         'port_matrix.cc',
196         'port_matrix_body.cc',
197         'port_matrix_column_labels.cc',
198         'port_matrix_component.cc',
199         'port_matrix_grid.cc',
200         'port_matrix_labels.cc',
201         'port_matrix_row_labels.cc',
202         'processor_box.cc',
203         'patch_change_dialog.cc',
204         'progress_reporter.cc',
205         'prompter.cc',
206         'public_editor.cc',
207         'quantize_dialog.cc',
208         'rc_option_editor.cc',
209         'region_editor.cc',
210         'region_gain_line.cc',
211         'region_layering_order_editor.cc',
212         'region_selection.cc',
213         'region_view.cc',
214         'return_ui.cc',
215         'rhythm_ferret.cc',
216         'route_group_dialog.cc',
217         'route_group_menu.cc',
218         'route_params_ui.cc',
219         'route_processor_selection.cc',
220         'route_time_axis.cc',
221         'route_ui.cc',
222         'ruler_dialog.cc',
223         'save_as_dialog.cc',
224         'search_path_option.cc',
225         'script_selector.cc',
226         'selection.cc',
227         'selection_memento.cc',
228         'send_ui.cc',
229         'session_archive_dialog.cc',
230         'session_dialog.cc',
231         'session_import_dialog.cc',
232         'session_metadata_dialog.cc',
233         'session_option_editor.cc',
234         'sfdb_ui.cc',
235         'shuttle_control.cc',
236         'soundcloud_export_selector.cc',
237         'splash.cc',
238         'speaker_dialog.cc',
239         'startup.cc',
240         'step_editor.cc',
241         'step_entry.cc',
242         'stereo_panner.cc',
243         'stereo_panner_editor.cc',
244         'streamview.cc',
245         'strip_silence_dialog.cc',
246         'sys_ex.cc',
247         'tape_region_view.cc',
248         'tempo_curve.cc',
249         'tempo_dialog.cc',
250         'tempo_lines.cc',
251         'time_axis_view.cc',
252         'time_axis_view_item.cc',
253         'time_fx_dialog.cc',
254         'time_info_box.cc',
255         'time_selection.cc',
256         'timers.cc',
257         'tooltips.cc',
258         'track_selection.cc',
259         'track_view_list.cc',
260         'transform_dialog.cc',
261         'transpose_dialog.cc',
262         'ui_config.cc',
263         'utils.cc',
264         'vca_master_strip.cc',
265         'verbose_cursor.cc',
266         'visibility_group.cc',
267         'window_manager.cc',
268 # video-timeline related sources:
269         'video_image_frame.cc',
270         'add_video_dialog.cc',
271         'editor_videotimeline.cc',
272         'vca_time_axis.cc',
273         'video_timeline.cc',
274         'video_monitor.cc',
275         'transcode_ffmpeg.cc',
276         'transcode_video_dialog.cc',
277         'video_server_dialog.cc',
278         'utils_videotl.cc',
279         'export_video_dialog.cc',
280         'export_video_infobox.cc',
281         'video_tool_paths.cc'
282 ]
283
284 def enoify (major, minor):
285     # Code names based on
286     # https://en.wikipedia.org/wiki/Brian_Eno_discography
287     #
288     # sort Studio albums + Collaborative albums + Compilation albums by Month/Year.
289     # (no Singles, no EPs, no Video Albums, no Production)
290     if major == 3:
291         return "\\n\\\"E-No\\\""
292     elif major == 4:
293         if minor == 0:
294             return "\\n\\\"No Pussyfooting\\\""
295         elif minor == 1:
296             return "\\n\\\"Here Come the Warm Jets\\\""
297         elif minor == 2:
298             return "\\n\\\"Taking Tiger Mountain\\\""
299         elif minor == 3:
300             return "\\n\\\"Lady June's Linguistic Leprosy\\\""
301         elif minor == 4:
302             return "\\n\\\"Discreet Music\\\""
303         elif minor == 5:
304             return "\\n\\\"Another Green World\\\""
305         elif minor == 6:
306             return "\\n\\\"Evening Star\\\""
307         elif minor == 7:
308             return "\\n\\\"Cluster and Eno\\\""
309     elif major == 5:
310         if minor == 0:
311             return "\\n\\\"Before and After Science\\\""
312         elif minor == 1:
313             return "\\n\\\"After the Heat\\\""
314         elif minor == 2:
315             return "\\n\\\"Music for Airports\\\""
316         elif minor == 3:
317             return "\\n\\\"Music for Films\\\""
318         elif minor == 4:
319             return "\\n\\\"In a Land of Clear Colours\\\""
320         elif minor == 5:
321             return "\\n\\\"The Plateaux of Mirror\\\""
322         elif minor == 6:
323             return "\\n\\\"Possible Musics\\\"" # 1980 Collaborative
324         elif minor == 7:
325             return "\\n\\\"My Life in the Bush of Ghosts\\\"" # 1981
326         elif minor == 8:
327             return "\\n\\\"Music for Airplay\\\"" # 1981 Compilation
328         elif minor == 9:
329             return "\\n\\\"On Land\\\"" # 1982
330         elif minor == 10:  # 6.0 ??
331             return "\\n\\\"Atmospheres and Soundtracks\\\"" # 1983
332         elif minor == 11:
333             return "\\n\\\"More Music for Films\\\"" # 1983
334         elif minor == 12:
335             return "\\n\\\"Working Backwards\\\"" # 1984 Compilation
336         elif minor == 13:
337             return "\\n\\\"The Pearl\\\"" # 1984 Collaborative
338         elif minor == 14:
339             return "\\n\\\"Begegnungen\\\"" # 1984 Compilation
340     return "\\\"\\\""
341
342 def options(opt):
343     autowaf.set_options(opt)
344
345 def configure(conf):
346     conf.load('misc')
347     conf.load('compiler_cxx')
348     autowaf.configure(conf)
349
350     # TODO: Insert a sanity check for on OS X to ensure CoreAudio is present
351
352     autowaf.check_pkg(conf, 'fftw3f', uselib_store='FFTW3F',
353                       mandatory=True)
354     autowaf.check_pkg(conf, 'fftw3f', uselib_store='FFTW35F',
355                       atleast_version='3.3.5', mandatory=False)
356     autowaf.check_pkg(conf, 'flac', uselib_store='FLAC',
357                       atleast_version='1.2.1')
358     autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD',
359                       atleast_version='2.10.1')
360     autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK',
361                       atleast_version='2.18')
362     autowaf.check_pkg(conf, 'gtkmm-2.4', uselib_store='GTKMM',
363                       atleast_version='2.18')
364     autowaf.check_pkg(conf, 'ogg', uselib_store='OGG', atleast_version='1.1.2')
365     autowaf.check_pkg(conf, 'x11', uselib_store='X11', atleast_version='1.1', mandatory=False)
366     autowaf.check_pkg(conf, 'pangoft2', uselib_store='PANGOFT2', atleast_version='1.36.8', mandatory=False)
367     autowaf.check_pkg(conf, 'fontconfig', uselib_store='FONTCONFIG')
368
369
370     if sys.platform == 'darwin':
371         retval = conf.run_c_code (code='#include <AppKit/NSWindow.h>\n\
372         int main(void) { (void) NSWindowWillStartLiveResizeNotification; return 0; }\n',
373                                   env = conf.env.derive (),
374                                   features = [ 'c' ],
375                                   compiler = 'cc',
376                                   compile_filename='test.m',
377                                   mandatory = False,
378             )
379
380         if retval == 0:
381             autowaf.display_msg (conf, 'Checking for Cocoa live resizing constants', 'ok')
382             conf.define ('HAVE_COCOA_LIVE_RESIZING', 1)
383         else:
384             autowaf.display_msg (conf, 'Checking for Cocoa live resizing constants', 'too old - AU plugin windows will be fixed size')
385
386     conf.write_config_header('gtk2ardour-config.h', remove=False)
387
388     bak = conf.env['define_key']
389     conf.define('VERSIONSTRING', str (conf.env['VERSION']))
390     conf.define('CODENAME', enoify(int(conf.env['MAJOR']), int(conf.env['MINOR'])))
391     conf.env['define_key'] = ['VERSIONSTRING', 'CODENAME' ]
392     conf.write_config_header('gtk2ardour-version.h')
393     conf.env['define_key'] = bak;
394
395     # Boost headers
396     autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp')
397     autowaf.check_header(conf, 'cxx', 'boost/weak_ptr.hpp')
398
399 # Add a waf `feature' to allow compilation of things using winegcc
400 from waflib.TaskGen import feature
401 @feature("wine")
402 def set_winegcc(self):
403     self.env.LINK_CXX = self.env.LINK_CC = 'wineg++'
404     self.env.CC = 'winegcc'
405
406 def _doPyp(infileName, deps = False):
407     outStr = ''
408     out = []
409     re_spaces = re.compile("\s+")
410
411     if infileName == '-':
412         fd = sys.stdin
413     else:
414         fd = open(infileName)
415     inLines = fd.readlines()
416     if fd != sys.stdin:
417         fd.close()
418
419
420     for line in inLines:
421         bits = re_spaces.split(line)
422         if bits[0] == '##include':
423             incName = bits[1]
424             if (deps):
425                 out += [ incName ]
426             else:
427                 # assume included file comes from same place as source file
428                 incName = os.path.join (os.path.dirname (infileName), incName);
429                 outStr += _doPyp(incName)
430         else:
431             if not deps:
432                 outStr += line
433
434     # done
435     if deps:
436         return out
437     else:
438         return outStr
439
440 def include_processor(task):
441     infileName = task.inputs[0].srcpath()
442     outfileName = os.path.join(out, task.outputs[0].bldpath())
443     fdOut = open (outfileName, "w")
444     fdOut.write (_doPyp(infileName))
445     fdOut.close ()
446
447
448 def build_color_scheme(path, prefix):
449     f = open (path, 'r')
450     color_scheme = ''
451     for line in f:
452         if re.search ('^#@color', line):
453             line.strip() # remove newline
454             words = line.split()
455             if len(color_scheme):
456                 color_scheme += ';'
457             color_scheme += prefix
458             color_scheme += '_'
459             color_scheme += words[1]
460             color_scheme += ':'
461             color_scheme += words[2]
462     f.close()
463     return color_scheme
464
465 def build(bld):
466
467     VERSION = "%s.%s" % (bld.env['MAJOR'], bld.env['MINOR'])
468     I18N_PACKAGE = 'gtk2_ardour' + bld.env['MAJOR']
469
470     # Tool to dump lua-bindings (of gtk2ardour + libs)
471     if re.search ("linux", sys.platform) != None and bld.env['LUABINDINGDOC']:
472         obj = bld (features = 'cxx c cxxprogram')
473         obj.install_path = None
474         obj.source    = list(gtk2_ardour_sources)
475         obj.target    = 'luadoc'
476         obj.includes  = ['.', '../libs']
477         obj.ldflags   = ['-no-undefined']
478         obj.use       = [
479                 'libpbd',
480                 'libardour',
481                 'libardour_cp',
482                 'libtimecode',
483                 'libmidipp',
484                 'libgtkmm2ext',
485                 'libcanvas',
486                 'libptformat',
487                 ]
488         obj.defines = [
489                 'NOMAIN',
490                 'PACKAGE="' + I18N_PACKAGE + '"',
491                 'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
492                 'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
493                 'LOCALEDIR="' + os.path.normpath(bld.env['LOCALEDIR']) + '"',
494                 ]
495         obj.linkflags = ''
496         obj.uselib    = 'UUID FLAC FONTCONFIG GLIBMM GTHREAD GTK OGG CURL DL GTKMM CANVAS FFTW3F LO TAGLIB XML '
497         obj.source += [ 'luadoc.cc', 'bundle_env_linux.cc' ]
498         if bld.is_defined('HAVE_SUIL'):
499             obj.source += [ 'lv2_plugin_ui.cc' ]
500             obj.use += [ 'SUIL' ]
501         if bld.is_defined('LXVST_SUPPORT'):
502             obj.source += [ 'vst_plugin_ui.cc' ]
503             obj.source += [ 'linux_vst_gui_support.cc', 'lxvst_plugin_ui.cc' ]
504             obj.defines += [ 'LXVST_SUPPORT' ]
505             obj.use += [ 'X11' ]
506
507     # Tool to test libcanvas
508     if re.search ("linux", sys.platform) != None and bld.env['CANVASTESTUI']:
509         obj = bld (features = 'cxx c cxxprogram')
510         obj.install_path = None
511         obj.source    = list(gtk2_ardour_sources)
512         obj.source    = [ 'ardour_button.cc', 'ui_config.cc', 'tooltips.cc' ]
513         obj.target    = 'canvas_test'
514         obj.includes  = ['.', '../libs']
515         obj.ldflags   = ['-no-undefined']
516         obj.use       = [
517                 'libpbd',
518                 'libardour',
519                 'libardour_cp',
520                 'libtimecode',
521                 'libmidipp',
522                 'libgtkmm2ext',
523                 'libcanvas',
524                 'libptformat',
525                 ]
526         obj.defines = [
527                 'NOMAIN',
528                 'PACKAGE="' + I18N_PACKAGE + '"',
529                 'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
530                 'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
531                 'LOCALEDIR="' + os.path.normpath(bld.env['LOCALEDIR']) + '"',
532                 ]
533         obj.linkflags = ''
534         obj.uselib    = 'UUID FLAC FONTCONFIG GLIBMM GTHREAD GTK OGG CURL DL GTKMM CANVAS FFTW3F LO TAGLIB XML '
535         # obj.source += [ 'canvas_test.cc', ]
536         obj.source += [ 'toolbar_test.cc', 'enums.cc']
537
538
539     if bld.is_defined('WINDOWS_VST_SUPPORT') and bld.env['build_target'] != 'mingw':
540         # Windows VST support w/wine
541         # If we require VST support we build a stub main() and the FST library
542         # here using winegcc, and link it to the GTK front-end library
543         obj = bld (features = 'cxx c cxxprogram wine')
544         obj.source = ( '../libs/fst/vstwin.c', '../vst/winmain.c' )
545         #
546         # XXX do we really need to explicitly link to all of these for the wine executable?
547         #
548         obj.use          = [ 'libpbd',
549                              'libmidipp',
550                              'libardour',
551                              'libardour_cp',
552                              'libtimecode',
553                              'libmidipp',
554                              'libgtk2_ardour',
555                              'libgtkmm2ext',
556                              'libcanvas',
557                              'libptformat',
558                              ]
559         obj.target = 'ardour-' + str (bld.env['VERSION']) + '-vst.exe.so'
560         obj.includes  = [ '../libs/fst', '.' ]
561         obj.linkflags = ['-mwindows', '-Wl,--export-dynamic']
562         obj.linkflags += bld.env['LDFLAGS']
563         obj.defines = ['_POSIX_SOURCE', 'USE_WS_PREFIX']
564         obj.install_path = bld.env['DLLDIR']
565         # end of the wine executable
566
567         # now the shared library containing the GTK GUI for ardour
568         obj = bld (features = 'cxx c cxxshlib')
569         # operate on copy to avoid adding sources twice
570         obj.source    = list(gtk2_ardour_sources)
571         obj.includes  = [ '../libs/fst', '.' ]
572         obj.name      = 'libgtk2_ardour'
573         obj.target    = 'gtk2_ardour'
574         obj.cflags  = [ '-fPIC' ]
575
576     else:
577         # just the normal executable version of the GTK GUI
578         if bld.env['build_target'] == 'mingw':
579             obj = bld (features = 'cxx c cxxprogram winres')
580         else:
581             obj = bld (features = 'cxx c cxxprogram')
582         # operate on copy to avoid adding sources twice
583         obj.source    = list(gtk2_ardour_sources)
584         obj.target = 'ardour-' + str (bld.env['VERSION'])
585         obj.includes = ['.']
586         obj.ldflags = ['-no-undefined']
587
588         if bld.is_defined('WINDOWS_VST_SUPPORT'):
589         # Windows VST support mingw
590             obj.includes += [ '../libs/fst' ]
591
592     # at this point, "obj" refers to either the normal native executable
593     # OR the shared library built for use with wine on linux.
594
595     obj.use      = [ 'libpbd',
596                      'libardour',
597                      'libardour_cp',
598                      'libtimecode',
599                      'libmidipp',
600                      'libgtkmm2ext',
601                      'libcanvas',
602                      'libptformat',
603                      ]
604
605     obj.defines = [
606         'PACKAGE="' + I18N_PACKAGE + '"',
607         'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
608         'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
609         'LOCALEDIR="' + os.path.normpath(bld.env['LOCALEDIR']) + '"',
610         ]
611     obj.install_path = bld.env['DLLDIR']
612     obj.linkflags    = ''
613     obj.uselib       = 'UUID FLAC FONTCONFIG GLIBMM GTHREAD GTK OGG CURL DL GTKMM CANVAS FFTW3F LO TAGLIB XML '
614
615     if sys.platform == 'darwin':
616         obj.uselib += ' AUDIOUNITS OSX '
617         obj.use    += ' libappleutility'
618         obj.source += [ 'cocoacarbon.mm', 'bundle_env_cocoa.cc' ]
619     elif bld.env['build_target'] == 'mingw':
620         obj.source += [ 'bundle_env_mingw.cc' ]
621         obj.source += [ 'windows_icon.rc' ]
622     else:
623         obj.source += [ 'bundle_env_linux.cc' ]
624
625     obj.includes += ['../libs']
626
627     obj.use += 'libptformat'
628
629     if bld.env['build_target'] == 'mingw':
630         obj.linkflags += ' -mwindows'
631         obj.use += [ 'PANGOFT2' ]
632
633     if bld.is_defined('HAVE_SUIL'):
634         obj.source += [ 'lv2_plugin_ui.cc' ]
635         obj.use += [ 'SUIL' ]
636
637     if bld.is_defined('HAVE_FFTW35F') and bld.env['build_target'] != 'mingw':
638         bld.env['LIB_FFTW3F'] += ['fftw3f_threads']
639
640     if bld.is_defined('NEED_INTL'):
641         obj.linkflags += ' -lintl'
642
643     if bld.is_defined('WINDOWS_VST_SUPPORT'):
644         obj.source += [ 'windows_vst_plugin_ui.cc' ]
645         obj.defines += [ 'WINDOWS_VST_SUPPORT' ]
646         if bld.env['build_target'] != 'mingw':
647             obj.use += [ 'X11' ]
648
649     if bld.is_defined('LXVST_SUPPORT'):
650         obj.source += [ 'linux_vst_gui_support.cc', 'lxvst_plugin_ui.cc' ]
651         obj.defines += [ 'LXVST_SUPPORT' ]
652         obj.use += [ 'X11' ]
653
654     if bld.is_defined('MACVST_SUPPORT'):
655         obj.source += [ 'mac_vst_plugin_ui.mm' ]
656         obj.defines += [ 'MACVST_SUPPORT' ]
657
658     if bld.is_defined('WINDOWS_VST_SUPPORT') or bld.is_defined('LXVST_SUPPORT') or bld.is_defined ('MACVST_SUPPORT'):
659         obj.source += [ 'vst_plugin_ui.cc' ]
660
661     if bld.is_defined('PHONE_HOME'):
662         obj.defines += [ 'PHONE_HOME' ]
663
664     if bld.is_defined('HAVE_COREAUDIO'):
665         TaskGen.task_gen.mappings['.mm'] = TaskGen.task_gen.mappings['.cc']
666         obj.use += ' libappleutility '
667
668     if bld.is_defined('AUDIOUNIT_SUPPORT'):
669         obj.source += [ 'au_pluginui.mm' ]
670
671     # Wrappers
672
673     wrapper_subst_dict = {
674             'INSTALL_PREFIX' : bld.env['PREFIX'],
675             'LIBDIR'         : os.path.normpath(bld.env['DLLDIR']),
676             'DATADIR'        : os.path.normpath(bld.env['DATADIR']),
677             'CONFDIR'        : os.path.normpath(bld.env['CONFDIR']),
678             'LIBS'           : 'build/libs',
679             'VERSION'        : str (bld.env['VERSION']),
680             'EXECUTABLE'     : 'build/gtk2_ardour/ardour-' + str (bld.env['VERSION'])
681     }
682
683     def set_subst_dict(obj, dict):
684         for i in dict:
685             setattr(obj, i, dict[i])
686
687     obj              = bld(features = 'subst')
688     obj.source       = 'ardev_common.sh.in'
689     obj.target       = 'ardev_common_waf.sh'
690     obj.chmod        = Utils.O755
691     obj.dict         = wrapper_subst_dict
692     set_subst_dict(obj, wrapper_subst_dict)
693
694     obj              = bld(features = 'subst')
695     obj.source       = 'ardour.sh.in'
696     obj.target       = 'ardour' + str (bld.env['MAJOR'])
697     obj.chmod        = Utils.O755
698     obj.dict         = wrapper_subst_dict
699     obj.install_path = bld.env['BINDIR']
700     set_subst_dict(obj, wrapper_subst_dict)
701
702     if bld.is_defined('WINDOWS_VST_SUPPORT'):
703         obj              = bld(features = 'subst')
704         obj.source       = '../vst/ardourvst.in'
705         obj.target       = 'ardourvst' + str (bld.env['MAJOR'])
706         obj.chmod        = Utils.O755
707         obj.dict         = wrapper_subst_dict
708         obj.install_path = bld.env['BINDIR']
709         set_subst_dict(obj, wrapper_subst_dict)
710
711     # Font configuration
712
713     font_subst_dict = {}
714     font_sizes      = {}
715     base_font       = ""
716
717     # Set up font sizes
718     if sys.platform == 'darwin':
719         basefont = ""
720         font_sizes = {
721                 'SMALLER' : '9',
722                 'SMALL' : '10',
723                 'NORMAL' : '11',
724                 'BIG' : '13',
725                 'BIGGER' : '17',
726                 'LARGE' : '18',
727                 'LARGER' : '28',
728                 'HUGER' : '36',
729                 'MASSIVE' : '60',
730         }
731
732         # There is no acceptable monospace font available on older versions of OS X
733         # and no API on those versions to load TTF files that will work with
734         # GTK/fontconfig/pango.
735         #
736         # In addition, the ArdourMono font gets clipped for some reason on OS X
737         #
738         # Moreover, Lucida Grande just seems to work even though it is not monospace
739         # so just use it.
740         #
741         font_names = {
742             'MONOSPACE' : 'Monaco',
743             'CLOCKFONT' : 'Lucida Grande',
744         }
745     else: # Linux/X11 fonts
746         basefont = '' # unspecified - use system defaults
747         font_sizes = {
748                 'SMALLER' : '6',
749                 'SMALL' : '7',
750                 'NORMAL' : '8',
751                 'BIG' : '11',
752                 'BIGGER' : '13.5',
753                 'LARGE' : '14.5',
754                 'LARGER' : '19',
755                 'HUGER' : '27',
756                 'MASSIVE' : '48',
757         }
758         font_names = {
759                 'MONOSPACE' : 'ArdourMono',
760                 'CLOCKFONT' : 'ArdourMono',
761         }
762
763     # Set up font substitution dictionary
764     # @FONT_XXXX@
765     for style in ['', 'BOLD', 'ITALIC']:
766         for sizename,points in iter(font_sizes.items()):
767             if (len (style)):
768                 key = "_".join (['FONT',style,sizename])
769                 fontstyle = " ".join ([basefont,style.lower(),points])
770             else:
771                 key = "_".join (['FONT',sizename])
772                 fontstyle = " ".join ([basefont,points])
773
774             font_subst_dict[key] = fontstyle
775
776     # @FONT_SIZE_XXXX@
777     for sizename,points in iter(font_sizes.items()):
778             key = "_".join (['FONT_SIZE',sizename])
779             font_subst_dict[key] = points
780
781     # various font names, eg @BOLD_MONOSPACE@
782     for font_sym,text in iter(font_names.items()):
783         key = font_sym
784         font_subst_dict[key] = text
785
786     # RC file
787
788     obj              = bld(features = 'subst')
789     obj.source       = [ 'clearlooks.rc.in' ]
790     obj.target       = 'clearlooks.rc'
791     obj.install_path = bld.env['CONFDIR']
792     set_subst_dict(obj, font_subst_dict)
793
794     obj              = bld(features = 'subst')
795     obj.source       = [ 'default_ui_config.in' ]
796     obj.target       = 'default_ui_config'
797     obj.install_path = bld.env['CONFDIR']
798     set_subst_dict(obj, font_subst_dict)
799
800     # Menus
801     menus_argv = []
802     if sys.platform == 'darwin':
803         menus_argv = [ '-E', '-P', '-D__APPLE__', '-' ]
804     else:
805         menus_argv = [ '-E', '-P' ]
806
807     if bld.is_defined('PTFORMAT'):
808         menus_argv += [ '-DPTFORMAT' ]
809
810     # always build all versions of the menu definitions
811     # so that we can try them out with different program builds.
812     for program in [ 'ardour', 'trx' ]:
813         obj = bld(features = 'command-output')
814         obj.command = 'cpp'
815         obj.command_is_external = True
816         obj.no_inputs = True
817         obj.argv = menus_argv
818         obj.dep_vars = ['PTFORMAT', 'GTKOSX', 'WINDOWS']
819         obj.stdin = program + '.menus.in'
820         obj.stdout = program + '.menus'
821         bld.install_files (bld.env['CONFDIR'], program + '.menus')
822
823     # Freedesktop
824     freedesktop_subst_dict = {
825                     'ARDOUR_EXEC' : str (bld.env['lwrcase_dirname']),
826                     'ARDOUR_ICON' : str (bld.env['lwrcase_dirname']),
827                     'VERSION': str (bld.env['VERSION']),
828     }
829
830     if bld.env['FREEDESKTOP']:
831         obj              = bld(features = 'subst')
832         obj.source       = 'ardour.desktop.in'
833         obj.target       = str (bld.env['lwrcase_dirname']) + '.desktop'
834         obj.chmod        = Utils.O644
835         obj.dict         = freedesktop_subst_dict
836         set_subst_dict(obj, freedesktop_subst_dict)
837
838         obj              = bld(features = 'subst')
839         obj.source       = 'ardour-mime-info.xml'
840         obj.target       = 'ardour.xml'
841         obj.chmod        = Utils.O644
842
843         # build appdata with translations
844         appdata_i18n_mo(bld)
845         appdata_i18n_xmlin(bld)
846         obj              = bld(features = 'subst')
847         obj.source       = 'ardour.appdata.xml.in'
848         obj.target       = str (bld.env['lwrcase_dirname']) + '.appdata.xml'
849         obj.chmod        = Utils.O644
850         obj.dict         = freedesktop_subst_dict
851         set_subst_dict(obj, freedesktop_subst_dict)
852
853     # Keybindings
854
855     # NATIVE ARDOUR BINDING FILES
856     # explicitly state the use of perl here so that it works on windows too
857     # 
858     a_rule = 'perl ../tools/fmt-bindings --platform="%s" --winkey="%s" --accelmap ${SRC[0].abspath()} >${TGT}' % (sys.platform, bld.env['WINDOWS_KEY'] )
859     for b in [ 'ardour' ] :
860         obj = bld(
861             target = b + '.keys',
862             source = [ b + '.keys.in', 'mixer.bindings', 'processor_box.bindings', 'step_editing.bindings', 'monitor.bindings' ],
863             rule = a_rule
864             )
865         obj.install_path = bld.env['CONFDIR']
866         
867     # Icons/Images
868     bld.install_files(os.path.join (bld.env['DATADIR'], 'icons'), bld.path.ant_glob('icons/*.png'))
869     bld.install_files(bld.env['DATADIR'], 'ArdourMono.ttf')
870
871     # Application/Product specific resources (icon, splash)
872     pgmname = bld.env['PROGRAM_NAME']
873     bld.install_files(os.path.join(bld.env['DATADIR'], 'resources'), bld.path.ant_glob('resources/' + pgmname + '*'))
874
875     if bld.env['build_target'] == 'mingw':
876         # These icons need to overwrite the files already installed in the icons
877         # directory above. Do this in the external packaging scripts for now.
878         #bld.install_files(os.path.join (bld.env['DATADIR'], 'icons'), bld.path.ant_glob('icons/cursor_square/*.png'))
879         bld.install_files(os.path.join (bld.env['DATADIR'], 'icons'), 'icons/cursor_square/hotspots')
880
881     # Default UI configuration
882     bld.install_files(bld.env['CONFDIR'], 'default_ui_config')
883     # Color Themes. Find each color file for this program only
884     # and install
885     bld.install_files (os.path.join(bld.env['DATADIR'], 'themes'), bld.path.ant_glob ('themes/*-' + pgmname.lower() + '.colors'));
886
887     # Default export stuff
888     bld.install_files(os.path.join(bld.env['CONFDIR'], 'export'), bld.path.ant_glob('export/*.format'))
889
890     # i18n
891     if bld.is_defined('ENABLE_NLS'):
892         mo_files = bld.path.ant_glob('po/*.mo')
893         for mo in mo_files:
894             lang = os.path.basename(mo.srcpath()).replace('.mo', '')
895             bld.install_as (os.path.join(os.path.normpath(bld.env['LOCALEDIR']), lang, 'LC_MESSAGES', I18N_PACKAGE + '.mo'),
896                             mo)
897
898 def i18n(bld):
899         I18N_PACKAGE = 'gtk2_ardour' + bld.env['MAJOR']
900         autowaf.build_i18n(bld, top, 'gtk2_ardour', I18N_PACKAGE, gtk2_ardour_sources,
901                            'Paul Davis')
902         appdata_i18n_pot(bld)
903         appdata_i18n_po(bld)
904
905 def i18n_pot(bld):
906         I18N_PACKAGE = 'gtk2_ardour' + bld.env['MAJOR']
907         autowaf.build_i18n_pot(bld, top, 'gtk2_ardour', I18N_PACKAGE, gtk2_ardour_sources,
908                                'Paul Davis')
909         appdata_i18n_pot(bld)
910
911 def i18n_po(bld):
912         I18N_PACKAGE = 'gtk2_ardour' + bld.env['MAJOR']
913         autowaf.build_i18n_po(bld, top, 'gtk2_ardour', I18N_PACKAGE, gtk2_ardour_sources,
914                               'Paul Davis')
915         appdata_i18n_po(bld)
916
917 def i18n_mo(bld):
918         I18N_PACKAGE = 'gtk2_ardour' + bld.env['MAJOR']
919         autowaf.build_i18n_mo(bld, top, 'gtk2_ardour', I18N_PACKAGE, gtk2_ardour_sources,
920                               'Paul Davis')
921
922 def appdata_i18n_pot(bld):
923     potfile = os.path.join(bld.top_dir, 'gtk2_ardour', 'appdata',
924             'ardour.appdata.pot')
925     if bld.cmd == 'i18n_pot':
926         Logs.info('Generating pot file from Ardour appdata')
927         itsfile = os.path.join(bld.top_dir, 'tools', 'as-metainfo.its')
928         adsource = os.path.join(bld.top_dir, 'gtk2_ardour',
929                 'ardour.appdata.xml.in.in')
930         Logs.info('Updating ' + potfile)
931         try:
932                 subprocess.call(('itstool', '-i', itsfile, '-o', potfile, adsource))
933         except:
934                 print ('Error processing appdata pot file - ignored')
935     elif bld.cmd == 'clean' and os.path.exists(potfile):
936         Logs.info('Removing Ardour appdata pot file')
937         os.remove(potfile)
938
939 def appdata_i18n_po(bld):
940     autowaf.build_i18n_po(bld, bld.top_dir, os.path.join(
941         'gtk2_ardour', 'appdata'), 'ardour.appdata', 'dummy', 'dummy')
942
943 def appdata_i18n_mo(bld):
944     autowaf.build_i18n_mo(bld, bld.top_dir, os.path.join(
945         'gtk2_ardour', 'appdata'), 'ardour.appdata', 'dummy', 'dummy')
946
947 def appdata_i18n_xmlin(bld):
948     adxmlinfile = os.path.join(bld.top_dir, 'gtk2_ardour',
949             'ardour.appdata.xml.in')
950     if bld.cmd == 'build':
951         itsfile = os.path.join(bld.top_dir, 'tools', 'as-metainfo.its')
952         adxmlininfile = os.path.join(bld.top_dir, 'gtk2_ardour',
953                 'ardour.appdata.xml.in.in')
954         mo_glob = os.path.join(bld.top_dir, 'gtk2_ardour', 'appdata', 'po', '*.mo')
955         mo_files = glob.glob(mo_glob)
956         Logs.info('Generating ' + adxmlinfile)
957         subprocess.call(['itstool', '-i', itsfile, '-o', adxmlinfile,
958             '-j', adxmlininfile] + mo_files)
959     elif bld.cmd == 'clean' and os.path.exists(adxmlinfile):
960         Logs.info('Removing ' + adxmlinfile)
961         os.remove(adxmlinfile)