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