~noskcaj/ubuntu/utopic/eog-plugins/merge

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Michael Biebl, Josselin Mouette, Martin Pitt, Michael Biebl
  • Date: 2012-05-10 15:08:48 UTC
  • mfrom: (1.3.5)
  • Revision ID: package-import@ubuntu.com-20120510150848-e316o2pnsm7m16ep
Tags: 3.4.0-1
[ Josselin Mouette ]
* Replace python-gobject by python-gi.

[ Martin Pitt ]
* debian/control.in: Bump clutter and eog dependencies as per configure.ac.
* debian/copyright: Rewrite using copyright 1.0 format.
* debian/control.in: Bump to Standards-Version 3.9.3.
* debian/control.in: Add Enhances: eog (Closes: #653258, LP: #697406)

[ Michael Biebl ]
* New upstream release.
* Set pkg-gnome-maintainers@lists.alioth.debian.org as Maintainer.
* Add Build-Depends on gsettings-desktop-schemas-dev and a Depends on
  gsettings-desktop-schemas for the org.gnome.desktop.interface gsettings
  schema file used by the pythonconsole plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
EOG_MAJOR=3.0.0
4
4
EOG_PLUGINS_MAJOR=3.0.0
5
5
 
6
 
AC_INIT([eog-plugins], [3.2.2], [http://bugzilla.gnome.org/enter_bug.cgi?product=eog&component=plugins])
 
6
AC_INIT([eog-plugins], [3.4.0], [http://bugzilla.gnome.org/enter_bug.cgi?product=eog&component=plugins])
7
7
 
8
8
AC_CONFIG_SRCDIR([plugins])
9
9
AC_PREFIX_PROGRAM([eog])
12
12
 
13
13
AC_PREREQ(2.59)
14
14
 
15
 
AM_INIT_AUTOMAKE([1.9 foreign dist-bzip2 no-dist-gzip])
 
15
AM_INIT_AUTOMAKE([1.9 foreign dist-xz no-dist-gzip])
16
16
# Support silencing the build output if supported (automake-1.11+)
17
17
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
18
18
 
46
46
        glib-2.0 >= 2.26.0
47
47
        gtk+-3.0 >= 2.99.3
48
48
        libpeas-1.0 >= 0.7.4
49
 
        eog >= 2.91.92
 
49
        eog >= 3.3.6
50
50
])
51
51
AC_SUBST(EOG_LIBS)
52
52
AC_SUBST(EOG_CFLAGS)
65
65
USEFUL_PLUGINS="postr map fit-to-width exif-display send-by-mail postasa"
66
66
DEFAULT_PLUGINS="postr map fit-to-width exif-display send-by-mail postasa"
67
67
 
68
 
PYTHON_ALL_PLUGINS="slideshowshuffle pythonconsole"
69
 
PYTHON_USEFUL_PLUGINS="slideshowshuffle pythonconsole"
70
 
PYTHON_DEFAULT_PLUGINS="slideshowshuffle pythonconsole"
 
68
PYTHON_ALL_PLUGINS="slideshowshuffle pythonconsole fullscreenbg"
 
69
PYTHON_USEFUL_PLUGINS="slideshowshuffle pythonconsole fullscreenbg"
 
70
PYTHON_DEFAULT_PLUGINS="slideshowshuffle pythonconsole fullscreenbg"
71
71
 
72
72
DIST_PLUGINS="$ALL_PLUGINS $PYTHON_ALL_PLUGINS"
73
73
 
83
83
            [AS_HELP_STRING([--with-plugins=LIST],
84
84
                            [Comma-separated list specifying the plugins to build.
85
85
                            Available: map, exif-display, fit-to-width,
86
 
                            postr, postasa, pythonconsole, slideshowshuffle,
87
 
                            as well as the aliases default,
 
86
                            fullscreenbg, postr, postasa, pythonconsole,
 
87
                            slideshowshuffle, as well as the aliases default,
88
88
                            all, and really-all])],
89
89
            [plugins=$with_plugins],
90
90
            [plugins="default"])
264
264
        PKG_CHECK_MODULES(CHAMPLAIN,
265
265
                [ champlain-0.12 >= 0.9.0,
266
266
                  champlain-gtk-0.12 >= 0.9.0,
267
 
                  clutter-gtk-1.0 >= 0.90,
 
267
                  clutter-1.0 >= 1.9.4,
 
268
                  clutter-gtk-1.0 >= 1.1.2,
268
269
                  libexif >= 0.6.16 ],
269
270
                [],[have_libchamplain=no])
270
271
        AC_SUBST(CHAMPLAIN_LIBS)
293
294
    fi
294
295
fi
295
296
 
 
297
# ***********
 
298
# PythonConsole
 
299
# ***********
 
300
plugin_defined pythonconsole
 
301
if test "$?" = 1
 
302
then
 
303
 
 
304
    PKG_CHECK_EXISTS([ gsettings-desktop-schemas ],
 
305
        [],
 
306
        undef_plugin pythonconsole "gsettings-desktop-schemas missing"
 
307
    )
 
308
fi
 
309
 
296
310
 
297
311
if test -z "$disabled_plugins"
298
312
then
324
338
plugins/fit-to-width/Makefile
325
339
plugins/exif-display/Makefile
326
340
plugins/exif-display/org.gnome.eog.plugins.exif-display.gschema.xml.in
 
341
plugins/fullscreenbg/Makefile
 
342
plugins/fullscreenbg/org.gnome.eog.plugins.fullscreenbg.gschema.xml.in
327
343
plugins/send-by-mail/Makefile
328
344
plugins/slideshowshuffle/Makefile
329
345
plugins/postr/Makefile
330
346
plugins/postasa/Makefile
331
347
plugins/pythonconsole/Makefile
 
348
plugins/pythonconsole/org.gnome.eog.plugins.pythonconsole.gschema.xml.in
332
349
po/Makefile.in])
333
350
 
334
351
AC_OUTPUT