2009-02-25 18:59:55 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import autowaf
|
|
|
|
import os
|
2009-02-25 23:41:09 -05:00
|
|
|
import glob
|
2009-02-25 18:59:55 -05:00
|
|
|
|
|
|
|
# Version of this package (even if built as a child)
|
2009-02-25 21:24:16 -05:00
|
|
|
MAJOR = '1'
|
|
|
|
MINOR = '0'
|
|
|
|
MICRO = '2'
|
|
|
|
GTK2_ARDOUR_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
2009-02-25 18:59:55 -05:00
|
|
|
|
|
|
|
# Variables for 'waf dist'
|
|
|
|
APPNAME = 'gtk2_ardour'
|
|
|
|
VERSION = GTK2_ARDOUR_VERSION
|
|
|
|
|
|
|
|
# Mandatory variables
|
|
|
|
srcdir = '.'
|
|
|
|
blddir = 'build'
|
|
|
|
|
2009-02-25 21:24:16 -05:00
|
|
|
path_prefix = 'gtk2_ardour/'
|
|
|
|
|
2009-02-25 18:59:55 -05:00
|
|
|
def set_options(opt):
|
|
|
|
autowaf.set_options(opt)
|
|
|
|
|
|
|
|
def configure(conf):
|
2009-02-25 21:24:16 -05:00
|
|
|
autowaf.build_version_files(path_prefix+'version.h', path_prefix+'version.cc',
|
|
|
|
'gtk2_ardour', MAJOR, MINOR, MICRO)
|
2009-02-25 18:59:55 -05:00
|
|
|
autowaf.configure(conf)
|
|
|
|
autowaf.check_tool(conf, 'compiler_cxx')
|
|
|
|
|
|
|
|
autowaf.check_pkg(conf, 'alsa', uselib_store='ALSA')
|
|
|
|
autowaf.check_pkg(conf, 'flac', uselib_store='FLAC', atleast_version='1.2.1')
|
|
|
|
autowaf.check_pkg(conf, 'gthread', uselib_store='GTHREAD', atleast_version='2.10.1')
|
|
|
|
autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK', atleast_version='2.12.1')
|
|
|
|
autowaf.check_pkg(conf, 'gtkmm-2.4', uselib_store='GTKMM', atleast_version='2.8')
|
|
|
|
autowaf.check_pkg(conf, 'libgnomecanvas-2.0', uselib_store='GNOMECANVAS', atleast_version='2.0')
|
|
|
|
autowaf.check_pkg(conf, 'libgnomecanvasmm-2.6', uselib_store='GNOMECANVASMM', atleast_version='2.12.0')
|
|
|
|
autowaf.check_pkg(conf, 'ogg', uselib_store='OGG', atleast_version='1.1.2')
|
|
|
|
|
|
|
|
conf.check_tool('misc') # subst tool
|
|
|
|
|
|
|
|
conf.env.append_value('CCFLAGS', '-D_REENTRANT -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE')
|
|
|
|
conf.env.append_value('CXXFLAGS', '-DENABLE_NLS')
|
|
|
|
|
|
|
|
conf.env.append_value('CXXFLAGS', '-DHAVE_WAFCONFIG_H')
|
|
|
|
conf.write_config_header('wafconfig.h')
|
|
|
|
|
2009-02-25 23:41:09 -05:00
|
|
|
# TODO
|
|
|
|
conf.define('WINDOWS_KEY', 'Mod4')
|
|
|
|
|
2009-02-25 18:59:55 -05:00
|
|
|
# Boost headers
|
|
|
|
autowaf.check_header(conf, 'boost/shared_ptr.hpp')
|
|
|
|
autowaf.check_header(conf, 'boost/weak_ptr.hpp')
|
|
|
|
|
|
|
|
def build(bld):
|
|
|
|
# Program
|
2009-03-04 14:35:25 -05:00
|
|
|
obj = bld.new_task_gen(features = 'cxx cc cprogram')
|
2009-02-25 18:59:55 -05:00
|
|
|
obj.source = '''
|
|
|
|
about.cc
|
|
|
|
actions.cc
|
|
|
|
add_midi_cc_track_dialog.cc
|
|
|
|
add_route_dialog.cc
|
|
|
|
analysis_window.cc
|
|
|
|
ardour_dialog.cc
|
|
|
|
ardour_ui.cc
|
|
|
|
ardour_ui2.cc
|
|
|
|
ardour_ui_dependents.cc
|
|
|
|
ardour_ui_dialogs.cc
|
|
|
|
ardour_ui_ed.cc
|
|
|
|
ardour_ui_mixer.cc
|
|
|
|
ardour_ui_options.cc
|
|
|
|
audio_clock.cc
|
|
|
|
audio_region_editor.cc
|
|
|
|
audio_region_view.cc
|
|
|
|
audio_streamview.cc
|
|
|
|
audio_time_axis.cc
|
|
|
|
automation_controller.cc
|
|
|
|
automation_line.cc
|
|
|
|
automation_region_view.cc
|
|
|
|
automation_streamview.cc
|
|
|
|
automation_time_axis.cc
|
|
|
|
axis_view.cc
|
|
|
|
bundle_manager.cc
|
2009-03-04 14:35:25 -05:00
|
|
|
canvas-flag.cc
|
2009-02-25 18:59:55 -05:00
|
|
|
canvas-note-event.cc
|
|
|
|
canvas-note.cc
|
|
|
|
canvas-program-change.cc
|
2009-03-04 14:35:25 -05:00
|
|
|
canvas-simpleline.c
|
|
|
|
canvas-simplerect.c
|
2009-02-25 18:59:55 -05:00
|
|
|
canvas-sysex.cc
|
2009-03-04 14:35:25 -05:00
|
|
|
canvas-waveview.c
|
2009-02-25 18:59:55 -05:00
|
|
|
control_point.cc
|
|
|
|
control_point_dialog.cc
|
|
|
|
crossfade_edit.cc
|
|
|
|
crossfade_view.cc
|
|
|
|
curvetest.cc
|
|
|
|
diamond.cc
|
|
|
|
editing.cc
|
|
|
|
editor.cc
|
|
|
|
editor_actions.cc
|
|
|
|
editor_audio_import.cc
|
|
|
|
editor_audiotrack.cc
|
|
|
|
editor_canvas.cc
|
|
|
|
editor_canvas_events.cc
|
|
|
|
editor_cursors.cc
|
|
|
|
editor_edit_groups.cc
|
|
|
|
editor_export_audio.cc
|
|
|
|
editor_hscroller.cc
|
|
|
|
editor_keyboard.cc
|
|
|
|
editor_keys.cc
|
|
|
|
editor_markers.cc
|
|
|
|
editor_mixer.cc
|
|
|
|
editor_mouse.cc
|
|
|
|
editor_nudge.cc
|
|
|
|
editor_ops.cc
|
|
|
|
editor_region_list.cc
|
|
|
|
editor_route_list.cc
|
|
|
|
editor_rulers.cc
|
|
|
|
editor_scrub.cc
|
|
|
|
editor_selection.cc
|
|
|
|
editor_selection_list.cc
|
|
|
|
editor_tempodisplay.cc
|
|
|
|
editor_timefx.cc
|
|
|
|
engine_dialog.cc
|
|
|
|
enums.cc
|
|
|
|
export_channel_selector.cc
|
|
|
|
export_dialog.cc
|
|
|
|
export_file_notebook.cc
|
2009-03-04 14:35:25 -05:00
|
|
|
export_filename_selector.cc
|
2009-02-25 18:59:55 -05:00
|
|
|
export_format_dialog.cc
|
|
|
|
export_format_selector.cc
|
|
|
|
export_preset_selector.cc
|
|
|
|
export_timespan_selector.cc
|
|
|
|
fft.cc
|
|
|
|
fft_graph.cc
|
|
|
|
fft_result.cc
|
|
|
|
gain_meter.cc
|
|
|
|
generic_pluginui.cc
|
|
|
|
ghostregion.cc
|
|
|
|
global_port_matrix.cc
|
2009-03-04 14:35:25 -05:00
|
|
|
gtk-custom-hruler.c
|
|
|
|
gtk-custom-ruler.c
|
2009-02-25 18:59:55 -05:00
|
|
|
io_selector.cc
|
|
|
|
keyboard.cc
|
|
|
|
keyeditor.cc
|
|
|
|
latency_gui.cc
|
|
|
|
level_meter.cc
|
|
|
|
lineset.cc
|
|
|
|
location_ui.cc
|
|
|
|
main.cc
|
|
|
|
marker.cc
|
|
|
|
midi_channel_selector.cc
|
|
|
|
midi_port_dialog.cc
|
|
|
|
midi_region_view.cc
|
|
|
|
midi_scroomer.cc
|
|
|
|
midi_streamview.cc
|
|
|
|
midi_time_axis.cc
|
|
|
|
mixer_strip.cc
|
|
|
|
mixer_ui.cc
|
|
|
|
nag.cc
|
|
|
|
new_session_dialog.cc
|
|
|
|
option_editor.cc
|
|
|
|
opts.cc
|
|
|
|
panner.cc
|
|
|
|
panner2d.cc
|
|
|
|
panner_ui.cc
|
|
|
|
piano_roll_header.cc
|
|
|
|
playlist_selector.cc
|
2009-03-04 14:35:25 -05:00
|
|
|
plugin_eq_gui.cc
|
2009-02-25 18:59:55 -05:00
|
|
|
plugin_selector.cc
|
|
|
|
plugin_ui.cc
|
|
|
|
port_group.cc
|
|
|
|
port_matrix.cc
|
|
|
|
port_matrix_body.cc
|
|
|
|
port_matrix_column_labels.cc
|
|
|
|
port_matrix_component.cc
|
|
|
|
port_matrix_grid.cc
|
|
|
|
port_matrix_labels.cc
|
|
|
|
port_matrix_row_labels.cc
|
|
|
|
processor_box.cc
|
|
|
|
prompter.cc
|
|
|
|
public_editor.cc
|
|
|
|
region_gain_line.cc
|
|
|
|
region_selection.cc
|
|
|
|
region_view.cc
|
|
|
|
rhythm_ferret.cc
|
|
|
|
route_params_ui.cc
|
|
|
|
route_processor_selection.cc
|
|
|
|
route_time_axis.cc
|
|
|
|
route_ui.cc
|
|
|
|
selection.cc
|
|
|
|
send_ui.cc
|
|
|
|
session_import_dialog.cc
|
|
|
|
session_metadata_dialog.cc
|
|
|
|
sfdb_ui.cc
|
|
|
|
simpleline.cc
|
|
|
|
simplerect.cc
|
|
|
|
splash.cc
|
|
|
|
streamview.cc
|
|
|
|
tape_region_view.cc
|
|
|
|
tempo_dialog.cc
|
|
|
|
tempo_lines.cc
|
|
|
|
theme_manager.cc
|
|
|
|
time_axis_view.cc
|
|
|
|
time_axis_view_item.cc
|
2009-02-26 20:20:25 -05:00
|
|
|
time_fx_dialog.cc
|
2009-02-25 18:59:55 -05:00
|
|
|
time_selection.cc
|
|
|
|
ui_config.cc
|
|
|
|
utils.cc
|
|
|
|
version.cc
|
|
|
|
waveview.cc
|
|
|
|
'''
|
|
|
|
obj.source += 'x11.cc'
|
|
|
|
obj.includes = ['.']
|
|
|
|
obj.name = 'gtk2_ardour'
|
|
|
|
obj.target = 'ardour-3.0'
|
2009-02-26 23:40:44 -05:00
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
|
2009-02-25 18:59:55 -05:00
|
|
|
obj.uselib = 'UUID FLAC GLIBMM GTHREAD GTK GNOMECANVAS OGG ALSA'
|
|
|
|
obj.uselib += ' GTKMM GNOMECANVASMM'
|
2009-02-25 20:34:03 -05:00
|
|
|
obj.uselib_local = '''libpbd libmidipp libtaglib libardour libsurfaces
|
2009-03-04 14:35:25 -05:00
|
|
|
libgtkmm2ext libtaglib'''
|
2009-02-25 18:59:55 -05:00
|
|
|
obj.cxxflags = '-DVERSIONSTRING=\\\"' + GTK2_ARDOUR_VERSION + '\\\"'
|
|
|
|
obj.cxxflags += ' -DPACKAGE=\\\"gtk2_ardour\\\"'
|
|
|
|
obj.cxxflags += ' -DDATA_DIR=\\\"' + os.path.normpath(bld.env['DATADIRNAME']) + '\\\"'
|
|
|
|
obj.cxxflags += ' -DCONFIG_DIR=\\\"' + os.path.normpath(bld.env['CONFIGDIRNAME']) + '\\\"'
|
|
|
|
obj.cxxflags += ' -DMODULE_DIR=\\\"' + os.path.normpath(bld.env['LIBDIRNAME']) + '\\\"'
|
|
|
|
obj.cxxflags += ' -DLOCALEDIR=\\\"' + os.path.join(
|
|
|
|
os.path.normpath(bld.env['DATADIRNAME']), 'locale') + '\\\"'
|
|
|
|
|
|
|
|
# Wrappers
|
|
|
|
|
|
|
|
wrapper_subst_dict = {
|
|
|
|
'INSTALL_PREFIX' : bld.env['PREFIX'],
|
|
|
|
'LIBDIR' : os.path.normpath(bld.env['LIBDIRNAME']),
|
2009-02-26 17:30:13 -05:00
|
|
|
'LIBS' : 'build/default/libs',
|
2009-02-25 18:59:55 -05:00
|
|
|
'VERSION' : '3.0',
|
|
|
|
'EXECUTABLE' : 'build/default/gtk2_ardour/ardour-3.0'
|
|
|
|
}
|
|
|
|
|
2009-02-26 23:40:44 -05:00
|
|
|
obj = bld.new_task_gen('subst')
|
|
|
|
obj.source = 'ardev_common.sh.in'
|
|
|
|
obj.target = 'ardev_common_waf.sh'
|
|
|
|
obj.chmod = 0755
|
|
|
|
obj.dict = wrapper_subst_dict
|
|
|
|
|
|
|
|
obj = bld.new_task_gen('subst')
|
|
|
|
obj.source = 'ardour.sh.in'
|
|
|
|
obj.target = 'ardour3'
|
|
|
|
obj.chmod = 0755
|
|
|
|
obj.dict = wrapper_subst_dict
|
|
|
|
obj.install_path = bld.env['BINDIR']
|
2009-02-25 18:59:55 -05:00
|
|
|
|
2009-02-25 23:41:09 -05:00
|
|
|
# Font configuration
|
|
|
|
|
|
|
|
font_subst_dict = {}
|
|
|
|
font_sizes = {}
|
|
|
|
base_font = ""
|
|
|
|
|
|
|
|
# Set up font substitution dictionary
|
|
|
|
for style in ['', 'BOLD', 'ITALIC']:
|
|
|
|
for sizename,points in font_sizes.iteritems():
|
|
|
|
if (len (style)):
|
|
|
|
key = "_".join (['FONT',style,sizename])
|
|
|
|
fontstyle = " ".join ([basefont,style.lower(),points])
|
|
|
|
else:
|
|
|
|
key = "_".join (['FONT',sizename])
|
|
|
|
fontstyle = " ".join ([basefont,points])
|
|
|
|
key = '%' + key + '%'
|
|
|
|
font_subst_dict[key] = fontstyle
|
|
|
|
|
|
|
|
# Set up font sizes
|
|
|
|
if bld.env['IS_OSX']: # OS X fonts
|
|
|
|
basefont = "Lucida Grande"
|
|
|
|
font_sizes = {
|
|
|
|
'TINY' : '7',
|
|
|
|
'SMALLER' : '9',
|
|
|
|
'SMALL' : '10',
|
|
|
|
'NORMAL' : '11',
|
|
|
|
'BIG' : '12',
|
|
|
|
'BIGGER' : '14',
|
|
|
|
'LARGE' : '18',
|
|
|
|
'LARGER' : '28',
|
|
|
|
'HUGER' : '36',
|
|
|
|
'MASSIVE' : '60'
|
|
|
|
}
|
|
|
|
else: # Linux/X11 fonts
|
|
|
|
basefont = "sans"
|
|
|
|
font_sizes = {
|
|
|
|
'TINY' : '6',
|
|
|
|
'SMALLER' : '8',
|
|
|
|
'SMALL' : '9',
|
|
|
|
'NORMAL' : '10',
|
|
|
|
'BIG' : '14',
|
|
|
|
'BIGGER' : '16',
|
|
|
|
'LARGE' : '18',
|
|
|
|
'LARGER' : '24',
|
|
|
|
'HUGER' : '34',
|
|
|
|
'MASSIVE' : '60'
|
|
|
|
}
|
|
|
|
|
|
|
|
# RC files
|
|
|
|
|
2009-02-26 23:40:44 -05:00
|
|
|
obj = bld.new_task_gen('subst')
|
|
|
|
obj.source = 'ardour3_ui_dark.rc.in'
|
|
|
|
obj.target = 'ardour3_ui_dark.rc'
|
|
|
|
obj.dict = font_subst_dict
|
|
|
|
obj.install_path = os.path.join(bld.env['CONFIGDIR'], 'ardour3')
|
2009-02-25 23:41:09 -05:00
|
|
|
|
2009-02-26 23:40:44 -05:00
|
|
|
obj = bld.new_task_gen('subst')
|
|
|
|
obj.source = 'ardour3_ui_light.rc.in'
|
|
|
|
obj.target = 'ardour3_ui_light.rc'
|
|
|
|
obj.dict = font_subst_dict
|
|
|
|
obj.install_path = os.path.join(bld.env['CONFIGDIR'], 'ardour3')
|
2009-02-25 23:41:09 -05:00
|
|
|
|
2009-02-26 23:40:44 -05:00
|
|
|
obj = bld.new_task_gen('subst')
|
|
|
|
obj.source = 'ardour3_ui_dark_sae.rc.in'
|
|
|
|
obj.target = 'ardour3_ui_dark_sae.rc'
|
|
|
|
obj.dict = font_subst_dict
|
|
|
|
obj.install_path = os.path.join(bld.env['CONFIGDIR'], 'ardour3')
|
2009-02-25 23:41:09 -05:00
|
|
|
|
2009-02-26 23:40:44 -05:00
|
|
|
obj = bld.new_task_gen('subst')
|
|
|
|
obj.source = 'ardour3_ui_light_sae.rc.in'
|
|
|
|
obj.target = 'ardour3_ui_light_sae.rc'
|
|
|
|
obj.dict = font_subst_dict
|
|
|
|
obj.install_path = os.path.join(bld.env['CONFIGDIR'], 'ardour3')
|
2009-02-25 23:41:09 -05:00
|
|
|
|
|
|
|
# Menus
|
|
|
|
menus_argv = []
|
|
|
|
if bld.env['GTKOSX']:
|
2009-02-25 23:54:08 -05:00
|
|
|
menus_argv = [ '-E', '-P', '-DGTKOSX', '-DTOP_MENUBAR' ]
|
2009-02-25 23:41:09 -05:00
|
|
|
else:
|
2009-02-25 23:54:08 -05:00
|
|
|
menus_argv = [ '-E', '-P' ]
|
2009-02-25 23:41:09 -05:00
|
|
|
obj = bld.new_task_gen('command-output')
|
|
|
|
obj.command = 'cpp'
|
|
|
|
obj.command_is_external = True
|
|
|
|
obj.no_inputs = True
|
|
|
|
obj.argv = menus_argv
|
2009-02-25 23:54:08 -05:00
|
|
|
obj.stdin = 'ardour.menus.in'
|
2009-02-25 23:41:09 -05:00
|
|
|
obj.stdout = 'ardour.menus'
|
|
|
|
|
|
|
|
# Keybindings
|
|
|
|
keybindings_dict = {}
|
|
|
|
if bld.env['GTKOSX']:
|
|
|
|
keybindings_dict['%PRIMARY%'] = 'Meta'
|
|
|
|
keybindings_dict['%SECONDARY%'] = 'Mod1'
|
|
|
|
keybindings_dict['%TERTIARY%'] = 'Shift'
|
|
|
|
keybindings_dict['%LEVEL4%'] = 'Ctrl'
|
|
|
|
keybindings_dict['%WINDOW%'] = 'Mod1'
|
|
|
|
else:
|
|
|
|
keybindings_dict['%PRIMARY%'] = 'Ctrl'
|
|
|
|
keybindings_dict['%SECONDARY%'] = 'Alt'
|
|
|
|
keybindings_dict['%TERTIARY%'] = 'Shift'
|
|
|
|
keybindings_dict['%LEVEL4%'] = bld.env['WINDOWS_KEY']
|
|
|
|
keybindings_dict['%WINDOW%'] = 'Alt'
|
|
|
|
|
|
|
|
for b in [ 'SAE-de-keypad', 'SAE-de-nokeypad', 'SAE-us-keypad', 'SAE-us-nokeypad',
|
|
|
|
'mnemonic-us', 'ergonomic-us' ]:
|
|
|
|
obj = bld.new_task_gen('subst')
|
|
|
|
obj.target = b + '.bindings'
|
|
|
|
obj.source = obj.target + '.in'
|
|
|
|
obj.dict = keybindings_dict
|
2009-02-26 23:40:44 -05:00
|
|
|
|
|
|
|
# Icons/Images
|
|
|
|
bld.install_files('${DATADIR}/ardour3/icons', 'icons/*.png')
|
|
|
|
bld.install_files('${DATADIR}/ardour3/pixmaps', 'pixmaps/*.xpm')
|
|
|
|
bld.install_files('${DATADIR}/ardour3', 'splash.png')
|
2009-02-25 23:41:09 -05:00
|
|
|
|
2009-02-25 18:59:55 -05:00
|
|
|
def shutdown():
|
|
|
|
autowaf.shutdown()
|
|
|
|
|