]> SALOME platform Git repositories - samples/component.git/blob - build_configure
Salome HOME
Join modifications from branch OCC_development_for_3_2_0a2
[samples/component.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 # $Header$
10 #
11
12 ORIG_DIR=`pwd`
13 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
14
15 ########################################################################
16 # Test if the KERNEL_ROOT_DIR is set correctly
17
18 if test ! -d "${KERNEL_ROOT_DIR}"; then
19     echo "failed : KERNEL_ROOT_DIR variable is not correct !"
20     exit
21 fi
22
23 # Test if the KERNEL_SRC is set correctly
24
25 #if test ! -d "${KERNEL_SRC}"; then
26 #    echo "failed : KERNEL_SRC variable is not correct !"
27 #    exit
28 #fi
29 ########################################################################
30 # Test if the GUI_ROOT_DIR is set correctly
31
32 if test ! -d "${GUI_ROOT_DIR}"; then
33     echo "failed : GUI_ROOT_DIR variable is not correct !"
34     exit
35 fi
36
37 ########################################################################
38 # Test if the MED_ROOT_DIR is set correctly
39
40 if test ! -d "${MED_ROOT_DIR}"; then
41     echo "failed : MED_ROOT_DIR variable is not correct !"
42     exit
43 fi
44
45 ########################################################################
46 # find_in - utility function
47 #
48 # usage :  
49 #    find_in directory filename 
50 #
51 # Finds files following the *.in pattern, recursively in the
52 # directory (first argument).
53 # Results are appended into the file (second argument)
54 #
55 # Difference from the standard unix find is that files are tested
56 # before directories
57
58
59 find_in()
60 {
61   local i
62   local f=$2
63
64 # if the first argument is not a directory, returns
65
66   if [ ! -d "$1" ] ; then 
67      return 
68   fi
69
70 # dont look in the CVS directories
71
72   case $1 in
73     */CVS) return ;;
74     */adm_local/*) return ;;
75     *) ;;
76   esac
77
78 # for each regular file contained in the directory
79 # test if it's a .in file
80
81   for i in "$1"/*
82   do
83      if [ -f "$i" ] ; then
84        case $i in 
85          *.in) echo "   "$i" \\" >> $f;;
86          *) ;;
87         esac
88      fi
89   done
90
91 # for each subdirectory of the first argument, proceeds recursively
92
93   for i in "$1"/*
94   do
95      if [ -d "$i" ] ; then
96         find_in "$i" "$f"
97      fi
98   done
99 }
100
101
102 #######################################################################
103 # Generate list of .in files (Makefile.in, config.h.in, etc)
104 # appending it in file configure.in
105
106 cd ${CONF_DIR}
107 ABS_CONF_DIR=`pwd`
108
109 #
110 # Common part of the configure.in file
111 #
112 chmod u+w configure.in.base
113 if ! \cp -f configure.in.base configure.in_tmp1 
114 then
115         echo
116         echo "error : can't create files in" ${CONF_DIR}
117         echo "aborting ..."
118         chmod u-w configure.in.base 
119         exit
120 fi
121 chmod u-w configure.in.base 
122
123 if [ -e "${CONF_DIR}/salome_adm" ] ; then
124     \rm -f ${CONF_DIR}/salome_adm
125 fi
126
127 # make a link allowing AC_OUTPUT to find the salome_adm/.../*.in  files
128 echo "" >> configure.in_tmp1
129 echo 'ln -fs ${KERNEL_ROOT_DIR}/salome_adm ${ROOT_SRCDIR}/.' >> configure.in_tmp1
130
131 echo  "" >> configure.in_tmp1
132 echo "AC_OUTPUT([ \\" >> configure.in_tmp1
133
134 #
135 # List of .in files in the adm/unix directory
136 # These files MUST be on top of AC_OUTPUT list so we
137 # put them "manually"
138 #
139 # Attention, l'ordre d'entrée des fichiers doit être choisi avec
140 # précision
141 #
142 echo "  ./salome_adm/unix/SALOMEconfig.h \\" >> configure.in_tmp1
143 echo "  ./salome_adm/unix/F77config.h \\" >> configure.in_tmp1
144 echo "  ./salome_adm/unix/sstream \\" >> configure.in_tmp1
145
146 echo "  ./salome_adm/unix/depend \\" >> configure.in_tmp1
147 echo "  ./adm_local/unix/make_omniorb \\" >> configure.in_tmp1
148 echo "  ./salome_adm/unix/envScript \\" >> configure.in_tmp1
149 echo "  ./salome_adm/unix/make_module \\" >> configure.in_tmp1
150
151 # _CS_gbo Pour assurer ls construction correct de la chaîne de
152 # dépendance, il apparaît nécessaire de surcharger le make_conclude
153 # (resp. make_commence) pardéfaut, c'est à dire le make_conclude de
154 # salome_adm, par le make_conclude (resp. make_commence) du module,
155 # c'est à dire le make_conclude (resp. make_commence) du répertoire
156 # adm_local
157 echo "  ./adm_local/unix/make_commence \\" >> configure.in_tmp1
158 echo "  ./adm_local/unix/make_conclude \\" >> configure.in_tmp1
159
160 \rm -f configure.in_tmp2 configure.in_tmp3
161 touch configure.in_tmp2
162
163 find_in . configure.in_tmp2
164
165 # _CS_gbo_100204 Mise à jour du filtre pour prise en compte des
166 # restrictions imposées par les versions récente de autoconf.
167     sed -e '/^...salome_adm/d' \
168         -e '/configure.in/d'      \
169         -e 's/.in / /' configure.in_tmp2 >> configure.in_tmp1
170
171 echo  "])" >> configure.in_tmp1
172
173 # delete the link created for AC_OUTPUT
174 echo "" >> configure.in_tmp1
175 #echo 'rm -f ${ROOT_SRCDIR}/salome_adm' >> configure.in_tmp1
176 \mv configure.in_tmp1 configure.in_new
177 \rm  -f configure.in_tmp2 configure.in_tmp3
178
179
180 ########################################################################
181 # Create new (or replace old) configure.in file
182 # Print a message if the file is write protected
183 #
184
185 echo
186 if test ! -f configure.in
187 then
188         echo -n "Creating new file 'configure.in' ... "
189         if \mv configure.in_new configure.in >& /dev/null
190         then
191                 echo "done"
192         else
193                 echo "error, check your file permissions"
194         fi
195 else
196         echo -n "Updating 'configure.in' file ... "
197         if ! \cp configure.in configure.in_old >& /dev/null
198         then
199                 echo
200                 echo
201                 echo "Can't backup previous configure.in"
202                 echo -n "Continue (you will not be able to revert) - (Y/N) ? "
203                 read R
204                 case "x$R" in
205                     xn*) exit;;
206                     xN*) exit;;
207                 esac
208                 echo
209                 echo -n "                                 "
210         fi
211         if \cp configure.in_new configure.in >& /dev/null
212         then
213                 echo "done"
214         else
215                 echo
216                 echo "error, can't update previous configure.in"
217         fi
218 fi
219
220 ########################################################################
221 # Use autoconf to rebuild the configure script
222 #
223
224 if test -f configure
225 then
226         echo -n "Updating 'configure' script ...  "
227 else
228         echo -n "Creating 'configure' script ...  "
229 fi
230
231 aclocal -I adm_local/unix/config_files -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
232                                        -I ${GUI_ROOT_DIR}/adm_local/unix/config_files \
233                                        -I ${MED_ROOT_DIR}/adm_local/unix/config_files
234 if autoconf
235 then
236         echo "done"
237 else
238         echo "failed (check file permissions and/or user quotas ...)"
239 fi
240
241 cd ${ORIG_DIR}
242
243 echo