source: build/snova/trunk/obuild/setup.csh @ 241

Last change on this file since 241 was 241, checked in by barrand, 17 years ago
File size: 10.2 KB
Line 
1#!/bin/csh -f
2
3#
4# File produced by the obuild tool version 1.0
5# for the package snova with version v2r0p0.
6#
7
8#////////////////////////////////////////////////
9# Usage :
10#   csh> source setup.csh
11#////////////////////////////////////////////////
12
13#set verbose  # uncomment this line to have full verbosity.
14
15#////////////////////////////////////////////////
16# Set the absolute path of this package.
17# If in the below line there is the keyword :
18#
19#     @@absolute_dir@@
20#
21# then the package had not been installed.
22#
23#  Someone has to replace @@absolute_dir@@
24# by the absolute path of the package.
25# By "absolute path of the package", we mean that
26# if the obuild directory of the package is
27# found under :
28#    some_path/pack/vers/obuild
29# then the "absolute path of the package" is :
30#    some_path/pack/vers
31#
32#  This replacement can be done on the setup
33# scripts of the package by using the sh/build
34# with the -i option.
35#
36#  This replacement can be done recursively
37# on the setups of the used packages by using
38# the sh/build script with the -bci option
39# ("bci" for broadcast install).
40#
41#////////////////////////////////////////////////
42
43set obuild_snova_path="@@absolute_dir@@"
44
45
46if ( "${obuild_snova_path}" == '@@absolute_dir@@' ) then
47  echo '  The package snova had not been installed.'
48  echo ''
49  echo ' In the file :'
50  echo '    snova/<vers>/obuild/setup.csh'
51  echo ' someone has to replace '
52  echo '    @@absolute_dir@@'
53  echo ' by the absolute path of the package.'
54  echo '  By "absolute path of the package", we mean that'
55  echo ' if the obuild directory of the package is found under :'
56  echo '    some_path/pack/vers/obuild'
57  echo ' then the "absolute path of the package" is :'
58  echo '    some_path/pack/vers'
59  echo ''
60  echo '  If having the write access, this replacement can be done'
61  echo ' on the setup scripts of the package by using the sh/build'
62  echo ' with the -i option. This replacement can be done recursively'
63  echo ' on the setups of the used packages by using the sh/build script'
64  echo ' with the -bci option ("bci" for broadcast install).'
65  echo ''
66  exit
67endif
68
69if ( $?OBUILD_PLATFORM ) then
70  if ( "${OBUILD_PLATFORM}" == "" ) then
71    set obuild_platform=`uname`
72  else
73    set obuild_platform=${OBUILD_PLATFORM}
74  endif
75else
76  set obuild_platform=`uname`
77endif
78
79if ( "${obuild_platform}" == "" ) then
80  echo "obuild_platform variable not defined."
81  exit
82endif
83
84if ( $?OBUILD_DIR_BIN ) then
85  if (  "${OBUILD_DIR_BIN}" == "" ) then
86    set obuild_dir_bin=${obuild_platform}_obuild
87  else
88    set obuild_dir_bin=${OBUILD_DIR_BIN}
89  endif
90else
91  set obuild_dir_bin=${obuild_platform}_obuild
92endif
93
94if ( "${obuild_dir_bin}" == "" ) then
95  echo "obuild_dir_bin variable not defined."
96  exit
97endif
98
99if ( ! -e "${obuild_snova_path}/${obuild_dir_bin}/obuild_platform" ) then
100  if ( ! -e "${obuild_snova_path}/obuild/cpp/obuild_platform.cpp" ) then
101    echo "Program source obuild_platform.cpp not found."
102    exit
103  endif
104  if ( $?obuild_cxx_command ) then
105    if ( "${obuild_cxx_command}" == "" ) then
106      if (  $?OBUILD_CXX ) then
107        set obuild_platform_compiler=${OBUILD_CXX}
108      else
109        set obuild_platform_compiler=c++
110      endif
111    else
112      set obuild_platform_compiler=${obuild_cxx_command}
113    endif
114  else
115    set obuild_platform_compiler=c++
116  endif
117  ${obuild_platform_compiler} -o "${obuild_snova_path}/${obuild_dir_bin}/obuild_platform" "${obuild_snova_path}/obuild/cpp/obuild_platform.cpp"
118  unset obuild_platform_compiler
119  if ( ! -e "${obuild_snova_path}/${obuild_dir_bin}/obuild_platform" ) then
120    echo "Program obuild_platform not found."
121    exit
122  endif
123endif
124set obuild_platform_exe="${obuild_snova_path}/${obuild_dir_bin}/obuild_platform"
125if ( "${obuild_platform_exe}" == "" ) then
126  echo "Variable obuild_platform_exe not defined."
127  exit
128endif
129set obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} UNIX`
130if ( ${obuild_platform_result} == yes ) then
131set CLHEP_home="/usr/local/CLHEP/2.0.3.1"
132endif
133unset obuild_platform_result
134if ( "${obuild_platform_exe}" == "" ) then
135  echo "Variable obuild_platform_exe not defined."
136  exit
137endif
138set obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} UNIX`
139if ( ${obuild_platform_result} == yes ) then
140set Geant4_home="/usr/local/geant4/8.2"
141endif
142unset obuild_platform_result
143if ( "${obuild_platform_exe}" == "" ) then
144  echo "Variable obuild_platform_exe not defined."
145  exit
146endif
147set obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} UNIX`
148if ( ${obuild_platform_result} == yes ) then
149set HDF5_home="/usr/local/HDF5/1.6.5"
150endif
151unset obuild_platform_result
152if ( "${obuild_platform_exe}" == "" ) then
153  echo "Variable obuild_platform_exe not defined."
154  exit
155endif
156set obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} UNIX`
157if ( ${obuild_platform_result} == yes ) then
158set zlib_home="/usr"
159endif
160unset obuild_platform_result
161if ( ! -e "${obuild_snova_path}/${obuild_dir_bin}/obuild_find" ) then
162  if ( ! -e "${obuild_snova_path}/obuild/cpp/obuild_find.cpp" ) then
163    echo "Program source obuild_find.cpp not found."
164    exit
165  endif
166  if ( $?obuild_cxx_command ) then
167    if ( "${obuild_cxx_command}" == "" ) then
168      if (  $?OBUILD_CXX ) then
169        set obuild_find_compiler=${OBUILD_CXX}
170      else
171        set obuild_find_compiler=c++
172      endif
173    else
174      set obuild_find_compiler=${obuild_cxx_command}
175    endif
176  else
177    set obuild_find_compiler=c++
178  endif
179  ${obuild_find_compiler} -o "${obuild_snova_path}/${obuild_dir_bin}/obuild_find" "${obuild_snova_path}/obuild/cpp/obuild_find.cpp"
180  unset obuild_find_compiler
181  if ( ! -e "${obuild_snova_path}/${obuild_dir_bin}/obuild_find" ) then
182    echo "Program obuild_find not found."
183    exit
184  endif
185endif
186set obuild_find_exe="${obuild_snova_path}/${obuild_dir_bin}/obuild_find"
187if ( "${obuild_find_exe}" == "" ) then
188  echo "Variable obuild_find_exe not defined."
189  exit
190endif
191set obuild_bhep_path=`"${obuild_find_exe}" bhep 'v1r4p2'`
192
193# Execute setup of used packages :
194source "${obuild_bhep_path}/obuild/setup.csh"
195
196# Set environment variables of this package :
197
198if ( "${obuild_platform_exe}" == "" ) then
199  echo "Variable obuild_platform_exe not defined."
200  exit
201endif
202set obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} Darwin`
203if ( ${obuild_platform_result} == yes ) then
204if ( "${obuild_platform_exe}" == "" ) then
205  echo "Variable obuild_platform_exe not defined."
206  exit
207endif
208set obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} UNIX`
209if ( ${obuild_platform_result} == yes ) then
210  if (  $?DYLD_LIBRARY_PATH ) then
211    setenv DYLD_LIBRARY_PATH "${DYLD_LIBRARY_PATH}:${HDF5_home}/lib"
212  else
213    setenv DYLD_LIBRARY_PATH "${HDF5_home}/lib"
214  endif
215endif
216unset obuild_platform_result
217else
218if ( "${obuild_platform_exe}" == "" ) then
219  echo "Variable obuild_platform_exe not defined."
220  exit
221endif
222set obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} UNIX`
223if ( ${obuild_platform_result} == yes ) then
224  if (  $?LD_LIBRARY_PATH ) then
225    setenv LD_LIBRARY_PATH "${LD_LIBRARY_PATH}:${HDF5_home}/lib"
226  else
227    setenv LD_LIBRARY_PATH "${HDF5_home}/lib"
228  endif
229endif
230unset obuild_platform_result
231endif
232unset obuild_platform_result
233
234if ( "${obuild_platform_exe}" == "" ) then
235  echo "Variable obuild_platform_exe not defined."
236  exit
237endif
238set obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} Darwin`
239if ( ${obuild_platform_result} == yes ) then
240if ( "${obuild_platform_exe}" == "" ) then
241  echo "Variable obuild_platform_exe not defined."
242  exit
243endif
244set obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} UNIX`
245if ( ${obuild_platform_result} == yes ) then
246  if (  $?DYLD_LIBRARY_PATH ) then
247    setenv DYLD_LIBRARY_PATH "${DYLD_LIBRARY_PATH}:${CLHEP_home}/lib"
248  else
249    setenv DYLD_LIBRARY_PATH "${CLHEP_home}/lib"
250  endif
251endif
252unset obuild_platform_result
253else
254if ( "${obuild_platform_exe}" == "" ) then
255  echo "Variable obuild_platform_exe not defined."
256  exit
257endif
258set obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} UNIX`
259if ( ${obuild_platform_result} == yes ) then
260  if (  $?LD_LIBRARY_PATH ) then
261    setenv LD_LIBRARY_PATH "${LD_LIBRARY_PATH}:${CLHEP_home}/lib"
262  else
263    setenv LD_LIBRARY_PATH "${CLHEP_home}/lib"
264  endif
265endif
266unset obuild_platform_result
267endif
268unset obuild_platform_result
269
270if ( "${obuild_platform_exe}" == "" ) then
271  echo "Variable obuild_platform_exe not defined."
272  exit
273endif
274set obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} Darwin`
275if ( ${obuild_platform_result} == yes ) then
276if ( "${obuild_platform_exe}" == "" ) then
277  echo "Variable obuild_platform_exe not defined."
278  exit
279endif
280set obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} UNIX`
281if ( ${obuild_platform_result} == yes ) then
282  if (  $?DYLD_LIBRARY_PATH ) then
283    setenv DYLD_LIBRARY_PATH "${DYLD_LIBRARY_PATH}:${Geant4_home}/lib"
284  else
285    setenv DYLD_LIBRARY_PATH "${Geant4_home}/lib"
286  endif
287endif
288unset obuild_platform_result
289else
290if ( "${obuild_platform_exe}" == "" ) then
291  echo "Variable obuild_platform_exe not defined."
292  exit
293endif
294set obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} UNIX`
295if ( ${obuild_platform_result} == yes ) then
296  if (  $?LD_LIBRARY_PATH ) then
297    setenv LD_LIBRARY_PATH "${LD_LIBRARY_PATH}:${Geant4_home}/lib"
298  else
299    setenv LD_LIBRARY_PATH "${Geant4_home}/lib"
300  endif
301endif
302unset obuild_platform_result
303endif
304unset obuild_platform_result
305
306if ( "${obuild_platform_exe}" == "" ) then
307  echo "Variable obuild_platform_exe not defined."
308  exit
309endif
310set obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} Darwin`
311if ( ${obuild_platform_result} == yes ) then
312  if (  $?DYLD_LIBRARY_PATH ) then
313    setenv DYLD_LIBRARY_PATH "${DYLD_LIBRARY_PATH}:${obuild_snova_path}/${obuild_dir_bin}"
314  else
315    setenv DYLD_LIBRARY_PATH "${obuild_snova_path}/${obuild_dir_bin}"
316  endif
317else
318  if (  $?LD_LIBRARY_PATH ) then
319    setenv LD_LIBRARY_PATH "${LD_LIBRARY_PATH}:${obuild_snova_path}/${obuild_dir_bin}"
320  else
321    setenv LD_LIBRARY_PATH "${obuild_snova_path}/${obuild_dir_bin}"
322  endif
323endif
324unset obuild_platform_result
325
326if (  $?PATH ) then
327  setenv PATH "${PATH}:${obuild_snova_path}/${obuild_dir_bin}"
328else
329  setenv PATH "${obuild_snova_path}/${obuild_dir_bin}"
330endif
331
332unset obuild_snova_path
333
334#FIXME unset obuild_platform
335#FIXME unset obuild_dir_bin
Note: See TracBrowser for help on using the repository browser.