Update of /cvsroot/pure-data/pd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21185
Modified Files: Tag: devel_0_39 SConstruct Log Message: installing locales and defaults.
Index: SConstruct =================================================================== RCS file: /cvsroot/pure-data/pd/Attic/SConstruct,v retrieving revision 1.1.4.11 retrieving revision 1.1.4.12 diff -C2 -d -r1.1.4.11 -r1.1.4.12 *** SConstruct 1 Aug 2006 13:25:26 -0000 1.1.4.11 --- SConstruct 30 Aug 2006 18:43:21 -0000 1.1.4.12 *************** *** 1,4 **** - global desire - env = Environment()
--- 1,2 ---- *************** *** 63,66 **** --- 61,79 ---- installs = []
+ ddfiles = Split(""" + defaults.ddrc + pkgIndex.tcl + objective.tcl + pre8.5.tcl + locale/bokmal.tcl + locale/catala.tcl + locale/deutsch.tcl + locale/english.tcl + locale/espanol.tcl + locale/francais.tcl + locale/italiano.tcl + locale/portugues.tcl + """) + installs.append(env.Install(prefix+'/bin', pdsend)) installs.append(env.Install(prefix+'/bin', pdreceive)) *************** *** 78,87 **** if env['desire']: installs.append(env.InstallAs(prefix + '/bin/desire', 'src/desire.tk')) if app_pkg: ! installs.append(env.InstallAs(prefix + '/lib/pd/bin/objective.tcl','src/objective.tcl')) ! installs.append(env.InstallAs(prefix + '/lib/pd/bin/pre8.5.tcl', 'src/pre8.5.tcl')) else: ! installs.append(env.InstallAs(prefix + '/Scripts/objective.tcl','src/objective.tcl')) ! installs.append(env.InstallAs(prefix + '/Scripts/pre8.5.tcl', 'src/pre8.5.tcl')) else: if not app_pkg: --- 91,102 ---- if env['desire']: installs.append(env.InstallAs(prefix + '/bin/desire', 'src/desire.tk')) + installs.append(env.Command(prefix+'/bin/desire','src/desire.tk', + ["install -m 755 $SOURCE $TARGET"])) if app_pkg: ! for ddfile in ddfiles: ! installs.append(env.InstallAs(prefix + '/lib/pd/bin/'+ddfile, 'src/'+ddfile)) else: ! for ddfile in ddfiles: ! installs.append(env.InstallAs(prefix + '/Scripts/'+ddfile, 'src/'+ddfile)) else: if not app_pkg: