Changeset 1796 for trunk


Ignore:
Timestamp:
Jul 8, 2010, 2:13:22 PM (14 years ago)
Author:
gah
Message:
 
Location:
trunk/gui/apps
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/apps/about.in

    r1206 r1796  
    1919# ======================================================================
    2020#\
     21bindir=`dirname $0` ; \
     22. $bindir/rappture.env ; \
    2123exec wish "$0" $*
    2224# ----------------------------------------------------------------------
  • trunk/gui/apps/encodedata.in

    r1280 r1796  
    88# ======================================================================
    99#\
    10 RAPPTURE_INSTALL_DIR=@prefix@ ; \
    11 . $RAPPTURE_INSTALL_DIR/bin/rappture.env ; \
     10bindir=`dirname $0` ; \
     11. $bindir/rappture.env ; \
    1212exec wish "$0" $*
    1313
  • trunk/gui/apps/flowvis-test

    r1492 r1796  
    1616# ======================================================================
    1717#\
     18bindir=`basename $0` ; \
     19. $bindir/rappture.env ; \
    1820exec wish "$0" $*
    1921# ----------------------------------------------------------------------
    2022# wish executes everything from here on...
    2123
    22 lappend auto_path /usr/local/rappture/lib /usr/local/rappture/lib/vtk /usr/local/rappture/lib/vtk/tcl
     24set installdir [file root $argv0]
     25set libdir [file join $installdir "lib"]
     26
     27lappend auto_path $libdir $libdir/vtk $libdir/vtk/tcl
    2328
    2429package require Itcl
  • trunk/gui/apps/nanovis-test

    r1668 r1796  
    1717# ======================================================================
    1818#\
    19 exec wish "$0" $*
     19bindir=`dirname $0` ; \
     20exec $bindir/wish "$0" $*
    2021# ----------------------------------------------------------------------
    2122# wish executes everything from here on...
    2223
    23 lappend auto_path /usr/local/rappture/lib /usr/local/rappture/lib/vtk /usr/local/rappture/lib/vtk/tcl
     24set installdir [file root $argv0]
     25set libdir [file join $installdir "lib"]
     26
     27lappend auto_path $libdir $libdir/vtk $libdir/vtk/tcl
    2428
    2529package require Itcl
  • trunk/gui/apps/rerun.in

    r1206 r1796  
    3030#
    3131#
    32 
    33 RAPPTURE_INSTALL_DIR=@prefix@
    34 
    35 . $RAPPTURE_INSTALL_DIR/bin/rappture.env
    36 exec $RAPPTURE_INSTALL_DIR/bin/driver -nosim true -load $*
     32bindir=`dirname $0` ; \
     33. $bindir/rappture.env ; \
     34exec rappture -nosim true -load $*
  • trunk/gui/apps/simsim.in

    r1741 r1796  
    88# ======================================================================
    99#\
    10 RAPPTURE_INSTALL_DIR=@prefix@ ; \
    11 . $RAPPTURE_INSTALL_DIR/bin/rappture.env ; \
     10bindir=`dirname $0` ; \
     11. $bindir/rappture.env ; \
    1212exec wish "$0" $*
    1313
  • trunk/gui/apps/xmldiff.in

    r1206 r1796  
    1313# ======================================================================
    1414
    15 RAPPTURE_INSTALL_DIR=@prefix@
    16 
    17 . $RAPPTURE_INSTALL_DIR/bin/rappture.env
    18 exec $RAPPTURE_INSTALL_DIR/bin/simsim --nosim --tool $1 --compare $2
     15exec simsim --nosim --tool $1 --compare $2
Note: See TracChangeset for help on using the changeset viewer.