~ubuntu-branches/ubuntu/quantal/astk/quantal

« back to all changes in this revision

Viewing changes to ASTK_SERV/etc/profile.csh

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Trophime
  • Date: 2010-04-25 16:43:13 UTC
  • Revision ID: james.westby@ubuntu.com-20100425164313-0s0wtsmbiewbdz53
Tags: upstream-1.8.0
ImportĀ upstreamĀ versionĀ 1.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# AUTOMATICALLY GENERATED - DO NOT EDIT !
 
2
# Put all you changes in profile_local.csh in the same directory
 
3
#
 
4
# profile.csh : initialize the environment for as_run services
 
5
# (sh, ksh, bash syntax)
 
6
#
 
7
# If variables are depending on Code_Aster version, use ENV_SH in
 
8
# the corresponding 'config.txt' file.
 
9
#
 
10
# $ASTER_VERSION is now obsolete.
 
11
#
 
12
if !($?DEFINE_PROFILE_ASRUN) then
 
13
   setenv DEFINE_PROFILE_ASRUN "done"
 
14
#--- ifndef DEFINE_PROFILE_ASRUN -----------------------------------------------
 
15
 
 
16
setenv ASTER_ROOT ?ASTER_ROOT?
 
17
 
 
18
if !($?PATH) then
 
19
   setenv PATH $ASTER_ROOT/bin:$ASTER_ROOT/outils
 
20
else
 
21
   setenv PATH $ASTER_ROOT/bin:$ASTER_ROOT/outils:$PATH
 
22
endif
 
23
 
 
24
if !($?LD_LIBRARY_PATH) then
 
25
   setenv LD_LIBRARY_PATH ?HOME_PYTHON?/lib
 
26
else
 
27
   setenv LD_LIBRARY_PATH ?HOME_PYTHON?/lib:$LD_LIBRARY_PATH
 
28
endif
 
29
 
 
30
if !($?PYTHONPATH) then
 
31
   setenv PYTHONPATH ?ASRUN_SITE_PKG?
 
32
else
 
33
   setenv PYTHONPATH ?ASRUN_SITE_PKG?:$PYTHONPATH
 
34
endif
 
35
 
 
36
setenv PYTHONEXECUTABLE ?PYTHON_EXE?
 
37
 
 
38
# this should not be usefull...
 
39
#setenv PYTHONHOME ?HOME_PYTHON?
 
40
 
 
41
setenv WISHEXECUTABLE ?WISH_EXE?
 
42
 
 
43
 
 
44
# source local profile
 
45
if (-e $ASTER_ROOT/etc/codeaster/profile_local.csh) then
 
46
   source $ASTER_ROOT/etc/codeaster/profile_local.csh
 
47
endif
 
48
 
 
49
#--- endif DEFINE_PROFILE_ASRUN ------------------------------------------------
 
50
endif
 
51