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