| 1 | #!/bin/sh -f | 
|---|
| 2 |  | 
|---|
| 3 | # | 
|---|
| 4 | # File produced by the obuild tool version 1.0 | 
|---|
| 5 | # for the package snovis with version v1r1. | 
|---|
| 6 | # | 
|---|
| 7 |  | 
|---|
| 8 | #//////////////////////////////////////////////// | 
|---|
| 9 | # Usage : | 
|---|
| 10 | #   UNIX> cd some_path/pack/version/obuild | 
|---|
| 11 | # ( UNIX> chmod a+x sh/check_foreigns ) | 
|---|
| 12 | #   UNIX> sh/check_foreigns | 
|---|
| 13 | # | 
|---|
| 14 | #//////////////////////////////////////////////// | 
|---|
| 15 |  | 
|---|
| 16 | # Binary directory is needed to create the obuild_plaform program. | 
|---|
| 17 |  | 
|---|
| 18 | if [  "${OBUILD_PLATFORM}" = "" ] ; then | 
|---|
| 19 | obuild_platform=`uname` | 
|---|
| 20 | else | 
|---|
| 21 | obuild_platform=${OBUILD_PLATFORM} | 
|---|
| 22 | fi | 
|---|
| 23 |  | 
|---|
| 24 | if [ "${obuild_platform}" = "" ] ; then | 
|---|
| 25 | echo "obuild_platform variable not defined." | 
|---|
| 26 | exit | 
|---|
| 27 | fi | 
|---|
| 28 |  | 
|---|
| 29 | if [  "${OBUILD_DIR_BIN}" = "" ] ; then | 
|---|
| 30 | obuild_dir_bin=${obuild_platform}_obuild | 
|---|
| 31 | else | 
|---|
| 32 | obuild_dir_bin=${OBUILD_DIR_BIN} | 
|---|
| 33 | fi | 
|---|
| 34 |  | 
|---|
| 35 | if [ "${obuild_dir_bin}" = "" ] ; then | 
|---|
| 36 | echo "obuild_dir_bin variable not defined." | 
|---|
| 37 | exit | 
|---|
| 38 | fi | 
|---|
| 39 |  | 
|---|
| 40 | obuild_pwd=`pwd` | 
|---|
| 41 | obuild_snovis_path=`dirname "${obuild_pwd}"` | 
|---|
| 42 | unset obuild_pwd | 
|---|
| 43 |  | 
|---|
| 44 | # Create the bin directory : | 
|---|
| 45 | /bin/mkdir -p "${obuild_snovis_path}/${obuild_dir_bin}" | 
|---|
| 46 |  | 
|---|
| 47 | obuild_check_what=$1 | 
|---|
| 48 | if [ "${obuild_check_what}" = "" ] ; then | 
|---|
| 49 | echo "check_foreigns : no argument given" | 
|---|
| 50 | exit 1 | 
|---|
| 51 | fi | 
|---|
| 52 |  | 
|---|
| 53 | if [ ! -e "${obuild_snovis_path}/${obuild_dir_bin}/obuild_platform" ] ; then | 
|---|
| 54 | if [ ! -e "${obuild_snovis_path}/obuild/cpp/obuild_platform.cpp" ] ; then | 
|---|
| 55 | echo "Program source obuild_platform.cpp not found." | 
|---|
| 56 | exit | 
|---|
| 57 | fi | 
|---|
| 58 | if [ "${obuild_cxx_command}" = "" ] ; then | 
|---|
| 59 | if [  "${OBUILD_CXX}" != "" ] ; then | 
|---|
| 60 | obuild_platform_compiler=${OBUILD_CXX} | 
|---|
| 61 | else | 
|---|
| 62 | obuild_platform_compiler=c++ | 
|---|
| 63 | fi | 
|---|
| 64 | else | 
|---|
| 65 | obuild_platform_compiler=${obuild_cxx_command} | 
|---|
| 66 | fi | 
|---|
| 67 | ${obuild_platform_compiler} -o "${obuild_snovis_path}/${obuild_dir_bin}/obuild_platform" "${obuild_snovis_path}/obuild/cpp/obuild_platform.cpp" | 
|---|
| 68 | unset obuild_platform_compiler | 
|---|
| 69 | if [ ! -e "${obuild_snovis_path}/${obuild_dir_bin}/obuild_platform" ] ; then | 
|---|
| 70 | echo "Program obuild_platform not found." | 
|---|
| 71 | exit | 
|---|
| 72 | fi | 
|---|
| 73 | fi | 
|---|
| 74 | obuild_platform_exe="${obuild_snovis_path}/${obuild_dir_bin}/obuild_platform" | 
|---|
| 75 | if [ "${obuild_platform_exe}" = "" ] ; then | 
|---|
| 76 | echo "Variable obuild_platform_exe not defined." | 
|---|
| 77 | exit | 
|---|
| 78 | fi | 
|---|
| 79 | obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` | 
|---|
| 80 | if [ ${obuild_platform_result} = yes ] ; then | 
|---|
| 81 | bhep_home="/Users/barrand/dev/exp/nemo/bhep/v1r4p2" | 
|---|
| 82 | fi | 
|---|
| 83 | unset obuild_platform_result | 
|---|
| 84 | if [ "${obuild_platform_exe}" = "" ] ; then | 
|---|
| 85 | echo "Variable obuild_platform_exe not defined." | 
|---|
| 86 | exit | 
|---|
| 87 | fi | 
|---|
| 88 | obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` | 
|---|
| 89 | if [ ${obuild_platform_result} = yes ] ; then | 
|---|
| 90 | bhep_platform="Darwin" | 
|---|
| 91 | fi | 
|---|
| 92 | unset obuild_platform_result | 
|---|
| 93 | if [ "${obuild_platform_exe}" = "" ] ; then | 
|---|
| 94 | echo "Variable obuild_platform_exe not defined." | 
|---|
| 95 | exit | 
|---|
| 96 | fi | 
|---|
| 97 | obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` | 
|---|
| 98 | if [ ${obuild_platform_result} = yes ] ; then | 
|---|
| 99 | snova_home="/Users/barrand/dev/exp/nemo/snova/v2r0p0" | 
|---|
| 100 | fi | 
|---|
| 101 | unset obuild_platform_result | 
|---|
| 102 | if [ "${obuild_platform_exe}" = "" ] ; then | 
|---|
| 103 | echo "Variable obuild_platform_exe not defined." | 
|---|
| 104 | exit | 
|---|
| 105 | fi | 
|---|
| 106 | obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` | 
|---|
| 107 | if [ ${obuild_platform_result} = yes ] ; then | 
|---|
| 108 | snova_platform="Darwin" | 
|---|
| 109 | fi | 
|---|
| 110 | unset obuild_platform_result | 
|---|
| 111 | if [ "${obuild_platform_exe}" = "" ] ; then | 
|---|
| 112 | echo "Variable obuild_platform_exe not defined." | 
|---|
| 113 | exit | 
|---|
| 114 | fi | 
|---|
| 115 | obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` | 
|---|
| 116 | if [ ${obuild_platform_result} = yes ] ; then | 
|---|
| 117 | CLHEP_home="/usr/local/CLHEP/2.0.3.1" | 
|---|
| 118 | fi | 
|---|
| 119 | unset obuild_platform_result | 
|---|
| 120 | if [ "${obuild_platform_exe}" = "" ] ; then | 
|---|
| 121 | echo "Variable obuild_platform_exe not defined." | 
|---|
| 122 | exit | 
|---|
| 123 | fi | 
|---|
| 124 | obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` | 
|---|
| 125 | if [ ${obuild_platform_result} = yes ] ; then | 
|---|
| 126 | Geant4_home="/usr/local/geant4/8.2" | 
|---|
| 127 | fi | 
|---|
| 128 | unset obuild_platform_result | 
|---|
| 129 | if [ "${obuild_platform_exe}" = "" ] ; then | 
|---|
| 130 | echo "Variable obuild_platform_exe not defined." | 
|---|
| 131 | exit | 
|---|
| 132 | fi | 
|---|
| 133 | obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` | 
|---|
| 134 | if [ ${obuild_platform_result} = yes ] ; then | 
|---|
| 135 | if [ "${obuild_check_what}" = "CLHEP" ] ; then | 
|---|
| 136 | if [ ! -d "${CLHEP_home}" ] ; then | 
|---|
| 137 | echo "WARNING : CLHEP not found under ${CLHEP_home}" | 
|---|
| 138 | exit 1 | 
|---|
| 139 | fi | 
|---|
| 140 | fi | 
|---|
| 141 | fi | 
|---|
| 142 | unset obuild_platform_result | 
|---|
| 143 | if [ "${obuild_platform_exe}" = "" ] ; then | 
|---|
| 144 | echo "Variable obuild_platform_exe not defined." | 
|---|
| 145 | exit | 
|---|
| 146 | fi | 
|---|
| 147 | obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` | 
|---|
| 148 | if [ ${obuild_platform_result} = yes ] ; then | 
|---|
| 149 | if [ "${obuild_check_what}" = "Geant4" ] ; then | 
|---|
| 150 | if [ ! -d "${Geant4_home}" ] ; then | 
|---|
| 151 | echo "WARNING : Geant4 not found under ${Geant4_home}" | 
|---|
| 152 | exit 1 | 
|---|
| 153 | fi | 
|---|
| 154 | fi | 
|---|
| 155 | fi | 
|---|
| 156 | unset obuild_platform_result | 
|---|
| 157 |  | 
|---|