Merged with trunk R776
[ardour.git] / SConstruct
1 # -*- python -*-
2
3 import os
4 import sys
5 import re
6 import shutil
7 import glob
8 import errno
9 import time
10 import platform
11 import string
12 from sets import Set
13 import SCons.Node.FS
14
15 SConsignFile()
16 EnsureSConsVersion(0, 96)
17
18 version = '2.0beta2'
19
20 subst_dict = { }
21
22 #
23 # Command-line options
24 #
25
26 opts = Options('scache.conf')
27 opts.AddOptions(
28   ('ARCH', 'Set architecture-specific compilation flags by hand (all flags as 1 argument)',''),
29     BoolOption('COREAUDIO', 'Compile with Apple\'s CoreAudio library', 0),
30     BoolOption('DEBUG', 'Set to build with debugging information and no optimizations', 0),
31     PathOption('DESTDIR', 'Set the intermediate install "prefix"', '/'),
32     EnumOption('DIST_TARGET', 'Build target for cross compiling packagers', 'auto', allowed_values=('auto', 'i386', 'i686', 'x86_64', 'powerpc', 'tiger', 'panther', 'none' ), ignorecase=2),
33     BoolOption('DMALLOC', 'Compile and link using the dmalloc library', 0),
34     BoolOption('EXTRA_WARN', 'Compile with -Wextra, -ansi, and -pedantic.  Might break compilation.  For pedants', 0),
35     BoolOption('FFT_ANALYSIS', 'Include FFT analysis window', 0),
36     BoolOption('FPU_OPTIMIZATION', 'Build runtime checked assembler code', 1),
37     BoolOption('LIBLO', 'Compile with support for liblo library', 1),
38     BoolOption('NLS', 'Set to turn on i18n support', 1),
39     PathOption('PREFIX', 'Set the install "prefix"', '/usr/local'),
40     BoolOption('SURFACES', 'Build support for control surfaces', 0),
41     BoolOption('SYSLIBS', 'USE AT YOUR OWN RISK: CANCELS ALL SUPPORT FROM ARDOUR AUTHORS: Use existing system versions of various libraries instead of internal ones', 0),
42     BoolOption('VERSIONED', 'Add version information to ardour/gtk executable name inside the build directory', 0),
43     BoolOption('VST', 'Compile with support for VST', 0)
44 )
45
46 #----------------------------------------------------------------------
47 # a handy helper that provides a way to merge compile/link information
48 # from multiple different "environments"
49 #----------------------------------------------------------------------
50 #
51 class LibraryInfo(Environment):
52     def __init__(self,*args,**kw):
53         Environment.__init__ (self,*args,**kw)
54     
55     def Merge (self,others):
56         for other in others:
57             self.Append (LIBS = other.get ('LIBS',[]))
58             self.Append (LIBPATH = other.get ('LIBPATH', []))
59             self.Append (CPPPATH = other.get('CPPPATH', []))
60             self.Append (LINKFLAGS = other.get('LINKFLAGS', []))
61         self.Replace(LIBPATH = list(Set(self.get('LIBPATH', []))))
62         self.Replace(CPPPATH = list(Set(self.get('CPPPATH',[]))))
63         #doing LINKFLAGS breaks -framework
64         #doing LIBS break link order dependency
65     
66     def ENV_update(self, src_ENV):
67         for k in src_ENV.keys():
68             if k in self['ENV'].keys() and k in [ 'PATH', 'LD_LIBRARY_PATH',
69                                                   'LIB', 'INCLUDE' ]:
70                 self['ENV'][k]=SCons.Util.AppendPath(self['ENV'][k], src_ENV[k])
71             else:
72                 self['ENV'][k]=src_ENV[k]
73
74 env = LibraryInfo (options = opts,
75                    CPPPATH = [ '.' ],
76                    VERSION = version,
77                    TARBALL='ardour-' + version + '.tar.bz2',
78                    DISTFILES = [ ],
79                    DISTTREE  = '#ardour-' + version,
80                    DISTCHECKDIR = '#ardour-' + version + '/check'
81                    )
82
83 env.ENV_update(os.environ)
84
85 #----------------------------------------------------------------------
86 # Builders
87 #----------------------------------------------------------------------
88
89 # Handy subst-in-file builder
90 #
91
92 def do_subst_in_file(targetfile, sourcefile, dict):
93     """Replace all instances of the keys of dict with their values.
94     For example, if dict is {'%VERSION%': '1.2345', '%BASE%': 'MyProg'},
95     then all instances of %VERSION% in the file will be replaced with 1.2345 etc.
96     """
97     try:
98         f = open(sourcefile, 'rb')
99         contents = f.read()
100         f.close()
101     except:
102         raise SCons.Errors.UserError, "Can't read source file %s"%sourcefile
103     for (k,v) in dict.items():
104         contents = re.sub(k, v, contents)
105     try:
106         f = open(targetfile, 'wb')
107         f.write(contents)
108         f.close()
109     except:
110         raise SCons.Errors.UserError, "Can't write target file %s"%targetfile
111     return 0 # success
112
113 def subst_in_file(target, source, env):
114     if not env.has_key('SUBST_DICT'):
115         raise SCons.Errors.UserError, "SubstInFile requires SUBST_DICT to be set."
116     d = dict(env['SUBST_DICT']) # copy it
117     for (k,v) in d.items():
118         if callable(v):
119             d[k] = env.subst(v())
120         elif SCons.Util.is_String(v):
121             d[k]=env.subst(v)
122         else:
123             raise SCons.Errors.UserError, "SubstInFile: key %s: %s must be a string or callable"%(k, repr(v))
124     for (t,s) in zip(target, source):
125         return do_subst_in_file(str(t), str(s), d)
126
127 def subst_in_file_string(target, source, env):
128     """This is what gets printed on the console."""
129     return '\n'.join(['Substituting vars from %s into %s'%(str(s), str(t))
130                       for (t,s) in zip(target, source)])
131
132 def subst_emitter(target, source, env):
133     """Add dependency from substituted SUBST_DICT to target.
134     Returns original target, source tuple unchanged.
135     """
136     d = env['SUBST_DICT'].copy() # copy it
137     for (k,v) in d.items():
138         if callable(v):
139             d[k] = env.subst(v())
140         elif SCons.Util.is_String(v):
141             d[k]=env.subst(v)
142     Depends(target, SCons.Node.Python.Value(d))
143     # Depends(target, source) # this doesn't help the install-sapphire-linux.sh problem
144     return target, source
145
146 subst_action = Action (subst_in_file, subst_in_file_string)
147 env['BUILDERS']['SubstInFile'] = Builder(action=subst_action, emitter=subst_emitter)
148
149 #
150 # internationalization
151 #
152
153 # po_builder: builder function to copy po files to the parent directory while updating them
154 #
155 # first source:  .po file
156 # second source: .pot file
157 #
158
159 def po_builder(target,source,env):
160     os.spawnvp (os.P_WAIT, 'cp', ['cp', str(source[0]), str(target[0])])
161     args = [ 'msgmerge',
162              '--update',
163              str(target[0]),
164              str(source[1])
165              ]
166     print 'Updating ' + str(target[0])
167     return os.spawnvp (os.P_WAIT, 'msgmerge', args)
168
169 po_bld = Builder (action = po_builder)
170 env.Append(BUILDERS = {'PoBuild' : po_bld})
171
172 # mo_builder: builder function for (binary) message catalogs (.mo)
173 #
174 # first source:  .po file
175 #
176
177 def mo_builder(target,source,env):
178     args = [ 'msgfmt',
179              '-c',
180              '-o',
181              target[0].get_path(),
182              source[0].get_path()
183              ]
184     return os.spawnvp (os.P_WAIT, 'msgfmt', args)
185
186 mo_bld = Builder (action = mo_builder)
187 env.Append(BUILDERS = {'MoBuild' : mo_bld})
188
189 # pot_builder: builder function for message templates (.pot)
190 #
191 # source: list of C/C++ etc. files to extract messages from
192 #
193
194 def pot_builder(target,source,env):
195     args = [ 'xgettext',
196              '--keyword=_',
197              '--keyword=N_',
198              '--from-code=UTF-8',
199              '-o', target[0].get_path(),
200              "--default-domain=" + env['PACKAGE'],
201              '--copyright-holder="Paul Davis"' ]
202     args += [ src.get_path() for src in source ]
203     
204     return os.spawnvp (os.P_WAIT, 'xgettext', args)
205
206 pot_bld = Builder (action = pot_builder)
207 env.Append(BUILDERS = {'PotBuild' : pot_bld})
208
209 #
210 # utility function, not a builder
211 #
212
213 def i18n (buildenv, sources, installenv):
214     domain = buildenv['PACKAGE']
215     potfile = buildenv['POTFILE']
216     
217     installenv.Alias ('potupdate', buildenv.PotBuild (potfile, sources))
218     
219     p_oze = [ os.path.basename (po) for po in glob.glob ('po/*.po') ]
220     languages = [ po.replace ('.po', '') for po in p_oze ]
221     
222     for po_file in p_oze:
223         buildenv.PoBuild(po_file, ['po/'+po_file, potfile])
224         mo_file = po_file.replace (".po", ".mo")
225         installenv.Alias ('install', buildenv.MoBuild (mo_file, po_file))
226     
227     for lang in languages:
228         modir = (os.path.join (install_prefix, 'share/locale/' + lang + '/LC_MESSAGES/'))
229         moname = domain + '.mo'
230         installenv.Alias('install', installenv.InstallAs (os.path.join (modir, moname), lang + '.mo'))
231
232 #
233 # A generic builder for version.cc files
234 #
235 # note: requires that DOMAIN, MAJOR, MINOR, MICRO are set in the construction environment
236 # note: assumes one source files, the header that declares the version variables
237 #
238 def version_builder (target, source, env):
239    text  = "int " + env['DOMAIN'] + "_major_version = " + str (env['MAJOR']) + ";\n"
240    text += "int " + env['DOMAIN'] + "_minor_version = " + str (env['MINOR']) + ";\n"
241    text += "int " + env['DOMAIN'] + "_micro_version = " + str (env['MICRO']) + ";\n"
242    
243    try:
244       o = file (target[0].get_path(), 'w')
245       o.write (text)
246       o.close ()
247    except IOError:
248       print "Could not open", target[0].get_path(), " for writing\n"
249       sys.exit (-1)
250    
251    text  = "#ifndef __" + env['DOMAIN'] + "_version_h__\n"
252    text += "#define __" + env['DOMAIN'] + "_version_h__\n"
253    text += "extern int " + env['DOMAIN'] + "_major_version;\n"
254    text += "extern int " + env['DOMAIN'] + "_minor_version;\n"
255    text += "extern int " + env['DOMAIN'] + "_micro_version;\n"
256    text += "#endif /* __" + env['DOMAIN'] + "_version_h__ */\n"
257    
258    try:
259       o = file (target[1].get_path(), 'w')
260       o.write (text)
261       o.close ();
262    except IOError:
263       print "Could not open", target[1].get_path(), " for writing\n"
264       sys.exit (-1)
265    
266    return None
267
268 version_bld = Builder (action = version_builder)
269 env.Append (BUILDERS = {'VersionBuild' : version_bld})
270
271 #
272 # a builder that makes a hard link from the 'source' executable to a name with
273 # a "build ID" based on the most recent CVS activity that might be reasonably
274 # related to version activity. this relies on the idea that the SConscript
275 # file that builds the executable is updated with new version info and committed
276 # to the source code repository whenever things change.
277 #
278
279 def versioned_builder(target,source,env):
280     # build ID is composed of a representation of the date of the last CVS transaction
281     # for this (SConscript) file
282     
283     try:
284         o = file (source[0].get_dir().get_path() +  '/CVS/Entries', "r")
285     except IOError:
286         print "Could not CVS/Entries for reading"
287         return -1
288     
289     last_date = ""
290     lines = o.readlines()
291     for line in lines:
292         if line[0:12] == '/SConscript/':
293             parts = line.split ("/")
294             last_date = parts[3]
295             break
296     o.close ()
297     
298     if last_date == "":
299         print "No SConscript CVS update info found - versioned executable cannot be built"
300         return -1
301     
302     tag = time.strftime ('%Y%M%d%H%m', time.strptime (last_date))
303     print "The current build ID is " + tag
304     
305     tagged_executable = source[0].get_path() + '-' + tag
306     
307     if os.path.exists (tagged_executable):
308         print "Replacing existing executable with the same build tag."
309         os.unlink (tagged_executable)
310     
311     return os.link (source[0].get_path(), tagged_executable)
312
313 verbuild = Builder (action = versioned_builder)
314 env.Append (BUILDERS = {'VersionedExecutable' : verbuild})
315
316 #
317 # source tar file builder
318 #
319
320 def distcopy (target, source, env):
321     treedir = str (target[0])
322     
323     try:
324         os.mkdir (treedir)
325     except OSError, (errnum, strerror):
326         if errnum != errno.EEXIST:
327             print 'mkdir ', treedir, ':', strerror
328     
329     cmd = 'tar cf - '
330     #
331     # we don't know what characters might be in the file names
332     # so quote them all before passing them to the shell
333     #
334     all_files = ([ str(s) for s in source ])
335     cmd += " ".join ([ "'%s'" % quoted for quoted in all_files])
336     cmd += ' | (cd ' + treedir + ' && tar xf -)'
337     p = os.popen (cmd)
338     return p.close ()
339
340 def tarballer (target, source, env):
341     cmd = 'tar -jcf ' + str (target[0]) +  ' ' + str(source[0]) + "  --exclude '*~'"
342     print 'running ', cmd, ' ... '
343     p = os.popen (cmd)
344     return p.close ()
345
346 dist_bld = Builder (action = distcopy,
347                     target_factory = SCons.Node.FS.default_fs.Entry,
348                     source_factory = SCons.Node.FS.default_fs.Entry,
349                     multi = 1)
350
351 tarball_bld = Builder (action = tarballer,
352                        target_factory = SCons.Node.FS.default_fs.Entry,
353                        source_factory = SCons.Node.FS.default_fs.Entry)
354
355 env.Append (BUILDERS = {'Distribute' : dist_bld})
356 env.Append (BUILDERS = {'Tarball' : tarball_bld})
357
358 #
359 # Make sure they know what they are doing
360 #
361
362 if env['VST']:
363     sys.stdout.write ("Are you building Ardour for personal use (rather than distributiont to others)? [no]: ")
364     answer = sys.stdin.readline ()
365     answer = answer.rstrip().strip()
366     if answer != "yes" and answer != "y":
367         print 'You cannot build Ardour with VST support for distribution to others.\nIt is a violation of several different licenses. VST support disabled.'
368         env['VST'] = 0;
369     else:
370         print "OK, VST support will be enabled"
371
372
373 # ----------------------------------------------------------------------
374 # Construction environment setup
375 # ----------------------------------------------------------------------
376
377 libraries = { }
378
379 libraries['core'] = LibraryInfo (CCFLAGS = '-Ilibs')
380
381 #libraries['sndfile'] = LibraryInfo()
382 #libraries['sndfile'].ParseConfig('pkg-config --cflags --libs sndfile')
383
384 libraries['lrdf'] = LibraryInfo()
385 libraries['lrdf'].ParseConfig('pkg-config --cflags --libs lrdf')
386
387 libraries['raptor'] = LibraryInfo()
388 libraries['raptor'].ParseConfig('pkg-config --cflags --libs raptor')
389
390 libraries['samplerate'] = LibraryInfo()
391 libraries['samplerate'].ParseConfig('pkg-config --cflags --libs samplerate')
392
393 if env['FFT_ANALYSIS']:
394         libraries['fftw3f'] = LibraryInfo()
395         libraries['fftw3f'].ParseConfig('pkg-config --cflags --libs fftw3f')
396
397 libraries['jack'] = LibraryInfo()
398 libraries['jack'].ParseConfig('pkg-config --cflags --libs jack')
399
400 libraries['xml'] = LibraryInfo()
401 libraries['xml'].ParseConfig('pkg-config --cflags --libs libxml-2.0')
402
403 libraries['xslt'] = LibraryInfo()
404 libraries['xslt'].ParseConfig('pkg-config --cflags --libs libxslt')
405
406 libraries['glib2'] = LibraryInfo()
407 libraries['glib2'].ParseConfig ('pkg-config --cflags --libs glib-2.0')
408 libraries['glib2'].ParseConfig ('pkg-config --cflags --libs gobject-2.0')
409 libraries['glib2'].ParseConfig ('pkg-config --cflags --libs gmodule-2.0')
410 libraries['glib2'].ParseConfig ('pkg-config --cflags --libs gthread-2.0')
411
412 libraries['gtk2'] = LibraryInfo()
413 libraries['gtk2'].ParseConfig ('pkg-config --cflags --libs gtk+-2.0')
414
415 libraries['pango'] = LibraryInfo()
416 libraries['pango'].ParseConfig ('pkg-config --cflags --libs pango')
417
418 libraries['libgnomecanvas2'] = LibraryInfo()
419 libraries['libgnomecanvas2'].ParseConfig ('pkg-config --cflags --libs libgnomecanvas-2.0')
420
421 #libraries['flowcanvas'] = LibraryInfo(LIBS='flowcanvas', LIBPATH='#/libs/flowcanvas', CPPPATH='#libs/flowcanvas')
422
423 # The Ardour Control Protocol Library
424
425 libraries['ardour_cp'] = LibraryInfo (LIBS='ardour_cp', LIBPATH='#libs/surfaces/control_protocol',
426                                       CPPPATH='#libs/surfaces/control_protocol')
427
428 # The Ardour backend/engine
429
430 libraries['ardour'] = LibraryInfo (LIBS='ardour', LIBPATH='#libs/ardour', CPPPATH='#libs/ardour')
431 libraries['midi++2'] = LibraryInfo (LIBS='midi++', LIBPATH='#libs/midi++2', CPPPATH='#libs/midi++2')
432 libraries['pbd']    = LibraryInfo (LIBS='pbd', LIBPATH='#libs/pbd', CPPPATH='#libs/pbd')
433 libraries['gtkmm2ext'] = LibraryInfo (LIBS='gtkmm2ext', LIBPATH='#libs/gtkmm2ext', CPPPATH='#libs/gtkmm2ext')
434
435 #
436 # Check for libusb
437
438 libraries['usb'] = LibraryInfo ()
439
440 conf = Configure (libraries['usb'])
441 if conf.CheckLib ('usb', 'usb_interrupt_write'):
442     have_libusb = True
443 else:
444     have_libusb = False
445
446 libraries['usb'] = conf.Finish ()
447
448 #
449 # Check for FLAC
450
451 libraries['flac'] = LibraryInfo ()
452
453 conf = Configure (libraries['flac'])
454 conf.CheckLib ('FLAC', 'FLAC__stream_decoder_new', language='CXX')
455 libraries['flac'] = conf.Finish ()
456
457 # or if that fails...
458 #libraries['flac']    = LibraryInfo (LIBS='FLAC')
459
460 #
461 # Check for liblo
462
463 if env['LIBLO']:
464     libraries['lo'] = LibraryInfo ()
465     
466     conf = Configure (libraries['lo'])
467     if conf.CheckLib ('lo', 'lo_server_new') == False:
468         print "liblo does not appear to be installed."
469         sys.exit (1)
470     
471     libraries['lo'] = conf.Finish ()
472
473 #
474 # Check for dmalloc
475
476 libraries['dmalloc'] = LibraryInfo ()
477
478 #
479 # look for the threaded version
480 #
481
482 conf = Configure (libraries['dmalloc'])
483 if conf.CheckLib ('dmallocth', 'dmalloc_shutdown'):
484     have_libdmalloc = True
485 else:
486     have_libdmalloc = False
487
488 libraries['dmalloc'] = conf.Finish ()
489
490 #
491
492 #
493 # Audio/MIDI library (needed for MIDI, since audio is all handled via JACK)
494 #
495
496 conf = Configure(env)
497 if conf.CheckCHeader('jack/midiport.h'):
498     libraries['sysmidi'] = LibraryInfo (LIBS='jack')
499     env['SYSMIDI'] = 'JACK MIDI'
500     subst_dict['%MIDITAG%'] = "control"
501     subst_dict['%MIDITYPE%'] = "jack"
502     print "Using JACK MIDI"
503 elif conf.CheckCHeader('alsa/asoundlib.h'):
504     libraries['sysmidi'] = LibraryInfo (LIBS='asound')
505     env['SYSMIDI'] = 'ALSA Sequencer'
506     subst_dict['%MIDITAG%'] = "seq"
507     subst_dict['%MIDITYPE%'] = "alsa/sequencer"
508     print "Using ALSA MIDI"
509 elif conf.CheckCHeader('/System/Library/Frameworks/CoreMIDI.framework/Headers/CoreMIDI.h'):
510     # this line is needed because scons can't handle -framework in ParseConfig() yet.
511     libraries['sysmidi'] = LibraryInfo (LINKFLAGS= '-framework CoreMIDI -framework CoreFoundation -framework CoreAudio -framework CoreServices -framework AudioUnit -framework AudioToolbox -bind_at_load')
512     env['SYSMIDI'] = 'CoreMIDI'
513     subst_dict['%MIDITAG%'] = "ardour"
514     subst_dict['%MIDITYPE%'] = "coremidi"
515     print "Using CoreMIDI"
516 else:
517     print "It appears you don't have the required MIDI libraries installed."
518     sys.exit (1)
519
520 env = conf.Finish()
521
522 if env['SYSLIBS']:
523     
524     libraries['sigc2'] = LibraryInfo()
525     libraries['sigc2'].ParseConfig('pkg-config --cflags --libs sigc++-2.0')
526     libraries['glibmm2'] = LibraryInfo()
527     libraries['glibmm2'].ParseConfig('pkg-config --cflags --libs glibmm-2.4')
528     libraries['gdkmm2'] = LibraryInfo()
529     libraries['gdkmm2'].ParseConfig ('pkg-config --cflags --libs gdkmm-2.4')
530     libraries['gtkmm2'] = LibraryInfo()
531     libraries['gtkmm2'].ParseConfig ('pkg-config --cflags --libs gtkmm-2.4')
532     libraries['atkmm'] = LibraryInfo()
533     libraries['atkmm'].ParseConfig ('pkg-config --cflags --libs atkmm-1.6')
534     libraries['pangomm'] = LibraryInfo()
535     libraries['pangomm'].ParseConfig ('pkg-config --cflags --libs pangomm-1.4')
536     libraries['libgnomecanvasmm'] = LibraryInfo()
537     libraries['libgnomecanvasmm'].ParseConfig ('pkg-config --cflags --libs libgnomecanvasmm-2.6')
538
539 #
540 # cannot use system one for the time being
541 #
542     
543     libraries['sndfile'] = LibraryInfo(LIBS='libsndfile',
544                                     LIBPATH='#libs/libsndfile',
545                                     CPPPATH=['#libs/libsndfile', '#libs/libsndfile/src'])
546
547 #    libraries['libglademm'] = LibraryInfo()
548 #    libraries['libglademm'].ParseConfig ('pkg-config --cflags --libs libglademm-2.4')
549
550 #    libraries['flowcanvas'] = LibraryInfo(LIBS='flowcanvas', LIBPATH='#/libs/flowcanvas', CPPPATH='#libs/flowcanvas')
551     libraries['soundtouch'] = LibraryInfo()
552     libraries['soundtouch'].ParseConfig ('pkg-config --cflags --libs libSoundTouch')
553
554     libraries['appleutility'] = LibraryInfo(LIBS='libappleutility',
555                                             LIBPATH='#libs/appleutility',
556                                             CPPPATH='#libs/appleutility')
557     
558     coredirs = [
559         'templates'
560     ]
561     
562     subdirs = [
563         'libs/libsndfile',
564         'libs/pbd',
565         'libs/midi++2',
566         'libs/ardour'
567         ]
568     
569     if env['VST']:
570         subdirs = ['libs/fst'] + subdirs + ['vst']
571
572     if env['COREAUDIO']:
573         subdirs = subdirs + ['libs/appleutility']
574     
575     gtk_subdirs = [
576 #        'libs/flowcanvas',
577         'libs/gtkmm2ext',
578         'gtk2_ardour'
579         ]
580
581 else:
582     libraries['sigc2'] = LibraryInfo(LIBS='sigc++2',
583                                     LIBPATH='#libs/sigc++2',
584                                     CPPPATH='#libs/sigc++2')
585     libraries['glibmm2'] = LibraryInfo(LIBS='glibmm2',
586                                     LIBPATH='#libs/glibmm2',
587                                     CPPPATH='#libs/glibmm2')
588     libraries['pangomm'] = LibraryInfo(LIBS='pangomm',
589                                     LIBPATH='#libs/gtkmm2/pango',
590                                     CPPPATH='#libs/gtkmm2/pango')
591     libraries['atkmm'] = LibraryInfo(LIBS='atkmm',
592                                      LIBPATH='#libs/gtkmm2/atk',
593                                      CPPPATH='#libs/gtkmm2/atk')
594     libraries['gdkmm2'] = LibraryInfo(LIBS='gdkmm2',
595                                       LIBPATH='#libs/gtkmm2/gdk',
596                                       CPPPATH='#libs/gtkmm2/gdk')
597     libraries['gtkmm2'] = LibraryInfo(LIBS='gtkmm2',
598                                      LIBPATH="#libs/gtkmm2/gtk",
599                                      CPPPATH='#libs/gtkmm2/gtk/')
600     libraries['libgnomecanvasmm'] = LibraryInfo(LIBS='libgnomecanvasmm',
601                                                 LIBPATH='#libs/libgnomecanvasmm',
602                                                 CPPPATH='#libs/libgnomecanvasmm')
603     
604     libraries['soundtouch'] = LibraryInfo(LIBS='soundtouch',
605                                           LIBPATH='#libs/soundtouch',
606                                           CPPPATH=['#libs', '#libs/soundtouch'])
607     libraries['sndfile'] = LibraryInfo(LIBS='libsndfile',
608                                     LIBPATH='#libs/libsndfile',
609                                     CPPPATH=['#libs/libsndfile', '#libs/libsndfile/src'])
610 #    libraries['libglademm'] = LibraryInfo(LIBS='libglademm',
611 #                                          LIBPATH='#libs/libglademm',
612 #                                          CPPPATH='#libs/libglademm')
613     libraries['appleutility'] = LibraryInfo(LIBS='libappleutility',
614                                             LIBPATH='#libs/appleutility',
615                                             CPPPATH='#libs/appleutility')
616
617     coredirs = [
618         'libs/soundtouch',
619         'templates'
620     ]
621     
622     subdirs = [
623         'libs/sigc++2',
624         'libs/libsndfile',
625         'libs/pbd',
626         'libs/midi++2',
627         'libs/ardour'
628         ]
629     
630     if env['VST']:
631         subdirs = ['libs/fst'] + subdirs + ['vst']
632
633     if env['COREAUDIO']:
634         subdirs = subdirs + ['libs/appleutility']
635     
636     gtk_subdirs = [
637         'libs/glibmm2',
638         'libs/gtkmm2/pango',
639         'libs/gtkmm2/atk',
640         'libs/gtkmm2/gdk',
641         'libs/gtkmm2/gtk',
642         'libs/libgnomecanvasmm',
643 #       'libs/flowcanvas',
644     'libs/gtkmm2ext',
645     'gtk2_ardour'
646         ]
647
648 #
649 # always build the LGPL control protocol lib, since we link against it ourselves
650 # ditto for generic MIDI
651 #
652
653 surface_subdirs = [ 'libs/surfaces/control_protocol', 'libs/surfaces/generic_midi' ]
654
655 if env['SURFACES']:
656     if have_libusb:
657         surface_subdirs += [ 'libs/surfaces/tranzport' ]
658     if os.access ('libs/surfaces/sony9pin', os.F_OK):
659         surface_subdirs += [ 'libs/surfaces/sony9pin' ]
660
661 opts.Save('scache.conf', env)
662 Help(opts.GenerateHelpText(env))
663
664 if os.environ.has_key('PATH'):
665     env.Append(PATH = os.environ['PATH'])
666
667 if os.environ.has_key('PKG_CONFIG_PATH'):
668     env.Append(PKG_CONFIG_PATH = os.environ['PKG_CONFIG_PATH'])
669
670 if os.environ.has_key('CC'):
671     env['CC'] = os.environ['CC']
672
673 if os.environ.has_key('CXX'):
674     env['CXX'] = os.environ['CXX']
675
676 if os.environ.has_key('DISTCC_HOSTS'):
677     env['ENV']['DISTCC_HOSTS'] = os.environ['DISTCC_HOSTS']
678     env['ENV']['HOME'] = os.environ['HOME']
679
680 final_prefix = '$PREFIX'
681 install_prefix = '$DESTDIR/$PREFIX'
682
683 subst_dict['INSTALL_PREFIX'] = install_prefix;
684
685 if env['PREFIX'] == '/usr':
686     final_config_prefix = '/etc'
687 else:
688     final_config_prefix = env['PREFIX'] + '/etc'
689
690 config_prefix = '$DESTDIR' + final_config_prefix
691
692 # For colorgcc ( so says the wiki, but it's still not working :/  anyone? )
693 if os.environ.has_key('PATH'):
694         env['PATH'] = os.environ['PATH']
695 if os.environ.has_key('TERM'):
696         env['TERM'] = os.environ['TERM']
697 if os.environ.has_key('HOME'):
698         env['HOME'] = os.environ['HOME']
699
700
701 # SCons should really do this for us
702
703 conf = Configure (env)
704
705 have_cxx = conf.TryAction (Action (env['CXX'] + ' --version'))
706 if have_cxx[0] != 1:
707     print "This system has no functional C++ compiler. You cannot build Ardour from source without one."
708     exit (1)
709 else:
710     print "Congratulations, you have a functioning C++ compiler."
711
712 env = conf.Finish()
713
714 #
715 # Compiler flags and other system-dependent stuff
716 #
717
718 opt_flags = []
719 debug_flags = [ '-g' ]
720
721 # guess at the platform, used to define compiler flags
722
723 config_guess = os.popen("tools/config.guess").read()[:-1]
724
725 config_cpu = 0
726 config_arch = 1
727 config_kernel = 2
728 config_os = 3
729 config = config_guess.split ("-")
730
731 print "system triple: " + config_guess
732
733 # Autodetect
734 if env['DIST_TARGET'] == 'auto':
735     if config[config_arch] == 'apple':
736         # The [.] matches to the dot after the major version, "." would match any character
737         if re.search ("darwin[0-7][.]", config[config_kernel]) != None:
738             env['DIST_TARGET'] = 'panther'
739         else:
740             env['DIST_TARGET'] = 'tiger'
741     else:
742         if re.search ("x86_64", config[config_cpu]) != None:
743             env['DIST_TARGET'] = 'x86_64'
744         elif re.search("i[0-5]86", config[config_cpu]) != None:
745             env['DIST_TARGET'] = 'i386'
746         elif re.search("powerpc", config[config_cpu]) != None:
747             env['DIST_TARGET'] = 'powerpc'
748         else:
749             env['DIST_TARGET'] = 'i686'
750     print "\n*******************************"
751     print "detected DIST_TARGET = " + env['DIST_TARGET']
752     print "*******************************\n"
753
754
755 if config[config_cpu] == 'powerpc' and env['DIST_TARGET'] != 'none':
756     #
757     # Apple/PowerPC optimization options
758     #
759     # -mcpu=7450 does not reliably work with gcc 3.*
760     #
761     if env['DIST_TARGET'] == 'panther' or env['DIST_TARGET'] == 'tiger':
762         if config[config_arch] == 'apple':
763             opt_flags.extend ([ "-mcpu=7450", "-faltivec"])
764         else:
765             opt_flags.extend ([ "-mcpu=7400", "-maltivec", "-mabi=altivec"])
766     else:
767         opt_flags.extend([ "-mcpu=750", "-mmultiple" ])
768     opt_flags.extend (["-mhard-float", "-mpowerpc-gfxopt"])
769
770 elif ((re.search ("i[0-9]86", config[config_cpu]) != None) or (re.search ("x86_64", config[config_cpu]) != None)) and env['DIST_TARGET'] != 'none':
771     
772     build_host_supports_sse = 0
773     
774     debug_flags.append ("-DARCH_X86")
775     opt_flags.append ("-DARCH_X86")
776     
777     if config[config_kernel] == 'linux' :
778         
779         if env['DIST_TARGET'] != 'i386':
780             
781             flag_line = os.popen ("cat /proc/cpuinfo | grep '^flags'").read()[:-1]
782             x86_flags = flag_line.split (": ")[1:][0].split (' ')
783             
784             if "mmx" in x86_flags:
785                 opt_flags.append ("-mmmx")
786             if "sse" in x86_flags:
787                 build_host_supports_sse = 1
788             if "3dnow" in x86_flags:
789                 opt_flags.append ("-m3dnow")
790             
791             if config[config_cpu] == "i586":
792                 opt_flags.append ("-march=i586")
793             elif config[config_cpu] == "i686":
794                 opt_flags.append ("-march=i686")
795     
796     if ((env['DIST_TARGET'] == 'i686') or (env['DIST_TARGET'] == 'x86_64')) and build_host_supports_sse:
797         opt_flags.extend (["-msse", "-mfpmath=sse"])
798         debug_flags.extend (["-msse", "-mfpmath=sse"])
799 # end of processor-specific section
800
801 # optimization section
802 if env['FPU_OPTIMIZATION']:
803     if env['DIST_TARGET'] == 'tiger':
804         opt_flags.append ("-DBUILD_VECLIB_OPTIMIZATIONS")
805         debug_flags.append ("-DBUILD_VECLIB_OPTIMIZATIONS")
806         libraries['core'].Append(LINKFLAGS= '-framework Accelerate')
807     elif env['DIST_TARGET'] == 'i686' or env['DIST_TARGET'] == 'x86_64':
808         opt_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
809         debug_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
810         if env['DIST_TARGET'] == 'x86_64':
811             opt_flags.append ("-DUSE_X86_64_ASM")
812             debug_flags.append ("-DUSE_X86_64_ASM")
813         if build_host_supports_sse != 1:
814             print "\nWarning: you are building Ardour with SSE support even though your system does not support these instructions. (This may not be an error, especially if you are a package maintainer)"
815 # end optimization section
816
817 #
818 # save off guessed arch element in an env
819 #
820 env.Append(CONFIG_ARCH=config[config_arch])
821
822
823 #
824 # ARCH="..." overrides all
825 #
826
827 if env['ARCH'] != '':
828     opt_flags = env['ARCH'].split()
829
830 #
831 # prepend boiler plate optimization flags
832 #
833
834 opt_flags[:0] = [
835     "-O3",
836     "-fomit-frame-pointer",
837     "-ffast-math",
838     "-fstrength-reduce"
839     ]
840
841 if env['DEBUG'] == 1:
842     env.Append(CCFLAGS=" ".join (debug_flags))
843 else:
844     env.Append(CCFLAGS=" ".join (opt_flags))
845
846 #
847 # warnings flags
848 #
849
850 env.Append(CCFLAGS="-Wall")
851 env.Append(CXXFLAGS="-Woverloaded-virtual")
852
853 if env['EXTRA_WARN']:
854     env.Append(CCFLAGS="-Wextra -pedantic")
855     env.Append(CXXFLAGS="-ansi")
856
857 if env['LIBLO']:
858     env.Append(CCFLAGS="-DHAVE_LIBLO")
859
860 #
861 # everybody needs this
862 #
863
864 env.Merge ([ libraries['core'] ])
865
866 #
867 # fix scons nitpickiness on APPLE
868 #
869
870 if env['DIST_TARGET'] == 'panther' or env['DIST_TARGET'] == 'tiger':
871     env.Append(CCFLAGS="-I/opt/local/include", LINKFLAGS="-L/opt/local/lib")
872
873 #
874 # i18n support
875 #
876
877 conf = Configure (env)
878 if env['NLS']:
879     nls_error = 'This system is not configured for internationalized applications.  An english-only version will be built:'
880     print 'Checking for internationalization support ...'
881     have_gettext = conf.TryAction(Action('xgettext --version'))
882     if have_gettext[0] != 1:
883         nls_error += ' No xgettext command.'
884         env['NLS'] = 0
885     else:
886         print "Found xgettext"
887     
888     have_msgmerge = conf.TryAction(Action('msgmerge --version'))
889     if have_msgmerge[0] != 1:
890         nls_error += ' No msgmerge command.'
891         env['NLS'] = 0
892     else:
893         print "Found msgmerge"
894     
895     if not conf.CheckCHeader('libintl.h'):
896         nls_error += ' No libintl.h.'
897         env['NLS'] = 0
898         
899     if env['NLS'] == 0:
900         print nls_error
901     else:
902         print "International version will be built."
903 env = conf.Finish()
904
905 if env['NLS'] == 1:
906     env.Append(CCFLAGS="-DENABLE_NLS")
907
908 Export('env install_prefix final_prefix config_prefix final_config_prefix libraries i18n version subst_dict')
909
910 #
911 # the configuration file may be system dependent
912 #
913
914 conf = env.Configure ()
915
916 if conf.CheckCHeader('/System/Library/Frameworks/CoreAudio.framework/Versions/A/Headers/CoreAudio.h'):
917     subst_dict['%JACK_INPUT%'] = "coreaudio:Built-in Audio:in"
918     subst_dict['%JACK_OUTPUT%'] = "coreaudio:Built-in Audio:out"
919 else:
920     subst_dict['%JACK_INPUT%'] = "alsa_pcm:playback_"
921     subst_dict['%JACK_OUTPUT%'] = "alsa_pcm:capture_"
922
923 # posix_memalign available
924 if not conf.CheckFunc('posix_memalign'):
925     print 'Did not find posix_memalign(), using malloc'
926     env.Append(CCFLAGS='-DNO_POSIX_MEMALIGN')
927
928
929 env = conf.Finish()
930
931 rcbuild = env.SubstInFile ('ardour.rc','ardour.rc.in', SUBST_DICT = subst_dict)
932
933 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour_system.rc'))
934 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour.rc'))
935
936 Default (rcbuild)
937
938 # source tarball
939
940 Precious (env['DISTTREE'])
941
942 #
943 # note the special "cleanfirst" source name. this triggers removal
944 # of the existing disttree
945 #
946
947 env.Distribute (env['DISTTREE'],
948                 [ 'SConstruct',
949                   'COPYING', 'PACKAGER_README', 'README',
950                   'ardour.rc.in',
951                   'ardour_system.rc',
952                   'tools/config.guess'
953                   ] +
954                 glob.glob ('DOCUMENTATION/AUTHORS*') +
955                 glob.glob ('DOCUMENTATION/CONTRIBUTORS*') +
956                 glob.glob ('DOCUMENTATION/TRANSLATORS*') +
957                 glob.glob ('DOCUMENTATION/BUILD*') +
958                 glob.glob ('DOCUMENTATION/FAQ*') +
959                 glob.glob ('DOCUMENTATION/README*')
960                 )
961
962 srcdist = env.Tarball(env['TARBALL'], env['DISTTREE'])
963 env.Alias ('srctar', srcdist)
964 #
965 # don't leave the distree around
966 #
967 env.AddPreAction (env['DISTTREE'], Action ('rm -rf ' + str (File (env['DISTTREE']))))
968 env.AddPostAction (srcdist, Action ('rm -rf ' + str (File (env['DISTTREE']))))
969
970 #
971 # the subdirs
972 #
973
974 for subdir in coredirs:
975     SConscript (subdir + '/SConscript')
976
977 for sublistdir in [ subdirs, gtk_subdirs, surface_subdirs ]:
978     for subdir in sublistdir:
979         SConscript (subdir + '/SConscript')
980
981 # cleanup
982 env.Clean ('scrub', [ 'scache.conf', '.sconf_temp', '.sconsign.dblite', 'config.log'])
983