~ubuntu-branches/ubuntu/hardy/eog/hardy-updates

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-11-23 00:07:04 UTC
  • mfrom: (1.1.35 upstream)
  • Revision ID: james.westby@ubuntu.com-20071123000704-txc8vcqe2gntmv42
Tags: 2.21.1-0ubuntu1
* New upstream version:
  New features:
  - Contextual menu in image view widget
  Misc improvements/fixes:
  - Several code cleanups and improvements
  Bug fixes:
  - #482752, crash when opening a tiff image (eog_image_load)
  - #475124, Add " (invalid Unicode)" suffix when image caption is 
             not a valid utf8 string
  - #475645, When an image is saved, the selection is lost
  - #476313, plugins about dialog is not gtk+-2.11/2.12 ready
  - #476919, eog save menu is always active
  - #477550, fileformat combobox in save-as-many dialog is empty
  - #479029, eog crashes when showing Image Collection
  - #479400, Renamed files vanish from the collection
  - #479884, Mouse dragging UI broken.
  - #481096, Thumbnails in collection viewer not updated when scrolling 
  - #481301, Add a context menu in main window (open with/properties etc.) 
  - #482128, Hangs on XPM file (Felix Riemann)
  - #486057, "SetAsWallpaper" functionality doesn't 
       launch background properties
  - #488344, using the scroll buttons of a non-first instance of eog scrolls 
             the collection on the first one
  - #488808, eog won't display some .jpg files
  - #490065, Retry string not marked for translation
  - #481712, Substandard .desktop file (patch against latest SVN attached)
* Sync with Debian
* debian/control.in:
  - Build-Depends on liblaunchpad-integration-dev, python-central (>= 0.5.6)
  - don't use libexempi for now which is to universe
  - list required change for the python use
  - set XS-Vcs-Bzr tag
  - updated maintainer informations
  - use require Replaces for files which moved to the new binary
* debian/patches/01_lpi.patch:
  - launchpad integration
* debian/patches/02_autoconf.patch:
  - configure update
* debian/patches/03_hide_menu_item.patch:
  - menu simplication (MenuRevisited spec)
* debian/rules:
  - call dh_pycentral
  - update clean target
  - use --enable-python option

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AC_PREREQ(2.59)
2
2
 
3
3
m4_define(eog_major_version,  2)
4
 
m4_define(eog_minor_version, 20)
5
 
m4_define(eog_micro_version,  0)
 
4
m4_define(eog_minor_version, 21)
 
5
m4_define(eog_micro_version,  1)
6
6
m4_define(eog_version, eog_major_version.eog_minor_version.eog_micro_version)
7
7
 
8
8
AC_INIT([eog], eog_version, [http://bugzilla.gnome.org/enter_bug.cgi?product=eog], [eog])
63
63
# GNOME Libs 
64
64
# **********
65
65
 
66
 
GTK_REQUIRED=2.10.0
 
66
GTK_REQUIRED=2.11.6
67
67
GLIB_REQUIRED=2.12.0
68
68
GNOME_VFS_REQUIRED=2.10.0
69
69
LIBGNOMEUI_REQUIRED=2.6.0
211
211
 
212
212
AM_CONDITIONAL([HAVE_DBUS], [test "x$have_dbus" = "xyes"])
213
213
 
214
 
# ******************
215
 
# GTK+ 2.12 Tooltips
216
 
# ******************
217
 
 
218
 
PKG_CHECK_MODULES(GTK_TOOLTIP, gtk+-2.0 >= 2.11.6, 
219
 
                  [HAVE_GTK_TOOLTIP=yes], [HAVE_GTK_TOOLTIP=no])
220
 
if test x$HAVE_GTK_TOOLTIP = xyes; then
221
 
   AC_DEFINE(HAVE_GTK_TOOLTIP, 1, [defined if GtkTooltip is available])
222
 
fi
223
 
 
224
214
# ****************
225
215
# CFLAGS/LIBS init
226
216
# ****************