source: trunk/gui/apps/rappture @ 154

Last change on this file since 154 was 135, checked in by dkearney, 19 years ago

1) fixed children function in c++'s library module so users can now
search for children by type.
2) adjusted bindings dictionary module for storing lib's to allow caller
to set the key of the value being stored.
3) removed old targets for rappture_interface.o and rappture_fortran.o
from makefile
4) renamed matlab and octave binding functions names to match the module
they came from.
5) adjusted matlab/octave example in examples/app_fermi/matlab
6) added matlab and octave search paths environment variables to
gui/apps/rappture

  • Property svn:executable set to *
File size: 1.2 KB
RevLine 
[64]1#!/bin/sh
[115]2# ----------------------------------------------------------------------
3#  RAPPTURE
[64]4#
[115]5#  This is the main script that most people use to invoke the
6#  Rappture GUI.  It sets environment variables so that the Rappture
7#  GUI driver will work properly for the current installation.
8#
9# ======================================================================
10#  AUTHOR:  Michael McLennan, Purdue University
11#  Copyright (c) 2004-2005  Purdue Research Foundation
12#
13#  See the file "license.terms" for information on usage and
14#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
15# ======================================================================
16#
[64]17# If you install Rappture elsewhere, edit the line below:
18RAPPTURE_INSTALL_DIR=/opt/rappture
19
20# no need to edit the rest...
21export PATH=$RAPPTURE_INSTALL_DIR/bin:$PATH
[133]22export MATLABPATH=$RAPPTURE_INSTALL_DIR/lib/matlab:$MATLABPATH
[135]23export OCTAVE_PATH=:$RAPPTURE_INSTALL_DIR/lib/octave:$OCTAVE_PATH
[64]24export LD_LIBRARY_PATH=$RAPPTURE_INSTALL_DIR/lib:$LD_LIBRARY_PATH
[115]25export DYLD_LIBRARY_PATH=$RAPPTURE_INSTALL_DIR/lib:$DYLD_LIBRARY_PATH
[133]26export TCL_LIBRARY=$RAPPTURE_INSTALL_DIR/lib/tcl8.4
27export TK_LIBRARY=$RAPPTURE_INSTALL_DIR/lib/tk8.4
[64]28exec $RAPPTURE_INSTALL_DIR/bin/driver $*
Note: See TracBrowser for help on using the repository browser.