Salome HOME
Merge from BR_PARAVIS_DEV 29Dec09
[modules/paravis.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 : 
8 # Modified by : Alexander BORODIN (OCN) - autotools usage
9 # Date : 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
24 ########################################################################
25 # Test if the GUI_ROOT_DIR is set correctly
26
27 if test ! -d "${GUI_ROOT_DIR}"; then
28     echo "failed : GUI_ROOT_DIR variable is not correct !"
29     exit
30 fi
31
32 cd ${CONF_DIR}
33 ABS_CONF_DIR=`pwd`
34
35 mkdir -p salome_adm/unix/config_files
36 #cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files/* salome_adm/unix/config_files
37 #cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/pythonbe.py salome_adm/unix
38
39 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/SALOMEconfig.h.in salome_adm/unix
40
41 #cp -f ${GUI_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
42
43 # remove KERNEL deprecated configure files
44 #for deprecated in ac_cc_warnings.m4 ac_cxx_partial_specialization.m4 \
45 #  check_mico.m4 config.guess ltmain.sh ac_cxx_bool.m4 ltconfig ac_cxx_typename.m4 \
46 #    check_pthreads.m4 config.sub libtool.m4 ac_cxx_mutable.m4 missing
47 #    do
48 #      rm -f salome_adm/unix/config_files/${deprecated}
49 #      done
50
51 if test ! -f "${PVHOME}/include/paraview-${PVVERSION}/vtkSMProxyManager.h"; then
52     echo "failed : PVHOME variable is not correct !"
53     exit
54 fi
55
56 `pvpython getwrapclasses.py`
57
58 #file hints contain the size of returned arrays
59 cp -f ${PVHOME}/lib/paraview-${PVVERSION}/hints idl/hints
60 if [ -f idl/hints_paravis ]; then
61     cat idl/hints_paravis >> idl/hints
62 fi
63
64 # ____________________________________________________________________
65 # aclocal creates the aclocal.m4 file from the standard macro and the
66 # custom macro embedded in the directory salome_adm/unix/config_files
67 # and KERNEL config_files directory.
68 # output:
69 #   aclocal.m4
70 #   autom4te.cache (directory)
71 echo "====================================================== aclocal"
72
73 aclocal -I adm_local/unix/config_files \
74         -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
75         -I ${GUI_ROOT_DIR}/adm_local/unix/config_files || exit 1
76
77 # ____________________________________________________________________
78 # libtoolize creates some configuration files (ltmain.sh,
79 # config.guess and config.sub). It only depends on the libtool
80 # version. The files are created in the directory specified with the
81 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
82 # output:
83 #   salome_adm/unix/config_files/config.guess
84 #   salome_adm/unix/config_files/config.sub
85 #   salome_adm/unix/config_files/ltmain.sh
86 #echo "====================================================== libtoolize"
87
88 libtoolize --force --copy --automake || exit 1
89
90 # ____________________________________________________________________
91 # autoconf creates the configure script from the file configure.ac (or
92 # configure.in if configure.ac doesn't exist)
93 # output:
94 #   configure
95 echo "====================================================== autoconf"
96
97 autoconf
98
99 # ____________________________________________________________________
100 # automake creates some scripts used in building process
101 # (install-sh, missing, ...). It only depends on the automake
102 # version. The files are created in the directory specified with the
103 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
104 # creates the Makefile.in files from the Makefile.am files.
105 # output:
106 #   salome_adm/unix/config_files/compile
107 #   salome_adm/unix/config_files/depcomp
108 #   salome_adm/unix/config_files/install-sh
109 #   salome_adm/unix/config_files/missing
110 #   salome_adm/unix/config_files/py-compile
111 #   Makefile.in (from Makefile.am)
112 echo "====================================================== automake"
113
114 automake --copy --gnu --add-missing