forked from teuben/nemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnemo.pl.in
executable file
·27 lines (21 loc) · 881 Bytes
/
nemo.pl.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#! /usr/bin/perl
#
# this is a section of perl code to setup perl (e.g. cgi-bin) scripts
# to know the absolute location of NEMO and define all needed variables
#
# CAVEAT: if you relocate the NEMO directory tree, you will need to
# edit this file (or re-install in the new location)
#
#
$nemop1 ="@NEMO@";
$ENV{'NEMO'}="$nemop1";
$nemo_path = "${nemop1}/bin/";
$ENV{'PATH'} = "/usr/bin:/bin:${nemo_path}"; #Needed?
$ENV{'NEMOOBJ'}= "${nemop1}/obj";
$ENV{'NEMOLIB'}= "${nemop1}/lib";
$ENV{'NEMOINC'}= "${nemop1}/inc";
$ENV{'NEMODAT'}= "${nemop1}/data";
$ENV{'BTRPATH'}= "${nemop1}/obj/bodytrans";
$ENV{'POTPATH'}= "${nemop1}/obj/potential";
## $ENV{'PGPLOT_FONT'} = "/usr/local/astromake/opt/pgplot/grfont.dat";
## $ENV{'LD_LIBRARY_PATH'} = "${nemop1}/lib/:/usr/local/astromake/opt/pgplot";$ENV{'PGPLOT_BACKGROUND'} = "white";$ENV{'PGPLOT_FOREGROUND'} = "black";