X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=inline;f=templates%2Fwscript;h=ab7e8d076865101039d68bb33dbd8009ea8e2098;hb=22fd92f97c5ff2bb1890a3b88085bed5c035498e;hp=3f00b785ae7ab2c020a9dacdbca8b5ae48982943;hpb=73a91402cd0b12cf2cfe70f8fc4d4e4667fd259b;p=ardour.git diff --git a/templates/wscript b/templates/wscript index 3f00b785ae..ab7e8d0768 100644 --- a/templates/wscript +++ b/templates/wscript @@ -1,5 +1,22 @@ #!/usr/bin/python +# +# Paul notes (April 2013) +# +# There seems to be little point in including templates with Ardour +# until or as long as the input connections of tracks depends on +# the user's hardware configuration. This makes any pre-existing +# templates potentially wrong/useless/annoying for anyone who +# uses a different hardware input configuration than was used +# to create the templates. +# +# Templates should be created by the user, not by us. +# +# I modified the code below, but have not tested it. For now +# this directory will be removed from the top level wscript's +# list of children. +# + import os top = '.' @@ -10,23 +27,15 @@ def configure(conf): def build(bld): - subst_dict = {} - if bld.is_defined('COREAUDIO_SUPPORT'): - subst_dict['%JACK_INPUT%'] = 'coreaudio:Built-in Audio:in' - subst_dict['%JACK_OUTPUT%'] = 'coreaudio:Built-in Audio:out' - else: - subst_dict['%JACK_INPUT%'] = 'alsa_pcm:playback_' - subst_dict['%JACK_OUTPUT%'] = 'alsa_pcm:capture_' - - templates = bld.path.ant_glob('*.template.in') + templates = bld.path.ant_glob('*/*.template') for t in templates: - obj = bld(features = 'subst') - obj.source = [ t ] - dir_name = os.path.basename(t.srcpath()).replace('.template.in', '') - file_name = os.path.basename(t.srcpath()).replace('.in', '') - obj.target = [ os.path.join(dir_name, file_name) ] - obj.dict = subst_dict - obj.install_path = os.path.join(bld.env['DATADIR'], 'ardour3', os.path.join('templates', dir_name)) + file_name = os.path.basename(t.srcpath()) + dir_name = os.path.dirname(t.srcpath()) + obj = bld(features = 'subst', + name = 'template', + source = [ t ], + target = [ os.path.join(dir_name, file_name) ], + install_path = os.path.join(bld.env['DATADIR'], os.path.join('templates', dir_name))) def options(opt): pass