Merging from trunk
[ardour.git] / gtk2_ardour / SConscript
1 # -*- python -*-
2
3 import os
4 import os.path
5 import glob
6
7 Import('env install_prefix final_prefix config_prefix libraries i18n version')
8
9 gtkardour = env.Copy()
10
11 #
12 # this defines the version number of the GTK interface to ardour
13 #
14
15 domain = 'gtk_ardour'
16
17 gtkardour.Append(DOMAIN=domain, MAJOR=1,MINOR=0,MICRO=2)
18 gtkardour.Append(CCFLAGS="-DPACKAGE=\\\"" + domain + "\\\"")
19 gtkardour.Append(CXXFLAGS="-DPACKAGE=\\\"" + domain + "\\\"")
20 gtkardour.Append(CXXFLAGS="-DLIBSIGC_DISABLE_DEPRECATED")
21 #gtkardour.Append(CXXFLAGS="-DFLOWCANVAS_AA")
22 gtkardour.Append(PACKAGE=domain)
23 gtkardour.Append(POTFILE=domain + '.pot')
24
25 gtkardour.Merge ([
26     libraries['ardour'],
27     libraries['ardour_cp'],
28     libraries['gtkmm2ext'],
29     libraries['midi++2'],
30     libraries['pbd3'],
31     libraries['gtkmm2'],
32     libraries['glib2'],
33     libraries['libgnomecanvas2'],
34     libraries['libgnomecanvasmm'],
35     libraries['sysmidi'],
36     libraries['sndfile'],
37     libraries['flac'],
38     libraries['lrdf'],
39     libraries['glibmm2'],
40     libraries['pangomm'],
41     libraries['atkmm'],
42     libraries['gdkmm2'],
43     libraries['sigc2'],
44     libraries['gtk2'],
45     libraries['xml'],
46     libraries['xslt'],
47     libraries['soundtouch'],
48     libraries['samplerate'],
49     libraries['jack']
50 ])
51
52 if gtkardour['DMALLOC']:
53         gtkardour.Merge([libraries['dmalloc']])
54         gtkardour.Append(CCFLAGS='-DUSE_DMALLOC')
55
56 if gtkardour['FFT_ANALYSIS']:
57         gtkardour.Merge ([libraries['fftw3f']])
58         gtkardour.Append(CCFLAGS='-DFFT_ANALYSIS')
59
60 skipped_files=Split("""
61 connection_editor.cc
62 """)
63
64
65 gtkardour_files=Split("""
66 about.cc
67 actions.cc
68 add_route_dialog.cc
69 ardour_dialog.cc
70 ardour_ui.cc
71 ardour_ui2.cc
72 ardour_ui_dependents.cc
73 ardour_ui_dialogs.cc
74 ardour_ui_ed.cc
75 ardour_ui_mixer.cc
76 ardour_ui_options.cc
77 audio_clock.cc
78 audio_time_axis.cc
79 automation_gain_line.cc
80 automation_line.cc
81 automation_pan_line.cc
82 automation_time_axis.cc
83 axis_view.cc
84 canvas-imageframe.c
85 canvas-simpleline.c
86 simpleline.cc
87 canvas-simplerect.c
88 simplerect.cc
89 canvas-waveview.c
90 color_manager.cc
91 crossfade_edit.cc
92 crossfade_view.cc
93 curvetest.cc
94 editing.cc
95 editor.cc
96 editor_actions.cc
97 editor_audio_import.cc
98 editor_audiotrack.cc
99 editor_canvas.cc
100 editor_canvas_events.cc
101 editor_cursors.cc
102 editor_edit_groups.cc
103 editor_export_audio.cc
104 editor_hscroller.cc
105 editor_imageframe.cc
106 editor_keyboard.cc
107 editor_keys.cc
108 editor_markers.cc
109 editor_mixer.cc
110 editor_mouse.cc
111 editor_nudge.cc
112 editor_ops.cc
113 editor_region_list.cc
114 editor_route_list.cc
115 editor_rulers.cc
116 editor_scrub.cc
117 editor_selection_list.cc
118 editor_tempodisplay.cc
119 editor_timefx.cc
120 export_dialog.cc
121 export_session_dialog.cc
122 export_region_dialog.cc
123 export_range_markers_dialog.cc
124 gain_automation_time_axis.cc
125 gain_meter.cc
126 ghostregion.cc
127 grouped_buttons.cc
128 gtk-custom-hruler.c
129 gtk-custom-ruler.c
130 imageframe.cc
131 imageframe_socket_handler.cc
132 imageframe_time_axis.cc
133 imageframe_time_axis_group.cc
134 imageframe_time_axis_view.cc
135 imageframe_view.cc
136 io_selector.cc
137 keyboard.cc
138 location_ui.cc
139 main.cc
140 marker.cc
141 marker_time_axis.cc
142 marker_time_axis_view.cc
143 marker_view.cc
144 meter_bridge.cc
145 meter_bridge_strip.cc
146 mixer_strip.cc
147 mixer_ui.cc
148 new_session_dialog.cc
149 option_editor.cc
150 opts.cc
151 pan_automation_time_axis.cc
152 panner2d.cc
153 panner_ui.cc
154 playlist_selector.cc
155 plugin_selector.cc
156 plugin_ui.cc
157 prompter.cc
158 public_editor.cc
159 redirect_automation_line.cc
160 redirect_automation_time_axis.cc
161 redirect_box.cc
162 region_editor.cc
163 region_gain_line.cc
164 region_selection.cc
165 regionview.cc
166 route_params_ui.cc
167 route_redirect_selection.cc
168 route_ui.cc
169 selection.cc
170 sfdb_ui.cc
171 send_ui.cc
172 streamview.cc
173 taperegionview.cc
174 tempo_dialog.cc
175 time_axis_view.cc
176 time_axis_view_item.cc
177 time_selection.cc
178 utils.cc
179 version.cc
180 visual_time_axis.cc
181 waveview.cc
182 """)
183
184
185 fft_analysis_files=Split("""
186 analysis_window.cc
187 fft_graph.cc
188 fft_result.cc
189 """)
190
191 pixmap_files=glob.glob('pixmaps/*.xpm')
192
193 intl_files = gtkardour_files + glob.glob('*.h')
194
195 mtest_files=Split("""
196 mtest.cc
197 """)
198
199 itest_files=Split("""
200 itest.cc
201 """)
202
203 extra_sources = []
204
205 vst_files = [ 'vst_pluginui.cc' ]
206
207 if env['VST']:
208         extra_sources += vst_files
209         gtkardour.Append (CCFLAGS="-DVST_SUPPORT", CPPPATH="#libs/fst")
210   
211 if env['FFT_ANALYSIS']:
212         extra_sources += fft_analysis_files
213
214 intl_files += extra_sources
215
216 gtkardour.Append(CCFLAGS="-D_REENTRANT -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE")
217 gtkardour.Append(CXXFLAGS="-DLOCALEDIR=\\\""+final_prefix+"/share/locale\\\"")
218
219 versionflag = '-DVERSIONSTRING=\\\"' + env['VERSION'] + '\\\"'
220
221 gtkardour.Append(CXXFLAGS=versionflag)
222
223 gtkardour.VersionBuild(['version.cc','version.h'], 'SConscript')
224
225 executable = 'ardour.bin'
226
227 ardour = gtkardour.Program(target = executable, source = gtkardour_files + extra_sources)
228 ardourlib = gtkardour.SharedLibrary(target = 'ardourgtk', source = gtkardour_files + extra_sources)
229
230 mtest = gtkardour.Program(target = 'mtest', source = mtest_files)
231 itest = gtkardour.Program(target = 'itest', source = itest_files)
232
233 my_subst_dict = { }
234 my_subst_dict['%INSTALL_PREFIX%'] = install_prefix
235
236 ardoursh = env.SubstInFile ('ardour.sh','ardour.sh.in', SUBST_DICT = my_subst_dict);
237 env.AddPostAction (ardoursh, Chmod ('$TARGET', 0755))
238
239 if env['VST']:
240         Default(ardourlib)
241         # the library - into the library dir
242         env.Alias('install', env.Install(os.path.join(install_prefix, 'lib/ardour2'), ardourlib))
243 else:
244
245         if env['VERSIONED']:
246                 Default (env.VersionedExecutable ('tagged_executable', ardour))
247         else:
248                 Default(ardour)
249
250         #install
251
252         # the executable - into the library dir
253         env.Alias('install', env.Install(os.path.join(install_prefix, 'lib/ardour2'), ardour))
254         # the script - into the bin dir
255         env.Alias('install', env.InstallAs(os.path.join(install_prefix, 'bin')+'/ardour2', ardoursh))
256
257 if env['NLS']:
258         Export('gtkardour', 'intl_files')
259         SConscript ('po/SConscript')
260     
261 # configuration files
262 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour2_ui.rc'))
263 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour.menus'))
264 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour.bindings'))
265 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour.colors'))
266 # data files
267 env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour2'), 'splash.ppm'))
268 env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour2/pixmaps'), pixmap_files))
269
270                 
271 #dist
272 env.Alias ('tarball', env.Distribute (env['DISTTREE'],
273                                       [ 'SConscript',
274                                         'i18n.h', 'gettext.h',
275                                         'ardour.sh.in',
276                                         'ardour2_ui.rc', 'splash.ppm',
277                                         'ardour.menus', 'ardour.bindings', 'ardour.colors',
278                                         'editor_xpms'
279                                         ] +
280                                       gtkardour_files + vst_files + pixmap_files +
281                                       glob.glob('po/*.po') + glob.glob('*.h')))
282
283 # generate a prototype full-featured ardour_ui.rc file
284
285 env.Alias ('protorc', env.Command ('proto.rc', gtkardour_files, """
286      grep set_name $SOURCES | \
287 sed 's/.*("\([a-zA-Z_][a-zA-Z_]*\)").*/\\1/' | \
288 grep -v '\\.' | sort | uniq | \
289 awk '/\\./ {} { printf ("style \\"%s\\"\\n{\\n\
290   fg[NORMAL] =   { 0, 0, 0 }\\n\
291   fg[ACTIVE] =   { 0, 0, 0 }\\n\
292   fg[SELECTED] = { 0, 0, 0 }\\n\
293   bg[NORMAL] =   { 0, 0, 0 }\\n\
294   bg[ACTIVE] =   { 0, 0, 0 }\\n\
295   bg[SELECTED] = { 0, 0, 0 }\\n\
296 }\\nwidget \\"*%s\\" style \\"%s\\"\\nwidget \\"*%s*\\" style \\"%s\\"\\n\\n", \
297   $$0, $$0, $$0, $$0, $$0) }' > $TARGET && \
298      grep 'color_map\[[a-zA-Z_][a-zA-Z]*\]' $SOURCES | \
299  sed 's/.*\[\([a-zA-Z_][a-zA-Z_]*\)].*/\\1/'| \
300  sort | uniq | \
301  awk '{ printf ("style \\"%s\\"\\n{\\n\
302   fg[NORMAL] =   { 0, 0, 0 }\\n\
303   fg[ACTIVE] =   { 0, 0, 0 }\\n\
304 }\\nwidget \\"*%s\\" style \\"%s\\"\\n \\n\\n", $$0, $$0, $$0) }' >> $TARGET ;
305 """
306 ))