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