Update of /cvsroot/pure-data/pd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26899
Modified Files: Tag: devel_0_39 SConstruct Log Message: removing DesireData from SConstruct
Index: SConstruct =================================================================== RCS file: /cvsroot/pure-data/pd/Attic/SConstruct,v retrieving revision 1.1.4.17 retrieving revision 1.1.4.18 diff -C2 -d -r1.1.4.17 -r1.1.4.18 *** SConstruct 17 Nov 2006 17:49:03 -0000 1.1.4.17 --- SConstruct 20 Nov 2006 06:43:45 -0000 1.1.4.18 *************** *** 11,15 **** opt.AddOptions( ('prefix', 'install prefix', '/usr/local'), - BoolOption('desire', 'Build with desire', False), BoolOption('icc', 'use intel c compiler', False))
--- 11,14 ---- *************** *** 108,126 **** installs.append(env.Install(prefix+'/bin', pdwatchdog))
! 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 + '/Scripts/'+ddfile, 'src/'+ddfile)) ! else: ! for ddfile in ddfiles: ! installs.append(env.InstallAs(prefix + '/lib/pd/bin/'+ddfile, 'src/'+ddfile)) else: ! if not app_pkg: ! installs.append(env.InstallAs(prefix + '/lib/pd/bin/pd.tk','src/u_main.tk')) ! else: ! installs.append(env.InstallAs(prefix + '/bin/pd.tk','src/u_main.tk'))
if not app_pkg: --- 107,114 ---- installs.append(env.Install(prefix+'/bin', pdwatchdog))
! if not app_pkg: ! installs.append(env.InstallAs(prefix + '/lib/pd/bin/pd.tk','src/u_main.tk')) else: ! installs.append(env.InstallAs(prefix + '/bin/pd.tk','src/u_main.tk'))
if not app_pkg: *************** *** 139,146 **** pass
! if env['desire']: ! headers = Split("m_pd.h m_imp.h desire.h") ! else: ! headers = Split("m_pd.h m_imp.h g_canvas.h")
for header in headers: --- 127,131 ---- pass
! headers = Split("m_pd.h m_imp.h g_canvas.h")
for header in headers: