source: trunk/gui/apps/rappture.env.in @ 708

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

updateing build system for rappture and language bindings.
librappture now includes a static version of libscew.
this means librappture needs to be linked directly against libexpat.
removed references to libscew from language bindings' makefiles.
corrected matlab and octave makefiles to only compile when dependencies are updated.
added --libdir flag so you can install platform dependent files into lib64 on 64-bit systems.
adjusted the rappture.env file to add lib64 directories to search paths incase they exist.

  • Property svn:executable set to *
File size: 1.6 KB
Line 
1#!/bin/sh
2# ----------------------------------------------------------------------
3#  RAPPTURE ENVIRONMENT
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-2007  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 PERL5LIB=$RAPPTURE_INSTALL_DIR/lib/perl5:$RAPPTURE_INSTALL_DIR/lib64/perl5:$PERL5LIB
23export PYTHONPATH=$RAPPTURE_INSTALL_DIR/lib/python@PYTHON_VERSION@/site-packages:$RAPPTURE_INSTALL_DIR/lib64/python@PYTHON_VERSION@/site-packages:$PYTHONPATH
24export MATLABPATH=$RAPPTURE_INSTALL_DIR/lib/matlab:$RAPPTURE_INSTALL_DIR/lib64/matlab:$MATLABPATH
25export OCTAVE_PATH=$RAPPTURE_INSTALL_DIR/lib/octave:$RAPPTURE_INSTALL_DIR/lib64/octave:$OCTAVE_PATH
26export LD_LIBRARY_PATH=$RAPPTURE_INSTALL_DIR/lib:$RAPPTURE_INSTALL_DIR/lib64:$LD_LIBRARY_PATH
27export DYLD_LIBRARY_PATH=$RAPPTURE_INSTALL_DIR/lib:$DYLD_LIBRARY_PATH
28export TCL_LIBRARY=$RAPPTURE_INSTALL_DIR/lib/tcl8.4:$RAPPTURE_INSTALL_DIR/lib64/tcl8.4:$TCL_LIBRARY
29export TK_LIBRARY=$RAPPTURE_INSTALL_DIR/lib/tk8.4:$RAPPTURE_INSTALL_DIR/lib64/tk8.4:$TK_LIBRARY
Note: See TracBrowser for help on using the repository browser.