~ubuntu-branches/ubuntu/raring/nautilus-sendto-universe/raring

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Onkar Shinde
  • Date: 2009-07-30 23:31:20 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090730233120-ut3baoo6lde6q9gk
Tags: 1.1.6-0ubuntu1
* New upstream release. (LP: #377192)
* debian/control
  - Remove libglade2-dev build dependency.
  - Bump version of libgtk2.0-dev build dependency to 2.12.
  - Remove empathy related build dependencies.
  - Update description to remove empathy references.
* debian/nautilus-sendto-universe.install
  - Remove empathy plugin.
* debian/patches/10_fix_empathy_2.26.patch
  - Remove. Not needed anymore.
* debian/README.Debian.
  - Update to remove empathy references.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AC_PREREQ(2.52)
2
2
 
3
 
AC_INIT(nautilus-sendto, 1.1.2, http://www.gnome.org)
 
3
AC_INIT(nautilus-sendto, 1.1.6, http://www.gnome.org)
4
4
AM_CONFIG_HEADER(config.h)
5
5
 
6
6
AM_INIT_AUTOMAKE([1.9 dist-bzip2 no-dist-gzip check-news])
24
24
dnl --------------------------------------------------
25
25
 
26
26
GLIB_REQUIRED=2.6.0
27
 
GTK_REQUIRED=2.4.0
28
 
GLADE_REQUIRED=2.5.1
 
27
GTK_REQUIRED=2.12
29
28
EBOOK_REQUIRED=1.5.3
30
29
GCONF_REQUIRED=2.13.0
31
30
GAIM_REQUIRED=1.5.0
34
33
DBUS_REQUIRED=1.0
35
34
DBUS_GLIB_REQUIRED=0.60
36
35
GUPNP_AV_REQUIRED=0.2.1
37
 
EMPATHY_REQUIRED=2.23.91
38
 
EMPATHY_GTK_REQUIRED=2.25.2
 
36
EMPATHY_REQUIRED=2.27.3
 
37
EMPATHY_GTK_REQUIRED=2.27.3
39
38
 
40
39
AC_SUBST(GLIB_REQUIRED)
41
40
AC_SUBST(GTK_REQUIRED)
42
 
AC_SUBST(GLADE_REQUIRED)
43
41
AC_SUBST(GCONF_REQUIRED)
44
42
AC_SUBST(EBOOK_REQUIRED)
45
43
AC_SUBST(GAIM_REQUIRED)
55
53
         glib-2.0 >= $GLIB_REQUIRED                \
56
54
         gmodule-2.0 >= $GLIB_REQUIRED            \
57
55
         gtk+-2.0    >= $GTK_REQUIRED             \
58
 
         libglade-2.0 >= $GLADE_REQUIRED            \
59
56
         gconf-2.0 >= $GCONF_REQUIRED)
60
57
AC_SUBST(NAUTILUS_SENDTO_CFLAGS)
61
58
AC_SUBST(NAUTILUS_SENDTO_LIBS)
72
69
 
73
70
dnl Get details about evolution
74
71
 
75
 
PKG_CHECK_MODULES(EVOLUTION, evolution-plugin libglade-2.0,
 
72
PKG_CHECK_MODULES(EVOLUTION, evolution-plugin < 2.27.1,
76
73
                  enable_evo=yes, enable_evo=no)
77
74
AM_CONDITIONAL(HAVE_EVOLUTION, test "x$enable_evo" = "xyes")
78
75
 
86
83
AC_SUBST_FILE(EVO_PLUGIN_RULE)
87
84
 
88
85
# The full list of plugins
89
 
allowed_plugins="bluetooth empathy evolution gaim gajim nautilus-burn pidgin removable-devices upnp"
 
86
allowed_plugins="bluetooth empathy evolution gajim nautilus-burn pidgin removable-devices upnp"
90
87
 
91
88
plugin_error_or_ignore()
92
89
{
166
163
                                CPPFLAGS="$saved_CPPFLAGS"
167
164
                        fi
168
165
                ;;
169
 
                gaim)
170
 
                        PKG_CHECK_MODULES(GAIM, gaim >= $GAIM_REQUIRED,
171
 
                                          [
172
 
                                           GAIM_LIBDIR=`pkg-config --variable=libdir gaim`
173
 
                                           GAIM_DATADIR=`pkg-config --variable=datadir gaim`
174
 
                                           AC_SUBST(GAIM_LIBDIR)
175
 
                                           AC_SUBST(GAIM_DATADIR)
176
 
                                           enable_gaim=yes
177
 
                                           ],
178
 
                                           [
179
 
                                            enable_gaim=no
180
 
                                            ]
181
 
                                           )
182
 
                        if test "${enable_gaim}" != "yes" ; then
183
 
                                plugin_error_or_ignore "you need gaim to build the gaim plugin"
184
 
                                add_plugin="0"
185
 
                        fi
186
 
                ;;
187
166
                gajim)
188
167
                        AC_ARG_WITH(gajim,
189
168
                                    [AS_HELP_STRING(--with-gajim,[Path to Gajim install prefix])],
276
255
AC_SUBST([ALL_PLUGINS])
277
256
AC_SUBST([PLUGINS])
278
257
 
279
 
dnl For the gaim and pidgin plugins
280
 
AM_CONDITIONAL(HAVE_GAIM, test "x$enable_gaim" = "xyes")
 
258
dnl For the pidgin plugin
281
259
AM_CONDITIONAL(HAVE_PIDGIN, test "x$enable_pidgin" = "xyes")
282
260
 
283
261
dnl For the GIO based plugins
308
286
src/plugins/bluetooth/Makefile
309
287
src/plugins/empathy/Makefile
310
288
src/plugins/evolution/Makefile
311
 
src/plugins/gaim/Makefile
312
289
src/plugins/gajim/Makefile
313
290
src/plugins/nautilus-burn/Makefile
314
291
src/plugins/pidgin/Makefile
315
292
src/plugins/removable-devices/Makefile
316
293
src/plugins/upnp/Makefile
317
294
evolution/Makefile
318
 
gaim_plugin/Makefile
319
295
pidgin_plugin/Makefile
320
296
po/Makefile.in
321
297
])
341
317
fi
342
318
 
343
319
if test "x$enable_evo" = "xyes"; then
344
 
        AC_MSG_NOTICE([** Evolution send-to plugin enabled])
 
320
        AC_MSG_NOTICE([** Evolution send-to plugin ( < 2.27.1) enabled])
345
321
else
346
 
        AC_MSG_NOTICE([   Evolution send-to plugin disabled])
 
322
        AC_MSG_NOTICE([   Evolution send-to plugin ( < 2.27.1) disabled])
347
323
fi
348
324
 
349
325
echo "                                                       "