gramps/configure.in

232 lines
5.1 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.3, [gramps-bugs@lists.sourceforge.net])
AC_CONFIG_SRCDIR(configure.in)
AM_INIT_AUTOMAKE(1.6.3)
2006-03-05 10:01:24 +05:30
AC_CONFIG_MACRO_DIR([m4])
GNOME_DOC_INIT
RELEASE=0.SVN$(svnversion -n .)
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)
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(line):
f = open('conftest.out', 'w')
f.write(line)
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):
print_version = '.'.join([[str(i) for i in version]])
out(print_version)
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 NO = "$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($has_pygtk)
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("gnome.ui")
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 NO = "$has_pygnome"
2002-10-20 19:55:16 +05:30
then
AC_MSG_ERROR([
**** The python bindings for gnome 2.0 (gnome2-python) could not be found.])
2002-10-20 19:55:16 +05:30
fi
AC_MSG_RESULT($has_pygnome)
2002-10-20 19:55:16 +05:30
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("gconf")
except ImportError:
import gnome.gconf
out("gnome.gconf")
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 NO = "$has_gconf"
2002-10-20 19:55:16 +05:30
then
AC_MSG_ERROR([
**** The python bindings for gconf (gnome2-python-gconf) could not be found.])
2002-10-20 19:55:16 +05:30
fi
AC_MSG_RESULT($has_gconf)
2002-10-20 19:55:16 +05:30
AC_MSG_CHECKING(Python bindings for gnome vfs)
cat > conftest.py <<EOF
$pygtk_require
try:
# Do not import gnome.vfs, this can raise a RuntimeError if the
# display cannot be opened. Just search it.
import imp
imp.find_module('gnome/vfs')
out("gnome.vfs")
except ImportError:
imp.find_module('gnomevfs')
out("gnomevfs")
except:
out("NO")
EOF
$PYTHON conftest.py
has_vfs=`cat conftest.out`
rm -f conftest.out conftest.py
if test NO = "$has_vfs"
then
AC_MSG_ERROR([
**** The python bindings for GNOME VFS (gnome2-python-vfs) could not be found.])
fi
AC_MSG_RESULT($has_vfs)
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("gtk.glade")
2002-10-20 19:55:16 +05:30
except ImportError:
out("NO")
2002-10-20 19:55:16 +05:30
EOF
$PYTHON conftest.py
has_pyglade=`cat conftest.out`
2002-10-20 19:55:16 +05:30
rm -f conftest.out conftest.py
if test NO = "$has_pyglade"
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($has_pyglade)
2002-10-20 19:55:16 +05:30
2006-03-17 00:32:45 +05:30
AC_CONFIG_FILES([
po/Makefile.in
2006-03-18 06:06:16 +05:30
m4/Makefile
Makefile
gramps.spec
gramps.sh
src/const.py
2002-10-20 19:55:16 +05:30
src/Makefile
src/RelLib/Makefile
2006-03-04 05:18:11 +05:30
src/Config/Makefile
src/Mime/Makefile
src/DisplayTabs/Makefile
src/DisplayModels/Makefile
2006-01-20 22:09:58 +05:30
src/ObjectSelector/Makefile
src/Selectors/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
src/Filters/Makefile
src/Filters/Rules/Makefile
2006-05-03 12:10:02 +05:30
src/Filters/Rules/Person/Makefile
src/Filters/Rules/Family/Makefile
src/Filters/Rules/Event/Makefile
src/Filters/Rules/Source/Makefile
src/Filters/Rules/Place/Makefile
src/Filters/Rules/Media/Makefile
src/Filters/Rules/Repository/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
data/Makefile
data/man/Makefile
data/man/fr/Makefile
2003-03-31 09:21:01 +05:30
example/Makefile
example/gramps/Makefile
])
AC_OUTPUT