Salome HOME
Imported using TkCVS
[plugins/ghs3dprlplugin.git] / build_configure
1 #!/bin/bash
2
3 #
4 # Tool for updating list of .in file for the SALOME project 
5 # and regenerating configure script
6 #
7 # Author : Marc Tajchman - CEA
8 # Date : 10/10/2002
9 #
10
11 ORIG_DIR=`pwd`
12 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
13
14 ########################################################################
15 # Test if the KERNEL_ROOT_DIR is set correctly
16
17 if test ! -d "${KERNEL_ROOT_DIR}"; then
18     echo "failed : KERNEL_ROOT_DIR variable is not correct !"
19     exit
20 fi
21
22 # Test if the KERNEL_SRC is set correctly
23
24 #if test ! -d "${KERNEL_SRC}"; then
25 #    echo "failed : KERNEL_SRC variable is not correct !"
26 #    exit
27 #fi
28 ########################################################################
29 # Test if the GUI_ROOT_DIR is set correctly
30
31 if test ! -d "${GUI_ROOT_DIR}"; then
32     echo "failed : GUI_ROOT_DIR variable is not correct !"
33     exit
34 fi
35
36 ########################################################################
37 # Test if the MED_ROOT_DIR is set correctly
38
39 if test ! -d "${MED_ROOT_DIR}"; then
40     echo "failed : MED_ROOT_DIR variable is not correct !"
41     exit
42 fi
43
44 ########################################################################
45 # Test if the GEOM_ROOT_DIR is set correctly
46
47 if test ! -d "${GEOM_ROOT_DIR}"; then
48     echo "failed : GEOM_ROOT_DIR variable is not correct !"
49     exit
50 fi
51
52 ########################################################################
53 # Test if the SMESH_ROOT_DIR is set correctly
54
55 if test ! -d "${SMESH_ROOT_DIR}"; then
56     echo "failed : SMESH_ROOT_DIR variable is not correct !"
57     exit
58 fi
59
60 ########################################################################
61 # find_in - utility function
62 #
63 # usage :  
64 #    find_in directory filename 
65 #
66 # Finds files following the *.in pattern, recursively in the
67 # directory (first argument).
68 # Results are appended into the file (second argument)
69 #
70 # Difference from the standard unix find is that files are tested
71 # before directories
72
73
74 find_in()
75 {
76   local i
77   local f=$2
78
79 # if the first argument is not a directory, returns
80
81   if [ ! -d "$1" ] ; then 
82      return 
83   fi
84
85 # dont look in the CVS directories
86
87   case $1 in
88     */CVS) return ;;
89         */adm_local/*) return ;;
90     *) ;;
91   esac
92
93 # for each regular file contained in the directory
94 # test if it's a .in file
95
96   for i in "$1"/*
97   do
98      if [ -f "$i" ] ; then
99        case $i in 
100          *.in) echo "   "$i" \\" >> $f;;
101          *) ;;
102         esac
103      fi
104   done
105
106 # for each subdirectory of the first argument, proceeds recursively
107
108   for i in "$1"/*
109   do
110      if [ -d "$i" ] ; then
111         find_in "$i" "$f"
112      fi
113   done
114 }
115
116
117 #######################################################################
118 # Generate list of .in files (Makefile.in, config.h.in, etc)
119 # appending it in file configure.in
120
121 cd ${CONF_DIR}
122 ABS_CONF_DIR=`pwd`
123
124 echo
125 echo "CONF_DIR        : $CONF_DIR"
126 echo "ABS_CONF_DIR    : $ABS_CONF_DIR"
127 echo "KERNEL_ROOT_DIR : $KERNEL_ROOT_DIR"
128 echo "ROOT_SRCDIR     : $ROOT_SRCDIR"
129 echo
130
131 #
132 # Common part of the configure.in file
133 #
134 chmod u+w configure.in.base
135 if ! \cp -f configure.in.base configure.in_tmp1 
136 then
137         echo
138         echo "error : can't create files in" ${CONF_DIR}
139         echo "aborting ..."
140         chmod u-w configure.in.base 
141         exit
142 fi
143 chmod u-w configure.in.base 
144
145 if [ -e "${CONF_DIR}/salome_adm" ] ; then
146     echo "salome_adm file exists in the current directory"
147     \rm -f ${CONF_DIR}/salome_adm
148 fi
149
150 # make a link allowing AC_OUTPUT to find the salome_adm/.../*.in  files
151 echo "" >> configure.in_tmp1
152 echo 'ln -fs ${KERNEL_ROOT_DIR}/salome_adm ${ROOT_SRCDIR}/.' >> configure.in_tmp1
153
154 echo  "" >> configure.in_tmp1
155 echo "AC_OUTPUT([ \\" >> configure.in_tmp1
156
157 #
158 # List of .in files in the adm/unix directory
159 # These files MUST be on top of AC_OUTPUT list so we
160 # put them "manually"
161 #
162
163 echo "  ./salome_adm/unix/SALOMEconfig.h \\" >> configure.in_tmp1
164 echo "  ./salome_adm/unix/F77config.h \\" >> configure.in_tmp1
165 echo "  ./salome_adm/unix/sstream \\" >> configure.in_tmp1
166 echo "  ./salome_adm/unix/depend \\" >> configure.in_tmp1
167 echo "  ./adm_local/unix/make_omniorb:${ABS_CONF_DIR}/adm_local/unix/make_omniorb.in \\" >> configure.in_tmp1
168 echo "  ./salome_adm/unix/envScript \\" >> configure.in_tmp1
169 echo "  ./adm_local/unix/make_commence:${ABS_CONF_DIR}/adm_local/unix/make_commence.in \\" >> configure.in_tmp1
170 echo "  ./salome_adm/unix/make_conclude \\" >> configure.in_tmp1
171 echo "  ./salome_adm/unix/make_module \\" >> configure.in_tmp1
172
173 \rm -f configure.in_tmp2 configure.in_tmp3
174 touch configure.in_tmp2
175 find_in . configure.in_tmp2
176
177 sed -e '/^...salome_adm/d' configure.in_tmp2 >  configure.in_tmp3
178 sed -e '/^...adm_local.unix.make_omniorb/d' configure.in_tmp3 configure.in_tmp2
179 sed -e '/^...adm_local.unix.make_commence/d' configure.in_tmp2 > configure.in_tmp3
180 sed -e '/configure.in/d' configure.in_tmp3 >  configure.in_tmp2
181 sed -e 's/.in / /' configure.in_tmp2 >>  configure.in_tmp1
182 #sed '/^.salome_adm/d' configure.in_tmp2 >  configure.in_tmp3
183 #sed '/configure.in/d' configure.in_tmp3 >  configure.in_tmp2
184 #sed 's/.in / /' configure.in_tmp2 >> configure.in_tmp1
185
186 echo  "])" >> configure.in_tmp1
187
188 # delete the link created for AC_OUTPUT
189 echo "" >> configure.in_tmp1
190 #echo 'rm -f ${ROOT_SRCDIR}/salome_adm' >> configure.in_tmp1
191
192 \mv configure.in_tmp1 configure.in_new
193 \rm  -f configure.in_tmp2 configure.in_tmp3
194
195 ########################################################################
196 # Create new (or replace old) configure.in file
197 # Print a message if the file is write protected
198 #
199
200 echo
201 if test ! -f configure.in
202 then
203         echo -n "Creating new file 'configure.in' ... "
204         if \mv configure.in_new configure.in >& /dev/null
205         then
206                 echo "done"
207         else
208                 echo "error, check your file permissions"
209         fi
210 else
211         echo -n "Updating 'configure.in' file ... "
212         if ! \cp configure.in configure.in_old >& /dev/null
213         then
214                 echo
215                 echo
216                 echo "Can't backup previous configure.in"
217                 echo -n "Continue (you will not be able to revert) - (Y/N) ? "
218                 read R
219                 case "x$R" in
220                     xn*) exit;;
221                     xN*) exit;;
222                 esac
223                 echo
224                 echo -n "                                 "
225         fi
226         if \cp configure.in_new configure.in >& /dev/null
227         then
228                 echo "done"
229         else
230                 echo
231                 echo "error, can't update previous configure.in"
232         fi
233 fi
234
235 ########################################################################
236 # Use autoconf to rebuild the configure script
237 #
238
239 if test -f configure
240 then
241         echo -n "Updating 'configure' script ...  "
242 else
243         echo -n "Creating 'configure' script ...  "
244 fi
245
246 aclocal -I adm_local/unix/config_files -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
247                                        -I ${GUI_ROOT_DIR}/adm_local/unix/config_files \
248                                        -I ${MED_ROOT_DIR}/adm_local/unix/config_files \
249                                        -I ${GEOM_ROOT_DIR}/adm_local/unix/config_files \
250                                        -I ${SMESH_ROOT_DIR}/adm_local/unix/config_files 
251
252 if autoconf
253 then
254         echo "done"
255 else
256         echo "failed (check file permissions and/or user quotas ...)"
257 fi
258
259 cd ${ORIG_DIR}
260
261 echo