Salome HOME
5da66c63ccf2754f65f711b0b6e2a98d10bad3d5
[samples/pyhello.git] / adm_local / unix / config_files / check_PYHELLO.m4
1 dnl  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 dnl
3 dnl  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 dnl  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 dnl
6 dnl  This library is free software; you can redistribute it and/or
7 dnl  modify it under the terms of the GNU Lesser General Public
8 dnl  License as published by the Free Software Foundation; either
9 dnl  version 2.1 of the License.
10 dnl
11 dnl  This library is distributed in the hope that it will be useful,
12 dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 dnl  Lesser General Public License for more details.
15 dnl
16 dnl  You should have received a copy of the GNU Lesser General Public
17 dnl  License along with this library; if not, write to the Free Software
18 dnl  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 dnl
20 dnl  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 dnl
22 #  Check availability of PYHELLO binary distribution
23 #
24 #  Author : Marc Tajchman (CEA, 2002)
25 #------------------------------------------------------------
26
27 AC_DEFUN([CHECK_PYHELLO],[
28
29 AC_CHECKING(for PyHello)
30
31 PyHello_ok=no
32
33 AC_ARG_WITH(pyHello,
34             --with-py-hello=DIR root directory path of PYHELLO installation,
35             PYHELLO_DIR="$withval",PYHELLO_DIR="")
36
37 if test "x$PYHELLO_DIR" = "x" ; then
38
39 # no --with-py-hello option used
40
41   if test "x$PYHELLO_ROOT_DIR" != "x" ; then
42
43     # PYHELLO_ROOT_DIR environment variable defined
44     PYHELLO_DIR=$PYHELLO_ROOT_DIR
45
46   else
47
48     # search PyHello binaries in PATH variable
49     AC_PATH_PROG(TEMP, PYHELLOGUI.py)
50     if test "x$TEMP" != "x" ; then
51       PYHELLO_BIN_DIR=`dirname $TEMP`
52       PYHELLO_DIR=`dirname $PYHELLO_BIN_DIR`
53     fi
54
55   fi
56 #
57 fi
58
59 if test -f ${PYHELLO_DIR}/bin/salome/PYHELLOGUI.py  ; then
60   PyHello_ok=yes
61   AC_MSG_RESULT(Using PYHELLO distribution in ${PYHELLO_DIR})
62
63   if test "x$PYHELLO_ROOT_DIR" == "x" ; then
64     PYHELLO_ROOT_DIR=${PYHELLO_DIR}
65   fi
66   AC_SUBST(PYHELLO_ROOT_DIR)
67 else
68   AC_MSG_WARN("Cannot find compiled PYHELLO distribution")
69 fi
70   
71 AC_MSG_RESULT(for PYHELLO: $PyHello_ok)
72  
73 ])dnl
74