]> SALOME platform Git repositories - plugins/blsurfplugin.git/blob - build_configure
Salome HOME
249463d86dbe0028e9c974e8c03bb8aed8f98b95
[plugins/blsurfplugin.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 #
125 # Common part of the configure.in file
126 #
127 chmod u+w configure.in.base
128 if ! \cp -f configure.in.base configure.in_tmp1 
129 then
130         echo
131         echo "error : can't create files in" ${CONF_DIR}
132         echo "aborting ..."
133         chmod u-w configure.in.base 
134         exit
135 fi
136 chmod u-w configure.in.base 
137
138 if [ -e "${CONF_DIR}/salome_adm" ] ; then
139     \rm -f ${CONF_DIR}/salome_adm
140 fi
141
142 # make a link allowing AC_OUTPUT to find the salome_adm/.../*.in  files
143 echo "" >> configure.in_tmp1
144 echo 'ln -fs ${KERNEL_ROOT_DIR}/salome_adm ${ROOT_SRCDIR}/.' >> configure.in_tmp1
145
146 echo  "" >> configure.in_tmp1
147 echo "AC_OUTPUT([ \\" >> configure.in_tmp1
148
149 #
150 # List of .in files in the adm/unix directory
151 # These files MUST be on top of AC_OUTPUT list so we
152 # put them "manually"
153 #
154
155 echo "  ./salome_adm/unix/SALOMEconfig.h \\" >> configure.in_tmp1
156 echo "  ./salome_adm/unix/F77config.h \\" >> configure.in_tmp1
157 echo "  ./salome_adm/unix/sstream \\" >> configure.in_tmp1
158 echo "  ./salome_adm/unix/depend \\" >> configure.in_tmp1
159 echo "  ./adm_local/unix/make_omniorb:${ABS_CONF_DIR}/adm_local/unix/make_omniorb.in \\" >> configure.in_tmp1
160 echo "  ./salome_adm/unix/envScript \\" >> configure.in_tmp1
161 echo "  ./adm_local/unix/make_commence:${ABS_CONF_DIR}/adm_local/unix/make_commence.in \\" >> configure.in_tmp1
162 echo "  ./salome_adm/unix/make_conclude \\" >> configure.in_tmp1
163 echo "  ./salome_adm/unix/make_module \\" >> configure.in_tmp1
164
165 \rm -f configure.in_tmp2 configure.in_tmp3
166 touch configure.in_tmp2
167 find_in . configure.in_tmp2
168 sed -e '/^...salome_adm/d' configure.in_tmp2 >  configure.in_tmp3
169 sed -e '/^...adm_local.unix.make_omniorb/d' configure.in_tmp3 configure.in_tmp2
170 sed -e '/^...adm_local.unix.make_commence/d' configure.in_tmp2 > configure.in_tmp3
171 sed -e '/configure.in/d' configure.in_tmp3 >  configure.in_tmp2
172 sed -e 's/.in / /' configure.in_tmp2 >>  configure.in_tmp1
173 #sed '/^.salome_adm/d' configure.in_tmp2 >  configure.in_tmp3
174 #sed '/configure.in/d' configure.in_tmp3 >  configure.in_tmp2
175 #sed 's/.in / /' configure.in_tmp2 >> configure.in_tmp1
176
177 echo  "])" >> configure.in_tmp1
178
179 # delete the link created for AC_OUTPUT
180 echo "" >> configure.in_tmp1
181 #echo 'rm -f ${ROOT_SRCDIR}/salome_adm' >> configure.in_tmp1
182 \mv configure.in_tmp1 configure.in_new
183 \rm  -f configure.in_tmp2 configure.in_tmp3
184
185
186 ########################################################################
187 # Create new (or replace old) configure.in file
188 # Print a message if the file is write protected
189 #
190
191 echo
192 if test ! -f configure.in
193 then
194         echo -n "Creating new file 'configure.in' ... "
195         if \mv configure.in_new configure.in >& /dev/null
196         then
197                 echo "done"
198         else
199                 echo "error, check your file permissions"
200         fi
201 else
202         echo -n "Updating 'configure.in' file ... "
203         if ! \cp configure.in configure.in_old >& /dev/null
204         then
205                 echo
206                 echo
207                 echo "Can't backup previous configure.in"
208                 echo -n "Continue (you will not be able to revert) - (Y/N) ? "
209                 read R
210                 case "x$R" in
211                     xn*) exit;;
212                     xN*) exit;;
213                 esac
214                 echo
215                 echo -n "                                 "
216         fi
217         if \cp configure.in_new configure.in >& /dev/null
218         then
219                 echo "done"
220         else
221                 echo
222                 echo "error, can't update previous configure.in"
223         fi
224 fi
225
226 ########################################################################
227 # Use autoconf to rebuild the configure script
228 #
229
230 if test -f configure
231 then
232         echo -n "Updating 'configure' script ...  "
233 else
234         echo -n "Creating 'configure' script ...  "
235 fi
236
237 aclocal -I adm_local/unix/config_files -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
238                                        -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files/DEPRECATED \
239                                        -I ${GUI_ROOT_DIR}/adm_local/unix/config_files \
240                                        -I ${MED_ROOT_DIR}/adm_local/unix/config_files \
241                                        -I ${GEOM_ROOT_DIR}/adm_local/unix/config_files \
242                                        -I ${SMESH_ROOT_DIR}/adm_local/unix/config_files 
243 if autoconf
244 then
245         echo "done"
246 else
247         echo "failed (check file permissions and/or user quotas ...)"
248 fi
249
250 cd ${ORIG_DIR}
251
252 echo