gramps/configure.in

287 lines
6.2 KiB
Plaintext
Raw Normal View History

2002-10-20 19:55:16 +05:30
dnl Process this file with autoconf to produce a configure script.
dnl May need to run automake && aclocal first
AC_INIT(src/gramps.py)
2003-05-30 06:13:38 +05:30
AM_INIT_AUTOMAKE(gramps, 0.9.2)
RELEASE=rc1
2002-10-20 19:55:16 +05:30
VERSIONSTRING=$VERSION
if test x"$RELEASE" != "x"
then
VERSIONSTRING="$VERSION-$RELEASE"
fi
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)
AC_SUBST(RELEASE)
AC_SUBST(VERSIONSTRING)
AC_PATH_PROG(MSGFMT, msgfmt)
AC_SUBST(MSGFMT)
2003-03-20 21:49:58 +05:30
LANGUAGES="cs da_DK de es fr it nl pl pt_BR ro ru sv"
2002-10-20 19:55:16 +05:30
AC_SUBST(LANGUAGES)
DISTLANGS=
POFILES=
MOFILES=
for lang in $LANGUAGES; do
POFILES="$POFILES $lang.po"
MOFILES="$MOFILES $lang.mo"
done
AC_SUBST(POFILES)
AC_SUBST(MOFILES)
dnl Checks for programs.
2002-11-08 09:40:31 +05:30
dnl We first only check for python >= 2.2
2002-10-20 19:55:16 +05:30
AM_PATH_PYTHON(2.2)
dnl override automatic python detection with our own place
pythondir=\${prefix}/share
pyexecdir=\${prefix}/share
pkgpythondir=\${prefix}/share/\${PACKAGE}
pkgpyexecdir=\${prefix}/share/\${PACKAGE}
AC_PATH_PROG(BINSH, sh)
AC_PATH_PROG(SWIG, swig)
2002-10-20 19:55:16 +05:30
if test "$PYTHON_VERSION" != "2.2"
then
AC_PATH_PROG(PYTHON22, python2.2)
else
PYTHON22=$PYTHON
fi
AC_PATH_PROG(ZIP, zip)
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AC_PROG_CC
AC_CHECK_HEADER(libintl.h)
AC_CHECK_LIB(c,textdomain,LIBS="",
[ AC_CHECK_LIB(intl,textdomain,
LIBS="-lintl",
AC_MSG_ERROR("Could not find internationalization libraries"))
])
dnl Check for programs
AC_CHECK_PROG(HAVE_PKG_CONFIG, pkg-config, "YES", "NO")
GNOMEINC=`pkg-config --cflags gnome-vfs-module-2.0`
GNOMELIB=`pkg-config --libs gnome-vfs-module-2.0`
2002-10-20 19:55:16 +05:30
pygtk_require="
try:
import pygtk
pygtk.require('2.0')
except ImportError:
pass
"
2002-10-20 19:55:16 +05:30
dnl Check if python bindings for gtk are installed
2002-11-08 09:40:31 +05:30
AC_MSG_CHECKING(Python bindings for gtk)
2002-10-20 19:55:16 +05:30
cat > conftest.py <<EOF
$pygtk_require
2002-10-20 19:55:16 +05:30
try:
2002-11-08 09:40:31 +05:30
import gobject
2002-10-20 19:55:16 +05:30
f = open("conftest.out", "w")
f.write("YES")
f.close()
except ImportError:
2002-11-08 09:40:31 +05:30
f = open("conftest.out", "w")
f.write("NO")
f.close()
2002-10-20 19:55:16 +05:30
EOF
$PYTHON conftest.py
2002-11-08 09:40:31 +05:30
has_pygtk=`cat conftest.out`
2002-10-20 19:55:16 +05:30
rm -f conftest.out conftest.py
2002-11-08 09:40:31 +05:30
if test "YES" != $has_pygtk
2002-10-20 19:55:16 +05:30
then
AC_MSG_ERROR([
2002-11-08 09:40:31 +05:30
**** The python bindings for gtk 2.0 (pygtk2) could not be found.])
2002-10-20 19:55:16 +05:30
fi
AC_MSG_RESULT(ok)
2002-11-08 09:40:31 +05:30
AC_MSG_CHECKING(Python bindings for GNOME)
2002-10-20 19:55:16 +05:30
cat > conftest.py <<EOF
$pygtk_require
2002-10-20 19:55:16 +05:30
try:
2002-11-08 09:40:31 +05:30
import gnome, gnome.ui
2002-10-20 19:55:16 +05:30
f = open("conftest.out", "w")
f.write("YES")
f.close()
except ImportError:
f = open("conftest.out", "w")
f.write("NO")
f.close()
EOF
$PYTHON conftest.py
2002-11-08 09:40:31 +05:30
has_pygnome=`cat conftest.out`
2002-10-20 19:55:16 +05:30
rm -f conftest.out conftest.py
2002-11-08 09:40:31 +05:30
if test "YES" != $has_pygnome
2002-10-20 19:55:16 +05:30
then
AC_MSG_ERROR([
2002-11-08 09:40:31 +05:30
**** The python bindings for GNOME 2.0 (gnome-python2) could not be found.])
2002-10-20 19:55:16 +05:30
fi
AC_MSG_RESULT(ok)
2002-11-08 09:40:31 +05:30
AC_MSG_CHECKING(Python bindings for gconf)
2002-10-20 19:55:16 +05:30
cat > conftest.py <<EOF
$pygtk_require
2002-10-20 19:55:16 +05:30
try:
2002-11-08 09:40:31 +05:30
import gconf
2002-10-20 19:55:16 +05:30
f = open("conftest.out", "w")
f.write("YES")
f.close()
except ImportError:
f = open("conftest.out", "w")
f.write("NO")
f.close()
EOF
$PYTHON conftest.py
2002-11-08 09:40:31 +05:30
has_gconf=`cat conftest.out`
2002-10-20 19:55:16 +05:30
rm -f conftest.out conftest.py
2002-11-08 09:40:31 +05:30
if test "YES" != $has_gconf
2002-10-20 19:55:16 +05:30
then
AC_MSG_ERROR([
2002-11-08 09:40:31 +05:30
**** The python bindings for gconf (gnome-python2-gconf) could not be found.])
2002-10-20 19:55:16 +05:30
fi
AC_MSG_RESULT(ok)
2002-11-08 09:40:31 +05:30
AC_MSG_CHECKING(Python bindings for GNOME canvas)
2002-10-20 19:55:16 +05:30
cat > conftest.py <<EOF
$pygtk_require
2002-10-20 19:55:16 +05:30
try:
2002-11-08 09:40:31 +05:30
import gnome.canvas
2002-10-20 19:55:16 +05:30
f = open("conftest.out", "w")
f.write("YES")
f.close()
except ImportError:
f = open("conftest.out", "w")
f.write("NO")
f.close()
EOF
$PYTHON conftest.py
2002-11-08 09:40:31 +05:30
has_canvas=`cat conftest.out`
2002-10-20 19:55:16 +05:30
rm -f conftest.out conftest.py
2002-11-08 09:40:31 +05:30
if test "YES" != $has_canvas
2002-10-20 19:55:16 +05:30
then
AC_MSG_ERROR([
2002-11-08 09:40:31 +05:30
**** The python bindings for GNOME canvas (gnome-python2-canvas) could not be found.])
2002-10-20 19:55:16 +05:30
fi
AC_MSG_RESULT(ok)
2002-11-08 09:40:31 +05:30
AC_MSG_CHECKING(Python bindin for glade)
2002-10-20 19:55:16 +05:30
cat > conftest.py <<EOF
$pygtk_require
2002-10-20 19:55:16 +05:30
try:
2002-11-08 09:40:31 +05:30
import gtk.glade
2002-10-20 19:55:16 +05:30
f = open("conftest.out", "w")
f.write("YES")
f.close()
except ImportError:
f = open("conftest.out", "w")
f.write("NO")
f.close()
EOF
$PYTHON conftest.py
2002-11-08 09:40:31 +05:30
has_pygtk=`cat conftest.out`
2002-10-20 19:55:16 +05:30
rm -f conftest.out conftest.py
2002-11-08 09:40:31 +05:30
if test "YES" != $has_pygtk
2002-10-20 19:55:16 +05:30
then
AC_MSG_ERROR([
2002-11-08 09:40:31 +05:30
**** The python bindings for glade (pytgk2-libglade) could not be found.])
2002-10-20 19:55:16 +05:30
fi
AC_MSG_RESULT(ok)
dnl Checks for libraries.
dnl Checks for header files.
AC_MSG_CHECKING(for headers required to compile python extensions)
if test "$PYTHON22" != ""; then
py_prefix=`$PYTHON22 -c "import sys; print sys.prefix"`
py_exec_prefix=`$PYTHON22 -c "import sys; print sys.exec_prefix"`
P22_INCLUDES="-I${py_prefix}/include/python2.2"
if test "$py_prefix" != "$py_exec_prefix"; then
P22_INCLUDES="$P22_INCLUDES -I${py_exec_prefix}/include/python2.2"
fi
if test -f "${py_exec_prefix}/include/python2.2/Python.h"
then
INTLLIBS="${INTLLIBS}intl22.so "
fi
fi
AC_MSG_RESULT(ok)
dnl ====================================
dnl = Begin tests for scrollkeeper
dnl ====================================
AC_PATH_PROG(SK_CONFIG,scrollkeeper-config,no)
if test x$SK_CONFIG = xno; then
AC_MSG_ERROR(Couldn't find scrollkeeper-config. Please install the scrollkeeper package: http://scrollkeeper.sourceforge.net)
2002-10-20 19:55:16 +05:30
fi
dnl ====================================
dnl = End tests for scrollkeeper
dnl ====================================
dnl ===================================
dnl Set localstatedir to /var/lib -- this is apparently not used
dnl by anything besides scrollkeeper in our setup
dnl ==================================
localstatedir=/var/lib
2002-10-20 19:55:16 +05:30
2003-03-31 09:21:01 +05:30
if test ${prefix} = "NONE" ; then
GPREFIX="/usr/local"
else
GPREFIX="${prefix}"
fi
dnl ======================================================
dnl == end of modern doc tests
dnl ======================================================
SCROLLKEEPER_BUILD_REQUIRED=0.3.5
AC_SUBST(SCROLLKEEPER_BUILD_REQUIRED)
2002-10-20 19:55:16 +05:30
AC_SUBST(BINSH)
AC_SUBST(SWIG)
2002-10-20 19:55:16 +05:30
AC_SUBST(PYTHON)
AC_SUBST(PYTHON_VERSION)
AC_SUBST(GNOMEHELP)
AC_SUBST(LIBS)
2003-03-31 09:21:01 +05:30
AC_SUBST(GPREFIX)
2002-10-20 19:55:16 +05:30
AC_SUBST(P15_INCLUDES)
AC_SUBST(P20_INCLUDES)
AC_SUBST(P21_INCLUDES)
AC_SUBST(P22_INCLUDES)
AC_SUBST(GNOMEINC)
AC_SUBST(GNOMELIB)
AC_SUBST(GPREF)
2002-10-20 19:55:16 +05:30
AC_SUBST(INTLLIBS)
AC_OUTPUT([
Makefile
src/Makefile
src/const.py
src/docgen/Makefile
src/filters/Makefile
src/plugins/Makefile
2003-01-09 10:11:08 +05:30
src/calendars/Makefile
2002-10-20 19:55:16 +05:30
src/data/Makefile
src/data/templates/Makefile
src/po/Makefile
doc/Makefile
doc/gramps-manual/Makefile
doc/gramps-manual/C/Makefile
2003-03-31 09:21:01 +05:30
example/Makefile
example/gramps/Makefile
2002-10-20 19:55:16 +05:30
gramps.spec
gramps.sh])