1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
AC_PREREQ(2.59)
AC_INIT(src/rmdSimple.py)
AM_INIT_AUTOMAKE(gtk-recordmydesktop, 0.3.5)
AS_AC_EXPAND(LIBDIR, $libdir)
AC_MSG_NOTICE(Storing library files in $LIBDIR)
AC_SUBST(PYGTK_REQ, 2.4)
#The following test is needed for the expansion bellow
if test "x$prefix" == "xNONE"; then
export prefix="/usr/local/"
else
echo "prefix set to $prefix"
fi
#this expansion is needed because in some cases the datadir expansion will
#not give an absolute path but one based on the $prefix env variable.
#This value gets directly in the rmdConfig.py file which will later fail
#if it has a value of ${prefix}/something. So it needs to know which was the prefix during
#installation. And that's why the above test is needed. In case no prefix is given
#we still have to insert the default to avoid a path of NONE/something. and NONE can't be
#replaced within the script since it is also a valid name for a directory.
#also,this behavior doesn't affect already existing dist tarballs and probably has to do with
#the environment that the autotools were used, to produce the tarballs
#(both cases were noticed with v1.7 of autowhatever, but on different environments)
#did you really read this? If you are a packager, you must be a very responsible one!Congrats!
AS_AC_EXPAND(PREFIX,$prefix)
AS_AC_EXPAND(DATADIR, "$datadir")
AC_MSG_NOTICE(Storing data files in $DATADIR)
AS_AC_EXPAND(SYSCONFDIR, $sysconfdir)
AC_MSG_NOTICE(Storing configuration files in $SYSCONFDIR)
AS_AC_EXPAND(LOCALSTATEDIR, $localstatedir)
AC_MSG_NOTICE(Using localstatedir $LOCALSTATEDIR)
dnl check for python
AM_PATH_PYTHON(2.3)
AS_AC_EXPAND(PYTHONDIR, $pythondir)
AC_MSG_NOTICE(Using pythondir $PYTHONDIR)
GETTEXT_PACKAGE=gtk-recordMyDesktop
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [The gettext package name])
AM_GLIB_GNU_GETTEXT
dnl check for pygtk
PKG_CHECK_MODULES(PYGTK, pygtk-2.0 >= $PYGTK_REQ,,AC_MSG_ERROR(You need pygtk >=2.4 and the appropriate development headers to proceed))
PYGTK_DIR="`$PKG_CONFIG --variable=pyexecdir pygtk-2.0`"
AC_SUBST(PYGTK_DIR)
AC_MSG_NOTICE(Using pygtk installed in $PYGTK_DIR)
PYGTK_VERSION="`$PKG_CONFIG --modversion pygtk-2.0`"
export PYTHONPATH=$PYGTK_DIR:$PYTHONPATH
PKG_CHECK_MODULES(GTK, gtk+-2.0, HAVE_GTK=yes, HAVE_GTK=no)
saved_PYTHONPATH=$PYTHONPATH
export PYTHONPATH=$PYGST_DIR:$PYTHONPATH
#dnl check for egg.trayicon from gnome-python-extras
#PKG_CHECK_MODULES(GNOME_PYTHON_EXTRAS, gnome-python-extras-2.0 >= 2.11.3,
# HAVE_EGGTRAYICON=yes, HAVE_EGGTRAYICON=no)
#if test "x$HAVE_EGGTRAYICON" = "xno"; then
# AC_MSG_ERROR(gnome-python-extras not found, please install >= 2.11.3)
#fi
AC_CONFIG_FILES([Makefile
src/Makefile
src/rmdConfig.py
src/gtk-recordMyDesktop
po/Makefile.in
m4/Makefile])
AC_OUTPUT
|