Salome HOME
mergefrom branch BR_V511_PR tag mergeto_trunk_03feb09
[modules/yacs.git] / src / wrappergen / src / HXX2SALOME_GENERIC_CLASS_NAME_SRC / build_configure
1 #! /bin/sh
2 #  Copyright (C) 2006-2008  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.
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 PROJECT="HXX2SALOME_GENERIC_CLASS_NAMEComponent"
23
24 # --
25 # set VERSION from CVS_TAG_NAME
26
27 CVS_TAG_NAME='$Name$'
28 VERSION=${CVS_TAG_NAME}
29 VERSION=`echo ${VERSION/'$Name:'/}`
30 VERSION=`echo ${VERSION/'$'/}`
31 if test X$VERSION = X ; then
32     VERSION=`date +"%F"`   # -%H-%M
33 else
34     VERSION=`echo $VERSION | sed -e "s/V_//g"`
35     VERSION=`echo $VERSION | sed -e "s/_/./g"`
36 fi
37
38 # --
39 ORIG_DIR=`pwd`
40 run() {
41     local logfile=$ORIG_DIR/build_configure.log
42     printf "%-50s" "$1 ... "
43     echo $* > $logfile
44     eval $* >> $logfile 2>&1
45     if test $? != 0 ; then
46         echo "[FAILED]"
47         echo "see file build_configure.log ..."
48         exit 1
49     fi
50     echo "[  OK  ]"
51 }
52
53 # --
54 # -- goto build_configure dir
55 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
56 cd ${CONF_DIR}
57 CONF_DIR=`pwd`
58
59 # --
60 # -- list all Makefile.am in Makefile.am.list
61 ./rfind . Makefile.am > Makefile.am.list
62
63 # --
64 # -- configure.in construction
65 rm -f configure.in
66 touch configure.in
67 echo "AC_INIT($PROJECT, $VERSION)" >> configure.in
68 echo "RELEASE=$VERSION" >> configure.in
69 echo "PROJECT=$PROJECT" >> configure.in
70 sed -e "s?\${KERNEL_ROOT_DIR}?${KERNEL_ROOT_DIR}?" configure.in.base >> configure.in
71 echo "AC_OUTPUT([ \\" >> configure.in
72 sed -e 's,\.am, \\,' -e 's,\.\/,,' Makefile.am.list >> configure.in
73 echo "  adm_local/unix/SALOMEconfig.h \\" >> configure.in
74 echo  "])" >> configure.in
75
76 # --
77 run "libtoolize"
78 run "aclocal" "-I ${CONF_DIR}/adm_local/unix/config_files" "--verbose >& x" 
79 run "autoconf"
80 run "automake" "--add-missing" "--copy"