source: trunk/gui/apps/rappture.in @ 511

Last change on this file since 511 was 511, checked in by dkearney, 18 years ago

moving all .h files to their respective src directories, updating tools.py to include python's re module, updated setup.py.in to use .h files from the installed version of rappture and to adapt to the new location of .h files. .h files are now all stored in the lib directory under the rappture installation folder. this should simplify people's code, so they dont have to include wierd search paths for header files. adjusted the paths in rappture.in, allowing people to use their own version of python and perl. octave on the other hand is still broken for people downloading our binary and not using libhdf5-1.6.2. src's makefile.in was modified to copy the .h files from the core and cee directories over to the rappture installation directory. the top level makefile.in has all kinds of changes mainly you can now type in ./configure --prefix=... --with-matlab=... and then make install. this will build and install the gui, language bindings, and examples. these changes will probably break the automatic builds but the necessary changes to the rappture-runtime package should be committed in good time.

  • Property svn:executable set to *
File size: 1.4 KB
Line 
1#!/bin/sh
2# ----------------------------------------------------------------------
3#  RAPPTURE
4#
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#
17# If you install Rappture elsewhere, edit the line below:
18RAPPTURE_INSTALL_DIR=@prefix@
19
20# no need to edit the rest...
21export PATH=$RAPPTURE_INSTALL_DIR/bin:$PATH
22export PERL5PATH=$RAPPTURE_INSTALL_DIR/lib/perl5:$PERL5PATH
23export PYTHONPATH=$RAPPTURE_INSTALL_DIR/lib/python2.3/site-packages:$PYTHONPATH
24export MATLABPATH=$RAPPTURE_INSTALL_DIR/lib/matlab:$MATLABPATH
25export OCTAVE_PATH=:$RAPPTURE_INSTALL_DIR/lib/octave:$OCTAVE_PATH
26export LD_LIBRARY_PATH=$RAPPTURE_INSTALL_DIR/lib:$LD_LIBRARY_PATH
27export DYLD_LIBRARY_PATH=$RAPPTURE_INSTALL_DIR/lib:$DYLD_LIBRARY_PATH
28export TCL_LIBRARY=$RAPPTURE_INSTALL_DIR/lib/tcl8.4
29export TK_LIBRARY=$RAPPTURE_INSTALL_DIR/lib/tk8.4
30exec $RAPPTURE_INSTALL_DIR/bin/driver $*
Note: See TracBrowser for help on using the repository browser.