Start using libappleutility
[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 #
458 # Check for liblo
459
460 if env['LIBLO']:
461     libraries['lo'] = LibraryInfo ()
462     
463     conf = Configure (libraries['lo'])
464     if conf.CheckLib ('lo', 'lo_server_new') == False:
465         print "liblo does not appear to be installed."
466         sys.exit (1)
467     
468     libraries['lo'] = conf.Finish ()
469
470 #
471 # Check for dmalloc
472
473 libraries['dmalloc'] = LibraryInfo ()
474
475 #
476 # look for the threaded version
477 #
478
479 conf = Configure (libraries['dmalloc'])
480 if conf.CheckLib ('dmallocth', 'dmalloc_shutdown'):
481     have_libdmalloc = True
482 else:
483     have_libdmalloc = False
484
485 libraries['dmalloc'] = conf.Finish ()
486
487 #
488
489 #
490 # Audio/MIDI library (needed for MIDI, since audio is all handled via JACK)
491 #
492
493 conf = Configure(env)
494
495 if conf.CheckCHeader('alsa/asoundlib.h'):
496     libraries['sysmidi'] = LibraryInfo (LIBS='asound')
497     env['SYSMIDI'] = 'ALSA Sequencer'
498     subst_dict['%MIDITAG%'] = "seq"
499     subst_dict['%MIDITYPE%'] = "alsa/sequencer"
500 elif conf.CheckCHeader('/System/Library/Frameworks/CoreMIDI.framework/Headers/CoreMIDI.h'):
501     # this line is needed because scons can't handle -framework in ParseConfig() yet.
502     libraries['sysmidi'] = LibraryInfo (LINKFLAGS= '-framework CoreMIDI -framework CoreFoundation -framework CoreAudio -framework CoreServices -framework AudioUnit -framework AudioToolbox -bind_at_load')
503     env['SYSMIDI'] = 'CoreMIDI'
504     subst_dict['%MIDITAG%'] = "ardour"
505     subst_dict['%MIDITYPE%'] = "coremidi"
506 else:
507     print "It appears you don't have the required MIDI libraries installed."
508     sys.exit (1)
509
510 env = conf.Finish()
511
512 if env['SYSLIBS']:
513     
514     libraries['sigc2'] = LibraryInfo()
515     libraries['sigc2'].ParseConfig('pkg-config --cflags --libs sigc++-2.0')
516     libraries['glibmm2'] = LibraryInfo()
517     libraries['glibmm2'].ParseConfig('pkg-config --cflags --libs glibmm-2.4')
518     libraries['gdkmm2'] = LibraryInfo()
519     libraries['gdkmm2'].ParseConfig ('pkg-config --cflags --libs gdkmm-2.4')
520     libraries['gtkmm2'] = LibraryInfo()
521     libraries['gtkmm2'].ParseConfig ('pkg-config --cflags --libs gtkmm-2.4')
522     libraries['atkmm'] = LibraryInfo()
523     libraries['atkmm'].ParseConfig ('pkg-config --cflags --libs atkmm-1.6')
524     libraries['pangomm'] = LibraryInfo()
525     libraries['pangomm'].ParseConfig ('pkg-config --cflags --libs pangomm-1.4')
526     libraries['libgnomecanvasmm'] = LibraryInfo()
527     libraries['libgnomecanvasmm'].ParseConfig ('pkg-config --cflags --libs libgnomecanvasmm-2.6')
528
529 #
530 # cannot use system one for the time being
531 #
532     
533     libraries['sndfile'] = LibraryInfo(LIBS='libsndfile',
534                                     LIBPATH='#libs/libsndfile',
535                                     CPPPATH=['#libs/libsndfile', '#libs/libsndfile/src'])
536
537 #    libraries['libglademm'] = LibraryInfo()
538 #    libraries['libglademm'].ParseConfig ('pkg-config --cflags --libs libglademm-2.4')
539
540 #    libraries['flowcanvas'] = LibraryInfo(LIBS='flowcanvas', LIBPATH='#/libs/flowcanvas', CPPPATH='#libs/flowcanvas')
541     libraries['soundtouch'] = LibraryInfo()
542     libraries['soundtouch'].ParseConfig ('pkg-config --cflags --libs libSoundTouch')
543
544     libraries['appleutility'] = LibraryInfo(LIBS='libappleutility',
545                                             LIBPATH='#libs/appleutility',
546                                             CPPPATH='#libs/appleutility')
547     
548     coredirs = [
549         'templates'
550     ]
551     
552     subdirs = [
553         'libs/libsndfile',
554         'libs/pbd',
555         'libs/midi++2',
556         'libs/ardour'
557         ]
558     
559     if env['VST']:
560         subdirs = ['libs/fst'] + subdirs + ['vst']
561
562     if env['COREAUDIO']:
563         subdirs = subdirs + ['libs/appleutility']
564     
565     gtk_subdirs = [
566 #        'libs/flowcanvas',
567         'libs/gtkmm2ext',
568         'gtk2_ardour'
569         ]
570
571 else:
572     libraries['sigc2'] = LibraryInfo(LIBS='sigc++2',
573                                     LIBPATH='#libs/sigc++2',
574                                     CPPPATH='#libs/sigc++2')
575     libraries['glibmm2'] = LibraryInfo(LIBS='glibmm2',
576                                     LIBPATH='#libs/glibmm2',
577                                     CPPPATH='#libs/glibmm2')
578     libraries['pangomm'] = LibraryInfo(LIBS='pangomm',
579                                     LIBPATH='#libs/gtkmm2/pango',
580                                     CPPPATH='#libs/gtkmm2/pango')
581     libraries['atkmm'] = LibraryInfo(LIBS='atkmm',
582                                      LIBPATH='#libs/gtkmm2/atk',
583                                      CPPPATH='#libs/gtkmm2/atk')
584     libraries['gdkmm2'] = LibraryInfo(LIBS='gdkmm2',
585                                       LIBPATH='#libs/gtkmm2/gdk',
586                                       CPPPATH='#libs/gtkmm2/gdk')
587     libraries['gtkmm2'] = LibraryInfo(LIBS='gtkmm2',
588                                      LIBPATH="#libs/gtkmm2/gtk",
589                                      CPPPATH='#libs/gtkmm2/gtk/')
590     libraries['libgnomecanvasmm'] = LibraryInfo(LIBS='libgnomecanvasmm',
591                                                 LIBPATH='#libs/libgnomecanvasmm',
592                                                 CPPPATH='#libs/libgnomecanvasmm')
593     
594     libraries['soundtouch'] = LibraryInfo(LIBS='soundtouch',
595                                           LIBPATH='#libs/soundtouch',
596                                           CPPPATH=['#libs', '#libs/soundtouch'])
597     libraries['sndfile'] = LibraryInfo(LIBS='libsndfile',
598                                     LIBPATH='#libs/libsndfile',
599                                     CPPPATH=['#libs/libsndfile', '#libs/libsndfile/src'])
600 #    libraries['libglademm'] = LibraryInfo(LIBS='libglademm',
601 #                                          LIBPATH='#libs/libglademm',
602 #                                          CPPPATH='#libs/libglademm')
603     libraries['appleutility'] = LibraryInfo(LIBS='libappleutility',
604                                             LIBPATH='#libs/appleutility',
605                                             CPPPATH='#libs/appleutility')
606
607     coredirs = [
608         'libs/soundtouch',
609         'templates'
610     ]
611     
612     subdirs = [
613         'libs/sigc++2',
614         'libs/libsndfile',
615         'libs/pbd',
616         'libs/midi++2',
617         'libs/ardour'
618         ]
619     
620     if env['VST']:
621         subdirs = ['libs/fst'] + subdirs + ['vst']
622
623     if env['COREAUDIO']:
624         subdirs = subdirs + ['libs/appleutility']
625     
626     gtk_subdirs = [
627         'libs/glibmm2',
628         'libs/gtkmm2/pango',
629         'libs/gtkmm2/atk',
630         'libs/gtkmm2/gdk',
631         'libs/gtkmm2/gtk',
632         'libs/libgnomecanvasmm',
633 #       'libs/flowcanvas',
634     'libs/gtkmm2ext',
635     'gtk2_ardour'
636         ]
637
638 #
639 # always build the LGPL control protocol lib, since we link against it ourselves
640 # ditto for generic MIDI
641 #
642
643 surface_subdirs = [ 'libs/surfaces/control_protocol', 'libs/surfaces/generic_midi' ]
644
645 if env['SURFACES']:
646     if have_libusb:
647         surface_subdirs += [ 'libs/surfaces/tranzport' ]
648     if os.access ('libs/surfaces/sony9pin', os.F_OK):
649         surface_subdirs += [ 'libs/surfaces/sony9pin' ]
650
651 opts.Save('scache.conf', env)
652 Help(opts.GenerateHelpText(env))
653
654 if os.environ.has_key('PATH'):
655     env.Append(PATH = os.environ['PATH'])
656
657 if os.environ.has_key('PKG_CONFIG_PATH'):
658     env.Append(PKG_CONFIG_PATH = os.environ['PKG_CONFIG_PATH'])
659
660 if os.environ.has_key('CC'):
661     env['CC'] = os.environ['CC']
662
663 if os.environ.has_key('CXX'):
664     env['CXX'] = os.environ['CXX']
665
666 if os.environ.has_key('DISTCC_HOSTS'):
667     env['ENV']['DISTCC_HOSTS'] = os.environ['DISTCC_HOSTS']
668     env['ENV']['HOME'] = os.environ['HOME']
669
670 final_prefix = '$PREFIX'
671 install_prefix = '$DESTDIR/$PREFIX'
672
673 subst_dict['INSTALL_PREFIX'] = install_prefix;
674
675 if env['PREFIX'] == '/usr':
676     final_config_prefix = '/etc'
677 else:
678     final_config_prefix = env['PREFIX'] + '/etc'
679
680 config_prefix = '$DESTDIR' + final_config_prefix
681
682
683 # SCons should really do this for us
684
685 conf = Configure (env)
686
687 have_cxx = conf.TryAction (Action (env['CXX'] + ' --version'))
688 if have_cxx[0] != 1:
689     print "This system has no functional C++ compiler. You cannot build Ardour from source without one."
690     exit (1)
691 else:
692     print "Congratulations, you have a functioning C++ compiler."
693
694 env = conf.Finish()
695
696 #
697 # Compiler flags and other system-dependent stuff
698 #
699
700 opt_flags = []
701 debug_flags = [ '-g' ]
702
703 # guess at the platform, used to define compiler flags
704
705 config_guess = os.popen("tools/config.guess").read()[:-1]
706
707 config_cpu = 0
708 config_arch = 1
709 config_kernel = 2
710 config_os = 3
711 config = config_guess.split ("-")
712
713 print "system triple: " + config_guess
714
715 # Autodetect
716 if env['DIST_TARGET'] == 'auto':
717     if config[config_arch] == 'apple':
718         # The [.] matches to the dot after the major version, "." would match any character
719         if re.search ("darwin[0-7][.]", config[config_kernel]) != None:
720             env['DIST_TARGET'] = 'panther'
721         else:
722             env['DIST_TARGET'] = 'tiger'
723     else:
724         if re.search ("x86_64", config[config_cpu]) != None:
725             env['DIST_TARGET'] = 'x86_64'
726         elif re.search("i[0-5]86", config[config_cpu]) != None:
727             env['DIST_TARGET'] = 'i386'
728         elif re.search("powerpc", config[config_cpu]) != None:
729             env['DIST_TARGET'] = 'powerpc'
730         else:
731             env['DIST_TARGET'] = 'i686'
732     print "\n*******************************"
733     print "detected DIST_TARGET = " + env['DIST_TARGET']
734     print "*******************************\n"
735
736
737 if config[config_cpu] == 'powerpc' and env['DIST_TARGET'] != 'none':
738     #
739     # Apple/PowerPC optimization options
740     #
741     # -mcpu=7450 does not reliably work with gcc 3.*
742     #
743     if env['DIST_TARGET'] == 'panther' or env['DIST_TARGET'] == 'tiger':
744         if config[config_arch] == 'apple':
745             opt_flags.extend ([ "-mcpu=7450", "-faltivec"])
746         else:
747             opt_flags.extend ([ "-mcpu=7400", "-maltivec", "-mabi=altivec"])
748     else:
749         opt_flags.extend([ "-mcpu=750", "-mmultiple" ])
750     opt_flags.extend (["-mhard-float", "-mpowerpc-gfxopt"])
751
752 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':
753     
754     build_host_supports_sse = 0
755     
756     debug_flags.append ("-DARCH_X86")
757     opt_flags.append ("-DARCH_X86")
758     
759     if config[config_kernel] == 'linux' :
760         
761         if env['DIST_TARGET'] != 'i386':
762             
763             flag_line = os.popen ("cat /proc/cpuinfo | grep '^flags'").read()[:-1]
764             x86_flags = flag_line.split (": ")[1:][0].split (' ')
765             
766             if "mmx" in x86_flags:
767                 opt_flags.append ("-mmmx")
768             if "sse" in x86_flags:
769                 build_host_supports_sse = 1
770             if "3dnow" in x86_flags:
771                 opt_flags.append ("-m3dnow")
772             
773             if config[config_cpu] == "i586":
774                 opt_flags.append ("-march=i586")
775             elif config[config_cpu] == "i686":
776                 opt_flags.append ("-march=i686")
777     
778     if ((env['DIST_TARGET'] == 'i686') or (env['DIST_TARGET'] == 'x86_64')) and build_host_supports_sse:
779         opt_flags.extend (["-msse", "-mfpmath=sse"])
780         debug_flags.extend (["-msse", "-mfpmath=sse"])
781 # end of processor-specific section
782
783 # optimization section
784 if env['FPU_OPTIMIZATION']:
785     if env['DIST_TARGET'] == 'tiger':
786         opt_flags.append ("-DBUILD_VECLIB_OPTIMIZATIONS")
787         debug_flags.append ("-DBUILD_VECLIB_OPTIMIZATIONS")
788         libraries['core'].Append(LINKFLAGS= '-framework Accelerate')
789     elif env['DIST_TARGET'] == 'i686' or env['DIST_TARGET'] == 'x86_64':
790         opt_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
791         debug_flags.append ("-DBUILD_SSE_OPTIMIZATIONS")
792         if env['DIST_TARGET'] == 'x86_64':
793             opt_flags.append ("-DUSE_X86_64_ASM")
794             debug_flags.append ("-DUSE_X86_64_ASM")
795         if build_host_supports_sse != 1:
796             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)"
797 # end optimization section
798
799 #
800 # save off guessed arch element in an env
801 #
802 env.Append(CONFIG_ARCH=config[config_arch])
803
804
805 #
806 # ARCH="..." overrides all
807 #
808
809 if env['ARCH'] != '':
810     opt_flags = env['ARCH'].split()
811
812 #
813 # prepend boiler plate optimization flags
814 #
815
816 opt_flags[:0] = [
817     "-O3",
818     "-fomit-frame-pointer",
819     "-ffast-math",
820     "-fstrength-reduce"
821     ]
822
823 if env['DEBUG'] == 1:
824     env.Append(CCFLAGS=" ".join (debug_flags))
825 else:
826     env.Append(CCFLAGS=" ".join (opt_flags))
827
828 #
829 # warnings flags
830 #
831
832 env.Append(CCFLAGS="-Wall")
833 env.Append(CXXFLAGS="-Woverloaded-virtual")
834
835 if env['EXTRA_WARN']:
836     env.Append(CCFLAGS="-Wextra -pedantic")
837     env.Append(CXXFLAGS="-ansi")
838
839 if env['LIBLO']:
840     env.Append(CCFLAGS="-DHAVE_LIBLO")
841
842 #
843 # everybody needs this
844 #
845
846 env.Merge ([ libraries['core'] ])
847
848 #
849 # fix scons nitpickiness on APPLE
850 #
851
852 if env['DIST_TARGET'] == 'panther' or env['DIST_TARGET'] == 'tiger':
853     env.Append(CCFLAGS="-I/opt/local/include", LINKFLAGS="-L/opt/local/lib")
854
855 #
856 # i18n support
857 #
858
859 conf = Configure (env)
860 if env['NLS']:
861     nls_error = 'This system is not configured for internationalized applications.  An english-only version will be built:'
862     print 'Checking for internationalization support ...'
863     have_gettext = conf.TryAction(Action('xgettext --version'))
864     if have_gettext[0] != 1:
865         nls_error += ' No xgettext command.'
866         env['NLS'] = 0
867     else:
868         print "Found xgettext"
869     
870     have_msgmerge = conf.TryAction(Action('msgmerge --version'))
871     if have_msgmerge[0] != 1:
872         nls_error += ' No msgmerge command.'
873         env['NLS'] = 0
874     else:
875         print "Found msgmerge"
876     
877     if not conf.CheckCHeader('libintl.h'):
878         nls_error += ' No libintl.h.'
879         env['NLS'] = 0
880         
881     if env['NLS'] == 0:
882         print nls_error
883     else:
884         print "International version will be built."
885 env = conf.Finish()
886
887 if env['NLS'] == 1:
888     env.Append(CCFLAGS="-DENABLE_NLS")
889
890 Export('env install_prefix final_prefix config_prefix final_config_prefix libraries i18n version subst_dict')
891
892 #
893 # the configuration file may be system dependent
894 #
895
896 conf = env.Configure ()
897
898 if conf.CheckCHeader('/System/Library/Frameworks/CoreAudio.framework/Versions/A/Headers/CoreAudio.h'):
899     subst_dict['%JACK_INPUT%'] = "coreaudio:Built-in Audio:in"
900     subst_dict['%JACK_OUTPUT%'] = "coreaudio:Built-in Audio:out"
901 else:
902     subst_dict['%JACK_INPUT%'] = "alsa_pcm:playback_"
903     subst_dict['%JACK_OUTPUT%'] = "alsa_pcm:capture_"
904
905 # posix_memalign available
906 if not conf.CheckFunc('posix_memalign'):
907     print 'Did not find posix_memalign(), using malloc'
908     env.Append(CCFLAGS='-DNO_POSIX_MEMALIGN')
909
910
911 env = conf.Finish()
912
913 rcbuild = env.SubstInFile ('ardour.rc','ardour.rc.in', SUBST_DICT = subst_dict)
914
915 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour_system.rc'))
916 env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour.rc'))
917
918 Default (rcbuild)
919
920 # source tarball
921
922 Precious (env['DISTTREE'])
923
924 #
925 # note the special "cleanfirst" source name. this triggers removal
926 # of the existing disttree
927 #
928
929 env.Distribute (env['DISTTREE'],
930                 [ 'SConstruct',
931                   'COPYING', 'PACKAGER_README', 'README',
932                   'ardour.rc.in',
933                   'ardour_system.rc',
934                   'tools/config.guess'
935                   ] +
936                 glob.glob ('DOCUMENTATION/AUTHORS*') +
937                 glob.glob ('DOCUMENTATION/CONTRIBUTORS*') +
938                 glob.glob ('DOCUMENTATION/TRANSLATORS*') +
939                 glob.glob ('DOCUMENTATION/BUILD*') +
940                 glob.glob ('DOCUMENTATION/FAQ*') +
941                 glob.glob ('DOCUMENTATION/README*')
942                 )
943
944 srcdist = env.Tarball(env['TARBALL'], env['DISTTREE'])
945 env.Alias ('srctar', srcdist)
946 #
947 # don't leave the distree around
948 #
949 env.AddPreAction (env['DISTTREE'], Action ('rm -rf ' + str (File (env['DISTTREE']))))
950 env.AddPostAction (srcdist, Action ('rm -rf ' + str (File (env['DISTTREE']))))
951
952 #
953 # the subdirs
954 #
955
956 for subdir in coredirs:
957     SConscript (subdir + '/SConscript')
958
959 for sublistdir in [ subdirs, gtk_subdirs, surface_subdirs ]:
960     for subdir in sublistdir:
961         SConscript (subdir + '/SConscript')
962
963 # cleanup
964 env.Clean ('scrub', [ 'scache.conf', '.sconf_temp', '.sconsign.dblite', 'config.log'])
965