Salome HOME
Merge branch V7_3_1_BR
[modules/yacs.git] / src / wrappergen / src / HXX2SALOME_GENERIC_CLASS_NAME_SRC / build_configure
1 #! /bin/sh
2 # Copyright (C) 2006-2014  CEA/DEN, EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 # --
22 #
23 PROJECT="HXX2SALOME_GENERIC_CLASS_NAMEComponent"
24
25 # --
26 # set VERSION from CVS_TAG_NAME
27
28 CVS_TAG_NAME='$Name$'
29 VERSION=${CVS_TAG_NAME}
30 VERSION=`echo ${VERSION/'$Name:'/}`
31 VERSION=`echo ${VERSION/'$'/}`
32 if test X$VERSION = X ; then
33     VERSION=`date +"%F"`   # -%H-%M
34 else
35     VERSION=`echo $VERSION | sed -e "s/V_//g"`
36     VERSION=`echo $VERSION | sed -e "s/_/./g"`
37 fi
38
39 # --
40 ORIG_DIR=`pwd`
41 run() {
42     local logfile=$ORIG_DIR/build_configure.log
43     printf "%-50s" "$1 ... "
44     echo $* > $logfile
45     eval $* >> $logfile 2>&1
46     if test $? != 0 ; then
47         echo "[FAILED]"
48         echo "see file build_configure.log ..."
49         exit 1
50     fi
51     echo "[  OK  ]"
52 }
53
54 # --
55 # -- goto build_configure dir
56 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
57 cd ${CONF_DIR}
58 CONF_DIR=`pwd`
59
60 # --
61 # -- list all Makefile.am in Makefile.am.list
62 ./rfind . Makefile.am > Makefile.am.list
63
64 # --
65 # -- configure.in construction
66 rm -f configure.in
67 touch configure.in
68 echo "AC_INIT($PROJECT, $VERSION)" >> configure.in
69 echo "RELEASE=$VERSION" >> configure.in
70 echo "PROJECT=$PROJECT" >> configure.in
71 sed -e "s?\${KERNEL_ROOT_DIR}?${KERNEL_ROOT_DIR}?" configure.in.base >> configure.in
72 echo "AC_OUTPUT([ \\" >> configure.in
73 sed -e 's,\.am, \\,' -e 's,\.\/,,' Makefile.am.list >> configure.in
74 echo "  adm_local/unix/SALOMEconfig.h \\" >> configure.in
75 echo  "])" >> configure.in
76
77 # --
78 run "libtoolize"
79 run "aclocal" "-I ${CONF_DIR}/adm_local/unix/config_files" "--verbose >& x" 
80 run "autoconf"
81 run "automake" "--add-missing" "--copy"