source: trunk/vizservers/start_viz.sh.in @ 749

Last change on this file since 749 was 749, checked in by dkearney, 17 years ago

moved vizservers directory to top level. added configure/makefiles to nanovis, nanoscale, pymolproxy all controlled by a configure script in
vizservers directory. to build you need to specify where rappture and tcl are installed. the start_viz.sh script was adjusted to copy the voronoi and
rappture libraries over to the tmp directory because these files tend to reside on an nfs mounted drive.

  • Property svn:executable set to *
File size: 414 bytes
Line 
1#! /bin/sh
2
3DISPLAY=:0
4export DISPLAY
5
6dir=$( mktemp -d /tmp/nanorun.XXXXXX )
7
8PATH=${dir}:@prefix@/bin:$PATH
9LD_LIBRARY_PATH=${dir}/lib:$LD_LIBRARY_PATH
10export PATH LD_LIBRARY_PATH
11
12mkdir ${dir}/bin ${dir}/lib
13
14cp -r lib/shaders ${dir}
15cp -r lib/resources ${dir}
16cp lib/lib* ${dir}/lib
17cp bin/voronoi bin/nanoscale bin/nanovis ${dir}
18
19cd ${dir}
20
21${dir}/nanoscale -l 2020 -b 2020 -s 172.18.3.255 -c ${dir}/nanovis
Note: See TracBrowser for help on using the repository browser.