gramps/configure.in

266 lines
6.0 KiB
Plaintext
Raw Normal View History

dnl $Id$
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_PREREQ(2.57)
AC_INIT(gramps, 2.1.0, [gramps-bugs@lists.sourceforge.net])
AC_CONFIG_SRCDIR(configure.in)
AM_INIT_AUTOMAKE(1.6.3)
2006-03-05 10:01:24 +05:30
2006-03-04 21:56:31 +05:30
RELEASE=0.SVN$(svnversion -n .)
2005-05-24 18:38:06 +05:30
dnl RELEASE=1
2002-10-20 19:55:16 +05:30
VERSIONSTRING=$VERSION
if test x"$RELEASE" != "x"
then
VERSIONSTRING="$VERSION-$RELEASE"
fi
dnl put the ACLOCAL flags in the Makefile
ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
AC_PROG_INTLTOOL
dnl Checking for gconftool-2
AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
if test "x$GCONFTOOL" = xno; then
AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf])
fi
AM_GCONF2_REPLACEMENT
AM_SHARED_MIME
AM_PACKAGER
2002-10-20 19:55:16 +05:30
AC_SUBST(RELEASE)
AC_SUBST(VERSIONSTRING)
AC_PATH_PROG(MSGFMT, msgfmt,no)
if test x$MSGFMT = xno; then
AC_MSG_ERROR(Couldn't find msgfmt program. Please install the GNU gettext package.)
fi
AC_PATH_PROG(MSGCONV, msgconv,no)
if test x$MSGCONV = xno; then
AC_MSG_ERROR(Couldn't find msgconv program. Please install the GNU gettext package.)
fi
AC_PATH_PROG(ICONV, iconv,no)
if test x$ICONV = xno; then
AC_MSG_ERROR(Couldn't find iconv program.)
fi
2002-10-20 19:55:16 +05:30
dnl Add the languages which your application supports here.
2006-03-16 07:25:39 +05:30
ALL_LINGUAS="hu zh_CN cs da de es fr it nb nl no pl pt_BR ro ru sv eo fi lt sk"
GETTEXT_PACKAGE=gramps
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Define to the Gettext package name.])
AM_GLIB_GNU_GETTEXT
2002-10-20 19:55:16 +05:30
dnl Checks for programs.
2005-02-22 09:25:34 +05:30
dnl We first only check for python >= 2.3
2002-10-20 19:55:16 +05:30
2005-02-22 09:25:34 +05:30
AM_PATH_PYTHON(2.3)
2002-10-20 19:55:16 +05:30
AC_PATH_PROG(BINSH, sh)
pygtk_require="
try:
import pygtk
pygtk.require('2.0')
except ImportError:
pass
def out(str):
f = open('conftest.out', 'w')
f.write(str)
f.close()
"
AC_MSG_CHECKING(Python bindings for gtk2.4 (pygtk2>=2.3.4))
cat > conftest.py <<EOF
$pygtk_require
try:
import gobject
version = gobject.pygtk_version
if version >= (2,3,4):
out("YES")
else:
out("No")
except ImportError:
out("No")
2004-08-19 18:54:17 +05:30
except AttributeError:
out("No")
EOF
$PYTHON conftest.py
has_pygtk=`cat conftest.out`
rm -f conftest.out conftest.py
if test YES != "$has_pygtk"
then
AC_MSG_ERROR([
**** The python bindings for gtk 2.4 (pygtk2>=2.3.4) could not be found.])
fi
AC_MSG_RESULT(ok)
2002-10-20 19:55:16 +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:
import gnome
# Do not import gnome.ui, this can kill python if the
# display cannot be opened. Just search it.
import imp
imp.find_module('gnome/ui')
out("YES")
2002-10-20 19:55:16 +05:30
except ImportError:
out("NO")
2002-10-20 19:55:16 +05:30
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
if test YES != "$has_pygnome"
2002-10-20 19:55:16 +05:30
then
AC_MSG_ERROR([
**** 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
out("YES")
except ImportError:
import gnome.gconf
out("YES")
2002-10-20 19:55:16 +05:30
except ImportError:
out("NO")
2002-10-20 19:55:16 +05:30
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
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)
AC_MSG_CHECKING(Python bindings for gnome vfs)
cat > conftest.py <<EOF
$pygtk_require
try:
# Do not import gnome.canvas, this can raise a RuntimeError if the
# display cannot be opened. Just search it.
import imp
imp.find_module('gnome/vfs')
out("YES")
except ImportError:
out("NO")
EOF
$PYTHON conftest.py
has_vfs=`cat conftest.out`
rm -f conftest.out conftest.py
if test YES != "$has_vfs"
then
AC_MSG_ERROR([
**** The python bindings for GNOME VFS (gnome-python2-vfs) could not be found.])
fi
AC_MSG_RESULT(ok)
AC_MSG_CHECKING(Python bindings 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:
# Do not import gtk.glade, this can raise a RuntimeError if the
# display cannot be opened. Just search it.
import imp
imp.find_module('gtk/glade')
out("YES")
2002-10-20 19:55:16 +05:30
except ImportError:
out("NO")
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
if test YES != "$has_pygtk"
2002-10-20 19:55:16 +05:30
then
AC_MSG_ERROR([
**** The python bindings for glade (pygtk2-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.
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(GNOMEHELP)
2003-03-31 09:21:01 +05:30
AC_SUBST(GPREFIX)
2002-10-20 19:55:16 +05:30
2006-03-17 00:32:45 +05:30
AC_CONFIG_FILES([
2006-03-17 06:15:46 +05:30
m4/Makefile
2006-03-17 00:32:45 +05:30
po/Makefile.in
2002-10-20 19:55:16 +05:30
Makefile
src/Makefile
src/RelLib/Makefile
2006-03-04 05:18:11 +05:30
src/Config/Makefile
src/Mime/Makefile
2006-01-20 22:09:58 +05:30
src/ObjectSelector/Makefile
src/GrampsLogger/Makefile
src/TreeViews/Makefile
src/GrampsDb/Makefile
2002-10-20 19:55:16 +05:30
src/docgen/Makefile
2006-03-04 12:04:48 +05:30
src/Models/Makefile
src/Editors/Makefile
2006-03-04 21:07:04 +05:30
src/DataViews/Makefile
src/PluginUtils/Makefile
2002-10-20 19:55:16 +05:30
src/plugins/Makefile
2006-03-08 06:39:17 +05:30
src/DateHandler/Makefile
2002-10-20 19:55:16 +05:30
src/data/Makefile
2006-03-05 04:55:22 +05:30
src/glade/Makefile
2006-03-04 05:18:11 +05:30
src/images/Makefile
2002-10-20 19:55:16 +05:30
src/data/templates/Makefile
doc/Makefile
doc/man/Makefile
doc/man/fr/Makefile
2002-10-20 19:55:16 +05:30
doc/gramps-manual/Makefile
doc/gramps-manual/C/Makefile
doc/gramps-manual/fr/Makefile
2003-03-31 09:21:01 +05:30
example/Makefile
example/gramps/Makefile
])
AC_OUTPUT([
src/const.py
2002-10-20 19:55:16 +05:30
gramps.spec
gramps.sh
])