commit 370d3586cc4e68ba88d205d0c5c955629178ea01 Author: CentOS Sources Date: Tue May 7 07:08:52 2019 -0400 import gtk2-2.24.32-4.el8 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..71b254e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/gtk+-2.24.32.tar.xz diff --git a/.gtk2.metadata b/.gtk2.metadata new file mode 100644 index 0000000..a36c9fe --- /dev/null +++ b/.gtk2.metadata @@ -0,0 +1 @@ +c885ade62b06854590822c8eb906daf7dd15d90a SOURCES/gtk+-2.24.32.tar.xz diff --git a/SOURCES/icon-padding.patch b/SOURCES/icon-padding.patch new file mode 100644 index 0000000..45083a6 --- /dev/null +++ b/SOURCES/icon-padding.patch @@ -0,0 +1,258 @@ +diff -up gtk+-2.19.7/gtk/gtkstatusicon.c.icon-padding gtk+-2.19.7/gtk/gtkstatusicon.c +--- gtk+-2.19.7/gtk/gtkstatusicon.c.icon-padding 2010-03-08 08:42:22.000000000 -0500 ++++ gtk+-2.19.7/gtk/gtkstatusicon.c 2010-03-10 00:40:11.165527903 -0500 +@@ -170,6 +170,7 @@ static void gtk_status_icon_screen_c + GdkScreen *old_screen); + static void gtk_status_icon_embedded_changed (GtkStatusIcon *status_icon); + static void gtk_status_icon_orientation_changed (GtkStatusIcon *status_icon); ++static void gtk_status_icon_padding_changed (GtkStatusIcon *status_icon); + static gboolean gtk_status_icon_scroll (GtkStatusIcon *status_icon, + GdkEventScroll *event); + static gboolean gtk_status_icon_query_tooltip (GtkStatusIcon *status_icon, +@@ -850,6 +851,8 @@ gtk_status_icon_init (GtkStatusIcon *sta + G_CALLBACK (gtk_status_icon_embedded_changed), status_icon); + g_signal_connect_swapped (priv->tray_icon, "notify::orientation", + G_CALLBACK (gtk_status_icon_orientation_changed), status_icon); ++ g_signal_connect_swapped (priv->tray_icon, "notify::padding", ++ G_CALLBACK (gtk_status_icon_padding_changed), status_icon); + g_signal_connect_swapped (priv->tray_icon, "button-press-event", + G_CALLBACK (gtk_status_icon_button_press), status_icon); + g_signal_connect_swapped (priv->tray_icon, "button-release-event", +@@ -975,6 +978,8 @@ gtk_status_icon_finalize (GObject *objec + g_signal_handlers_disconnect_by_func (priv->tray_icon, + gtk_status_icon_orientation_changed, status_icon); + g_signal_handlers_disconnect_by_func (priv->tray_icon, ++ gtk_status_icon_padding_changed, status_icon); ++ g_signal_handlers_disconnect_by_func (priv->tray_icon, + gtk_status_icon_button_press, status_icon); + g_signal_handlers_disconnect_by_func (priv->tray_icon, + gtk_status_icon_button_release, status_icon); +@@ -1679,14 +1684,32 @@ gtk_status_icon_screen_changed (GtkStatu + #ifdef GDK_WINDOWING_X11 + + static void ++gtk_status_icon_padding_changed (GtkStatusIcon *status_icon) ++{ ++ GtkStatusIconPrivate *priv = status_icon->priv; ++ GtkOrientation orientation; ++ gint padding; ++ ++ orientation = _gtk_tray_icon_get_orientation (GTK_TRAY_ICON (priv->tray_icon)); ++ padding = _gtk_tray_icon_get_padding (GTK_TRAY_ICON (priv->tray_icon)); ++ ++ if (orientation == GTK_ORIENTATION_HORIZONTAL) ++ gtk_misc_set_padding (GTK_MISC (priv->image), padding, 0); ++ else ++ gtk_misc_set_padding (GTK_MISC (priv->image), 0, padding); ++} ++ ++static void + gtk_status_icon_embedded_changed (GtkStatusIcon *status_icon) + { ++ gtk_status_icon_padding_changed (status_icon); + g_object_notify (G_OBJECT (status_icon), "embedded"); + } + + static void + gtk_status_icon_orientation_changed (GtkStatusIcon *status_icon) + { ++ gtk_status_icon_padding_changed (status_icon); + g_object_notify (G_OBJECT (status_icon), "orientation"); + } + +@@ -1804,7 +1827,7 @@ gtk_status_icon_reset_image_data (GtkSta + + g_object_notify (G_OBJECT (status_icon), "stock"); + break; +- ++ + case GTK_IMAGE_ICON_NAME: + g_free (priv->image_data.icon_name); + priv->image_data.icon_name = NULL; +diff -up gtk+-2.19.7/gtk/gtktrayicon.h.icon-padding gtk+-2.19.7/gtk/gtktrayicon.h +--- gtk+-2.19.7/gtk/gtktrayicon.h.icon-padding 2009-10-18 01:35:45.000000000 -0400 ++++ gtk+-2.19.7/gtk/gtktrayicon.h 2010-03-10 00:40:11.169528392 -0500 +@@ -69,7 +69,8 @@ void _gtk_tray_icon_cancel_mes + guint id); + + GtkOrientation _gtk_tray_icon_get_orientation (GtkTrayIcon *icon); +- ++gint _gtk_tray_icon_get_padding (GtkTrayIcon *icon); ++ + G_END_DECLS + + #endif /* __GTK_TRAY_ICON_H__ */ +diff -up gtk+-2.19.7/gtk/gtktrayicon-x11.c.icon-padding gtk+-2.19.7/gtk/gtktrayicon-x11.c +--- gtk+-2.19.7/gtk/gtktrayicon-x11.c.icon-padding 2010-03-08 21:01:28.000000000 -0500 ++++ gtk+-2.19.7/gtk/gtktrayicon-x11.c 2010-03-10 00:49:48.229509604 -0500 +@@ -43,23 +43,26 @@ + + enum { + PROP_0, +- PROP_ORIENTATION ++ PROP_ORIENTATION, ++ PROP_PADDING + }; + + struct _GtkTrayIconPrivate + { + guint stamp; +- ++ + Atom selection_atom; + Atom manager_atom; + Atom system_tray_opcode_atom; + Atom orientation_atom; + Atom visual_atom; ++ Atom padding_atom; + Window manager_window; + GdkVisual *manager_visual; + gboolean manager_visual_rgba; + + GtkOrientation orientation; ++ gint padding; + }; + + static void gtk_tray_icon_constructed (GObject *object); +@@ -113,6 +116,16 @@ gtk_tray_icon_class_init (GtkTrayIconCla + GTK_ORIENTATION_HORIZONTAL, + GTK_PARAM_READABLE)); + ++ g_object_class_install_property (gobject_class, ++ PROP_PADDING, ++ g_param_spec_int ("padding", ++ P_("Padding"), ++ P_("Padding that should be put around icons in the tray"), ++ 0, ++ G_MAXINT, ++ 0, ++ GTK_PARAM_READABLE)); ++ + g_type_class_add_private (class, sizeof (GtkTrayIconPrivate)); + } + +@@ -124,6 +137,7 @@ gtk_tray_icon_init (GtkTrayIcon *icon) + + icon->priv->stamp = 1; + icon->priv->orientation = GTK_ORIENTATION_HORIZONTAL; ++ icon->priv->padding = 0; + + gtk_widget_set_app_paintable (GTK_WIDGET (icon), TRUE); + gtk_widget_add_events (GTK_WIDGET (icon), GDK_PROPERTY_CHANGE_MASK); +@@ -161,6 +175,10 @@ gtk_tray_icon_constructed (GObject *obje + "_NET_SYSTEM_TRAY_VISUAL", + False); + ++ icon->priv->padding_atom = XInternAtom (xdisplay, ++ "_NET_SYSTEM_TRAY_PADDING", ++ False); ++ + /* Add a root window filter so that we get changes on MANAGER */ + gdk_window_add_filter (root_window, + gtk_tray_icon_manager_filter, icon); +@@ -212,6 +230,9 @@ gtk_tray_icon_get_property (GObject * + case PROP_ORIENTATION: + g_value_set_enum (value, icon->priv->orientation); + break; ++ case PROP_PADDING: ++ g_value_set_int (value, icon->priv->padding); ++ break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); + break; +@@ -372,9 +393,58 @@ gtk_tray_icon_get_visual_property (GtkTr + XFree (prop.prop); + } + ++static void ++gtk_tray_icon_get_padding_property (GtkTrayIcon *icon) ++{ ++ GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (icon)); ++ GdkDisplay *display = gdk_screen_get_display (screen); ++ Display *xdisplay = GDK_DISPLAY_XDISPLAY (display); ++ ++ Atom type; ++ int format; ++ union { ++ gulong *prop; ++ guchar *prop_ch; ++ } prop = { NULL }; ++ gulong nitems; ++ gulong bytes_after; ++ int error, result; ++ ++ g_assert (icon->priv->manager_window != None); ++ ++ gdk_error_trap_push (); ++ type = None; ++ result = XGetWindowProperty (xdisplay, ++ icon->priv->manager_window, ++ icon->priv->padding_atom, ++ 0, G_MAXLONG, FALSE, ++ XA_CARDINAL, ++ &type, &format, &nitems, ++ &bytes_after, &(prop.prop_ch)); ++ error = gdk_error_trap_pop (); ++ ++ if (!error && result == Success && ++ type == XA_CARDINAL && nitems == 1 && format == 32) ++ { ++ gint padding; ++ ++ padding = prop.prop[0]; ++ ++ if (icon->priv->padding != padding) ++ { ++ icon->priv->padding = padding; ++ ++ g_object_notify (G_OBJECT (icon), "padding"); ++ } ++ } ++ ++ if (type != None) ++ XFree (prop.prop); ++} ++ + static GdkFilterReturn +-gtk_tray_icon_manager_filter (GdkXEvent *xevent, +- GdkEvent *event, ++gtk_tray_icon_manager_filter (GdkXEvent *xevent, ++ GdkEvent *event, + gpointer user_data) + { + GtkTrayIcon *icon = user_data; +@@ -399,6 +469,11 @@ gtk_tray_icon_manager_filter (GdkXEvent + + gtk_tray_icon_get_orientation_property (icon); + } ++ else if (xev->xany.type == PropertyNotify && ++ xev->xproperty.atom == icon->priv->padding_atom) ++ { ++ gtk_tray_icon_get_padding_property (icon); ++ } + else if (xev->xany.type == DestroyNotify) + { + GTK_NOTE (PLUGSOCKET, +@@ -504,6 +579,7 @@ gtk_tray_icon_update_manager_window (Gtk + + gtk_tray_icon_get_orientation_property (icon); + gtk_tray_icon_get_visual_property (icon); ++ gtk_tray_icon_get_padding_property (icon); + + if (gtk_widget_get_realized (GTK_WIDGET (icon))) + { +@@ -740,6 +816,14 @@ _gtk_tray_icon_get_orientation (GtkTrayI + return icon->priv->orientation; + } + ++gint ++_gtk_tray_icon_get_padding (GtkTrayIcon *icon) ++{ ++ g_return_val_if_fail (GTK_IS_TRAY_ICON (icon), 0); ++ ++ return icon->priv->padding; ++} ++ + + #define __GTK_TRAY_ICON_X11_C__ + #include "gtkaliasdef.c" diff --git a/SOURCES/im-cedilla.conf b/SOURCES/im-cedilla.conf new file mode 100644 index 0000000..d8a1976 --- /dev/null +++ b/SOURCES/im-cedilla.conf @@ -0,0 +1,6 @@ +XIM=none +XIM_PROGRAM=/bin/true +XIM_ARGS= +SHORT_DESC=im-cedilla +GTK_IM_MODULE=cedilla +QT_IM_MODULE=xim diff --git a/SOURCES/python3-compat.patch b/SOURCES/python3-compat.patch new file mode 100644 index 0000000..ca7c29a --- /dev/null +++ b/SOURCES/python3-compat.patch @@ -0,0 +1,122 @@ +Add compatibility with Python 3 (keeping compatibility with Python 2.7) + +--- gtk+-2.24.32/gtk/gtk-builder-convert (original) ++++ gtk+-2.24.32/gtk/gtk-builder-convert (refactored) +@@ -36,10 +36,11 @@ + + Report bugs to http://bugzilla.gnome.org/.""" + ++from __future__ import print_function + import getopt + import os + import sys +- ++import subprocess + from xml.dom import minidom, Node + + DIALOGS = ['GtkDialog', +@@ -47,13 +48,6 @@ + 'GtkMessageDialog'] + WINDOWS = ['GtkWindow'] + DIALOGS + +-# The subprocess is only available in Python 2.4+ +-try: +- import subprocess +- subprocess # pyflakes +-except ImportError: +- subprocess = None +- + def get_child_nodes(node): + assert node.tagName == 'object' + nodes = [] +@@ -167,7 +161,11 @@ + + def to_xml(self): + xml = self._dom.toprettyxml("", "") +- return xml.encode('utf-8') ++ if sys.version_info < (3, 0): ++ # Python 2: convert with explicit encoding ++ # (For Python 3, the result is left as text) ++ xml = xml.encode('utf-8') ++ return xml + + # + # Private +@@ -259,7 +257,7 @@ + for node in objects: + self._convert(node.getAttribute("class"), node) + if self._get_object(node.getAttribute('id')) is not None: +- print "WARNING: duplicate id \"" + node.getAttribute('id') + "\"" ++ print("WARNING: duplicate id \"" + node.getAttribute('id') + "\"") + self.objects[node.getAttribute('id')] = node + + # Convert Gazpachos UI tag +@@ -272,13 +270,9 @@ + + # Output the newly created root objects and sort them + # by attribute id +- # FIXME: Use sorted(self.root_objects, +- # key=lambda n: n.getAttribute('id'), +- # reverse=True): +- # when we can depend on python 2.4 or higher +- root_objects = self.root_objects[:] +- root_objects.sort(lambda a, b: cmp(b.getAttribute('id'), +- a.getAttribute('id'))) ++ root_objects = sorted(self.root_objects, ++ key=lambda n: n.getAttribute('id'), ++ reverse=True) + for obj in root_objects: + self._interface.childNodes.insert(0, obj) + +@@ -461,8 +455,8 @@ + if signal_name in ['activate', 'toggled']: + action.appendChild(signal) + else: +- print 'Unhandled signal %s::%s' % (node.getAttribute('class'), +- signal_name) ++ print('Unhandled signal %s::%s' % (node.getAttribute('class'), ++ signal_name)) + + if not uimgr.childNodes: + child = self._dom.createElement('child') +@@ -481,8 +475,8 @@ + for accelerator in get_accelerator_nodes(node): + signal_name = accelerator.getAttribute('signal') + if signal_name != 'activate': +- print 'Unhandled accelerator signal for %s::%s' % ( +- node.getAttribute('class'), signal_name) ++ print('Unhandled accelerator signal for %s::%s' % ( ++ node.getAttribute('class'), signal_name)) + continue + accelerator.removeAttribute('signal') + child.appendChild(accelerator) +@@ -741,13 +735,14 @@ + + s = subprocess.Popen([filename, '--format', '-'], + stdin=subprocess.PIPE, +- stdout=subprocess.PIPE) ++ stdout=subprocess.PIPE, ++ universal_newlines=True) + s.stdin.write(output) + s.stdin.close() + return s.stdout.read() + + def usage(): +- print __doc__ ++ print(__doc__) + + def main(args): + try: +@@ -788,10 +783,10 @@ + + xml = _indent(conv.to_xml()) + if output_filename == "-": +- print xml ++ print(xml) + else: + open(output_filename, 'w').write(xml) +- print "Wrote", output_filename ++ print("Wrote", output_filename) + + return 0 + diff --git a/SOURCES/system-python.patch b/SOURCES/system-python.patch new file mode 100644 index 0000000..25e21f8 --- /dev/null +++ b/SOURCES/system-python.patch @@ -0,0 +1,9 @@ +diff -up gtk+-2.18.2/gtk/gtk-builder-convert.system-python gtk+-2.18.2/gtk/gtk-builder-convert +--- gtk+-2.18.2/gtk/gtk-builder-convert.system-python 2009-10-13 15:59:50.423385098 -0400 ++++ gtk+-2.18.2/gtk/gtk-builder-convert 2009-10-13 16:00:31.876142050 -0400 +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python ++#!/usr/bin/python3 + # + # Copyright (C) 2006-2008 Async Open Source + # Henrique Romano diff --git a/SOURCES/tooltip-positioning.patch b/SOURCES/tooltip-positioning.patch new file mode 100644 index 0000000..49b72c2 --- /dev/null +++ b/SOURCES/tooltip-positioning.patch @@ -0,0 +1,182 @@ +diff --git a/gtk/gtktooltip.c b/gtk/gtktooltip.c +index 5cc2334..204a2b6 100644 +--- a/gtk/gtktooltip.c ++++ b/gtk/gtktooltip.c +@@ -903,53 +903,128 @@ gtk_tooltip_position (GtkTooltip *tooltip, + { + gint x, y; + GdkScreen *screen; ++ gint monitor_num; ++ GdkRectangle monitor; ++ GtkRequisition requisition; ++ guint cursor_size; ++ GdkRectangle bounds; ++ ++#define MAX_DISTANCE 32 + + tooltip->tooltip_widget = new_tooltip_widget; + ++ screen = gtk_widget_get_screen (new_tooltip_widget); ++ ++ gtk_widget_size_request (GTK_WIDGET (tooltip->current_window), &requisition); ++ ++ monitor_num = gdk_screen_get_monitor_at_point (screen, ++ tooltip->last_x, ++ tooltip->last_y); ++ gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor); ++ ++ get_bounding_box (new_tooltip_widget, &bounds); ++ + /* Position the tooltip */ +- /* FIXME: should we swap this when RTL is enabled? */ +- if (tooltip->keyboard_mode_enabled) ++ ++ cursor_size = gdk_display_get_default_cursor_size (display); ++ ++ /* Try below */ ++ x = bounds.x + bounds.width / 2 - requisition.width / 2; ++ y = bounds.y + bounds.height + 4; ++ ++ if (y + requisition.height <= monitor.y + monitor.height) + { +- GdkRectangle bounds; ++ if (tooltip->keyboard_mode_enabled) ++ goto found; + +- get_bounding_box (new_tooltip_widget, &bounds); ++ if (y <= tooltip->last_y + cursor_size + MAX_DISTANCE) ++ { ++ if (tooltip->last_x + cursor_size + MAX_DISTANCE < x) ++ x = tooltip->last_x + cursor_size + MAX_DISTANCE; ++ else if (x + requisition.width < tooltip->last_x - MAX_DISTANCE) ++ x = tooltip->last_x - MAX_DISTANCE - requisition.width; + +- /* For keyboard mode we position the tooltip below the widget, +- * right of the center of the widget. +- */ +- x = bounds.x + bounds.width / 2; +- y = bounds.y + bounds.height + 4; ++ goto found; ++ } ++ } ++ ++ /* Try above */ ++ x = bounds.x + bounds.width / 2 - requisition.width / 2; ++ y = bounds.y - requisition.height - 4; ++ ++ if (y >= monitor.y) ++ { ++ if (tooltip->keyboard_mode_enabled) ++ goto found; ++ ++ if (y + requisition.height >= tooltip->last_y - MAX_DISTANCE) ++ { ++ if (tooltip->last_x + cursor_size + MAX_DISTANCE < x) ++ x = tooltip->last_x + cursor_size + MAX_DISTANCE; ++ else if (x + requisition.width < tooltip->last_x - MAX_DISTANCE) ++ x = tooltip->last_x - MAX_DISTANCE - requisition.width; ++ ++ goto found; ++ } + } +- else ++ ++ /* Try right FIXME: flip on rtl ? */ ++ x = bounds.x + bounds.width + 4; ++ y = bounds.y + bounds.height / 2 - requisition.height / 2; ++ ++ if (x + requisition.width <= monitor.x + monitor.width) + { +- guint cursor_size; ++ if (tooltip->keyboard_mode_enabled) ++ goto found; + +- x = tooltip->last_x; +- y = tooltip->last_y; ++ if (x <= tooltip->last_x + cursor_size + MAX_DISTANCE) ++ { ++ if (tooltip->last_y + cursor_size + MAX_DISTANCE < y) ++ y = tooltip->last_y + cursor_size + MAX_DISTANCE; ++ else if (y + requisition.height < tooltip->last_y - MAX_DISTANCE) ++ y = tooltip->last_y - MAX_DISTANCE - requisition.height; + +- /* For mouse mode, we position the tooltip right of the cursor, +- * a little below the cursor's center. +- */ +- cursor_size = gdk_display_get_default_cursor_size (display); +- x += cursor_size / 2; +- y += cursor_size / 2; ++ goto found; ++ } + } + +- screen = gtk_widget_get_screen (new_tooltip_widget); ++ /* Try left FIXME: flip on rtl ? */ ++ x = bounds.x - requisition.width - 4; ++ y = bounds.y + bounds.height / 2 - requisition.height / 2; + +- /* Show it */ +- if (tooltip->current_window) ++ if (x >= monitor.x) + { +- gint monitor_num; +- GdkRectangle monitor; +- GtkRequisition requisition; ++ if (tooltip->keyboard_mode_enabled) ++ goto found; + +- gtk_widget_size_request (GTK_WIDGET (tooltip->current_window), +- &requisition); ++ if (x + requisition.width >= tooltip->last_x - MAX_DISTANCE) ++ { ++ if (tooltip->last_y + cursor_size + MAX_DISTANCE < y) ++ y = tooltip->last_y + cursor_size + MAX_DISTANCE; ++ else if (y + requisition.height < tooltip->last_y - MAX_DISTANCE) ++ y = tooltip->last_y - MAX_DISTANCE - requisition.height; + +- monitor_num = gdk_screen_get_monitor_at_point (screen, x, y); +- gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor); ++ goto found; ++ } ++ } + ++ /* Fallback */ ++ if (tooltip->keyboard_mode_enabled) ++ { ++ x = bounds.x + bounds.width / 2 - requisition.width / 2; ++ y = bounds.y + bounds.height + 4; ++ } ++ else ++ { ++ /* At cursor */ ++ x = tooltip->last_x + cursor_size * 3 / 4; ++ y = tooltip->last_y + cursor_size * 3 / 4; ++ } ++ ++found: ++ /* Show it */ ++ if (tooltip->current_window) ++ { + if (x + requisition.width > monitor.x + monitor.width) + x -= x - (monitor.x + monitor.width) + requisition.width; + else if (x < monitor.x) +@@ -957,7 +1032,9 @@ gtk_tooltip_position (GtkTooltip *tooltip, + + if (y + requisition.height > monitor.y + monitor.height) + y -= y - (monitor.y + monitor.height) + requisition.height; +- ++ else if (y < monitor.y) ++ y = monitor.y; ++ + if (!tooltip->keyboard_mode_enabled) + { + /* don't pop up under the pointer */ +@@ -965,7 +1042,7 @@ gtk_tooltip_position (GtkTooltip *tooltip, + y <= tooltip->last_y && tooltip->last_y < y + requisition.height) + y = tooltip->last_y - requisition.height - 2; + } +- ++ + gtk_window_move (GTK_WINDOW (tooltip->current_window), x, y); + gtk_widget_show (GTK_WIDGET (tooltip->current_window)); + } diff --git a/SOURCES/update-gtk-immodules b/SOURCES/update-gtk-immodules new file mode 100755 index 0000000..2b9471b --- /dev/null +++ b/SOURCES/update-gtk-immodules @@ -0,0 +1,17 @@ +#! /bin/sh + +if test $# != 1; then + echo usage: update-gtk-immodules host_triplet 1>&2 + exit 1 +fi + +umask 022 + +case "$1" in + alpha*|ia64*|ppc64*|powerpc64*|s390x*|x86_64*|aarch64*) + /usr/bin/gtk-query-immodules-2.0-64 --update-cache + ;; + *) + /usr/bin/gtk-query-immodules-2.0-32 --update-cache + ;; +esac diff --git a/SOURCES/update-gtk-immodules.1 b/SOURCES/update-gtk-immodules.1 new file mode 100644 index 0000000..84f8eb0 --- /dev/null +++ b/SOURCES/update-gtk-immodules.1 @@ -0,0 +1,52 @@ +'\" t +.\" Title: update-gtk-immodules +.\" Author: Matthias Clasen +.\" Date: 06/26/2013 +.\" Manual: User Commands +.\" Source: GTK+ +.\" Language: English +.\" +.TH "UPDATE\-GTK\-IMMODULES" "1" "" "GTK+" "User Commands" +.\" ----------------------------------------------------------------- +.\" * Define some portability stuff +.\" ----------------------------------------------------------------- +.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +.\" http://bugs.debian.org/507673 +.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html +.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +.ie \n(.g .ds Aq \(aq +.el .ds Aq ' +.\" ----------------------------------------------------------------- +.\" * set default formatting +.\" ----------------------------------------------------------------- +.\" disable hyphenation +.nh +.\" disable justification (adjust text to left margin only) +.ad l +.\" ----------------------------------------------------------------- +.\" * MAIN CONTENT STARTS HERE * +.\" ----------------------------------------------------------------- +.SH "NAME" +update-gtk-immodules - Update GTK+ immodule cache +.SH "SYNOPSIS" +.HP \w'\fBupdate-gtk-immodules\fR\ 'u +\fBupdate-gtk-immodules\fR [HOST_TRIPLET] +.SH "DESCRIPTION" +.PP +\fBupdate-gtk-immodules\fR +is a wrapper around gtk-query-immodules-2.0 that tries to help with +multilib installations. It is meant to be used in %post scripts of rpm +packages that install input method modules for GTK+ 2.x. + +.PP +It needs to be given a GNU-style host triplet as argument, such as +"x86_64-redhat-linux-gnu". This argument determines where the tool +saves the gtk.immodules file that it creates. It must be the same +as the host triplet that GTK+ was configured with. + +.SH "FILES" +.PP +$libdir/gtk-2.0/2.10.0/immodules.cache - the file created by update-gtk-immodules. + +.SH "SEE ALSO" +.BR gtk-query-immodules-2.0 "(1)" diff --git a/SOURCES/window-dragging.patch b/SOURCES/window-dragging.patch new file mode 100644 index 0000000..549bcb6 --- /dev/null +++ b/SOURCES/window-dragging.patch @@ -0,0 +1,116 @@ +diff -up gtk+-2.24.7/gtk/gtkmenushell.c.window-dragging gtk+-2.24.7/gtk/gtkmenushell.c +--- gtk+-2.24.7/gtk/gtkmenushell.c.window-dragging 2011-08-15 22:30:52.000000000 -0400 ++++ gtk+-2.24.7/gtk/gtkmenushell.c 2011-10-17 19:50:52.180468086 -0400 +@@ -589,18 +589,45 @@ gtk_menu_shell_button_press (GtkWidget + + if (!menu_shell->active || !menu_shell->button) + { +- gtk_menu_shell_activate (menu_shell); ++ gboolean initially_active = menu_shell->active; + + menu_shell->button = event->button; + +- if (menu_item && _gtk_menu_item_is_selectable (menu_item) && +- menu_item->parent == widget && +- menu_item != menu_shell->active_menu_item) ++ if (menu_item) + { +- if (GTK_MENU_SHELL_GET_CLASS (menu_shell)->submenu_placement == GTK_TOP_BOTTOM) ++ if (_gtk_menu_item_is_selectable (menu_item) && ++ menu_item->parent == widget && ++ menu_item != menu_shell->active_menu_item) + { +- menu_shell->activate_time = event->time; +- gtk_menu_shell_select_item (menu_shell, menu_item); ++ gtk_menu_shell_activate (menu_shell); ++ menu_shell->button = event->button; ++ ++ if (GTK_MENU_SHELL_GET_CLASS (menu_shell)->submenu_placement == GTK_TOP_BOTTOM) ++ { ++ menu_shell->activate_time = event->time; ++ gtk_menu_shell_select_item (menu_shell, menu_item); ++ } ++ } ++ } ++ else ++ { ++ if (!initially_active) ++ { ++ gboolean window_drag = FALSE; ++ ++ gtk_widget_style_get (widget, ++ "window-dragging", &window_drag, ++ NULL); ++ ++ if (window_drag) ++ { ++ gtk_menu_shell_deactivate (menu_shell); ++ gtk_window_begin_move_drag (GTK_WINDOW (gtk_widget_get_toplevel (widget)), ++ event->button, ++ event->x_root, ++ event->y_root, ++ event->time); ++ } + } + } + } +diff -up gtk+-2.24.7/gtk/gtktoolbar.c.window-dragging gtk+-2.24.7/gtk/gtktoolbar.c +--- gtk+-2.24.7/gtk/gtktoolbar.c.window-dragging 2011-10-01 11:29:06.000000000 -0400 ++++ gtk+-2.24.7/gtk/gtktoolbar.c 2011-10-17 19:52:56.104463657 -0400 +@@ -2701,6 +2701,8 @@ static gboolean + gtk_toolbar_button_press (GtkWidget *toolbar, + GdkEventButton *event) + { ++ GtkWidget *window; ++ + if (_gtk_button_event_triggers_context_menu (event)) + { + gboolean return_value; +@@ -2711,7 +2713,29 @@ gtk_toolbar_button_press (GtkWidget + + return return_value; + } +- ++ ++ window = gtk_widget_get_toplevel (toolbar); ++ ++ if (window) ++ { ++ gboolean window_drag = FALSE; ++ ++ gtk_widget_style_get (toolbar, ++ "window-dragging", &window_drag, ++ NULL); ++ ++ if (window_drag) ++ { ++ gtk_window_begin_move_drag (GTK_WINDOW (window), ++ event->button, ++ event->x_root, ++ event->y_root, ++ event->time); ++ ++ return TRUE; ++ } ++ } ++ + return FALSE; + } + +diff -up gtk+-2.24.7/gtk/gtkwidget.c.window-dragging gtk+-2.24.7/gtk/gtkwidget.c +--- gtk+-2.24.7/gtk/gtkwidget.c.window-dragging 2011-10-17 19:50:52.175468086 -0400 ++++ gtk+-2.24.7/gtk/gtkwidget.c 2011-10-17 19:50:52.184468086 -0400 +@@ -2467,6 +2467,13 @@ gtk_widget_class_init (GtkWidgetClass *k + 0.0, 1.0, 0.04, + GTK_PARAM_READABLE)); + ++ gtk_widget_class_install_style_property (klass, ++ g_param_spec_boolean ("window-dragging", ++ P_("Window dragging"), ++ P_("Window dragging"), ++ FALSE, ++ GTK_PARAM_READWRITE)); ++ + /** + * GtkWidget:draw-border: + * diff --git a/SPECS/gtk2.spec b/SPECS/gtk2.spec new file mode 100644 index 0000000..d61f98c --- /dev/null +++ b/SPECS/gtk2.spec @@ -0,0 +1,2173 @@ +%global _changelog_trimtime %(date +%s -d "1 year ago") + +%define glib2_base_version 2.28.0 +%define glib2_version %{glib2_base_version}-1 +%define pango_base_version 1.20.0 +%define pango_version %{pango_base_version}-1 +%define atk_base_version 1.29.4 +%define atk_version %{atk_base_version}-2 +%define cairo_base_version 1.6.0 +%define cairo_version %{cairo_base_version}-1 +%define xrandr_version 1.2.99.4-2 +%define gobject_introspection_version 0.9.3 +%define gir_repository_version 0.6.5-5 + +%define bin_version 2.10.0 + +# Filter provides for private modules +%global __provides_exclude_from ^%{_libdir}/gtk-2.0 + +Summary: GTK+ graphical user interface library +Name: gtk2 +Version: 2.24.32 +Release: 4%{?dist} +License: LGPLv2+ +Group: System Environment/Libraries +URL: http://www.gtk.org +#VCS: git:git://git.gnome.org/gtk+#gtk-2-24 +Source: http://download.gnome.org/sources/gtk+/2.24/gtk+-%{version}.tar.xz +Source2: update-gtk-immodules +Source3: im-cedilla.conf +Source4: update-gtk-immodules.1 + +Patch1: system-python.patch +# https://bugzilla.gnome.org/show_bug.cgi?id=583273 +Patch2: icon-padding.patch +# https://bugzilla.gnome.org/show_bug.cgi?id=599618 +Patch8: tooltip-positioning.patch +# https://bugzilla.gnome.org/show_bug.cgi?id=611313 +Patch15: window-dragging.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=1595827 +Patch16: python3-compat.patch + +BuildRequires: pkgconfig(atk) >= %{atk_version} +BuildRequires: pkgconfig(glib-2.0) >= %{glib2_version} +BuildRequires: pkgconfig(gobject-introspection-1.0) >= %{gobject_introspection_version} +BuildRequires: pkgconfig(cairo) +BuildRequires: pkgconfig(gdk-pixbuf-2.0) +BuildRequires: pkgconfig(pango) >= %{pango_version} +BuildRequires: pkgconfig(xi) +BuildRequires: pkgconfig(xrandr) +BuildRequires: pkgconfig(xrender) +BuildRequires: pkgconfig(xcursor) +BuildRequires: pkgconfig(xfixes) +BuildRequires: pkgconfig(xinerama) +BuildRequires: pkgconfig(xcomposite) +BuildRequires: pkgconfig(xdamage) +BuildRequires: gettext +BuildRequires: cups-devel +# Bootstrap requirements +BuildRequires: gtk-doc +BuildRequires: automake +BuildRequires: autoconf +BuildRequires: libtool +BuildRequires: pkgconfig + +# rpmbuild-time support for Python scripts +BuildRequires: python3-devel + +# Conflicts with packages containing theme engines +# built against the 2.4.0 ABI +Conflicts: gtk2-engines < 2.7.4-7 +Conflicts: libgnomeui < 2.15.1cvs20060505-2 +Conflicts: redhat-artwork < 0.243-1 + +Provides: gail = %{version}-%{release} +Obsoletes: gail < 2.13.0-1 + +# required for icon theme apis to work +Requires: hicolor-icon-theme +# built as a subpackage of gtk3 +Requires: gtk-update-icon-cache + +# required to support all the different image formats +Requires: gdk-pixbuf2-modules%{?_isa} + +Requires: glib2 >= %{glib2_version} +Requires: atk >= %{atk_version} +Requires: pango >= %{pango_version} +# We need to prereq these so we can run gdk-pixbuf-query-loaders +Requires(post): libtiff >= 3.6.1 +Requires: libXrandr >= %{xrandr_version} + +%description +GTK+ is a multi-platform toolkit for creating graphical user +interfaces. Offering a complete set of widgets, GTK+ is suitable for +projects ranging from small one-off tools to complete application +suites. + +%package immodules +Summary: Input methods for GTK+ +Group: System Environment/Libraries +Requires: gtk2 = %{version}-%{release} + +%description immodules +The gtk2-immodules package contains standalone input methods that are shipped +as part of GTK+. + +%package immodule-xim +Summary: XIM support for GTK+ +Group: System Environment/Libraries +Requires: gtk2 = %{version}-%{release} + +%description immodule-xim +The gtk2-immodule-xim package contains XIM support for GTK+. + +%package devel +Summary: Development files for GTK+ +Group: Development/Libraries +Requires: gtk2 = %{version}-%{release} +Requires: pango-devel >= %{pango_version} +Requires: atk-devel >= %{atk_version} +Requires: glib2-devel >= %{glib2_version} +Requires: gdk-pixbuf2-devel +Requires: cairo-devel >= %{cairo_version} +Requires: libX11-devel, libXcursor-devel, libXinerama-devel +Requires: libXext-devel, libXi-devel, libXrandr-devel +Requires: libXfixes-devel, libXcomposite-devel +Requires: pkgconfig + +Provides: gail-devel = %{version}-%{release} +Obsoletes: gail-devel < 2.13.0-1 + +%description devel +This package contains the libraries and header files that are needed +for writing applications with the GTK+ widget toolkit. If you plan +to develop applications with GTK+, consider installing the gtk2-devel-docs +package. + +%package devel-docs +Summary: Developer documentation for GTK+ +Group: Development/Libraries +Requires: gtk2 = %{version}-%{release} +#BuildArch: noarch + +%description devel-docs +This package contains developer documentation for the GTK+ widget toolkit. + +%prep +%setup -q -n gtk+-%{version} + +%patch1 -p1 -b .system-python +%patch2 -p1 -b .icon-padding +%patch8 -p1 -b .tooltip-positioning +%patch15 -p1 -b .window-dragging +%patch16 -p1 -b .python3-compat + +%build +export CFLAGS='-fno-strict-aliasing %optflags' +(if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; CONFIGFLAGS=--enable-gtk-doc; fi; + %configure $CONFIGFLAGS \ + --enable-man \ + --with-xinput=xfree \ + --enable-debug \ +) + +# fight unused direct deps +sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + +make %{?_smp_mflags} + +# truncate NEWS +awk '/^Overview of Changes/ { seen+=1 } +{ if (seen < 2) print } +{ if (seen == 2) { print "For older news, see http://git.gnome.org/cgit/gtk+/plain/NEWS"; exit } }' NEWS > tmp; mv tmp NEWS + +%install +# Deriving /etc/gtk-2.0/$host location +# NOTE: Duplicated below +# +# autoconf changes linux to linux-gnu +case "%{_host}" in + *linux) host="%{_host}-gnu" + ;; + *) host="%{_host}" + ;; +esac + +# autoconf uses powerpc not ppc +host=`echo $host | sed "s/^ppc/powerpc/"` +# autoconf uses ibm-linux not redhat-linux (s390x) +host=`echo $host | sed "s/^s390\(x\)*-redhat/s390\1-ibm/"` + +# Make sure that the host value that is passed to the compile +# is the same as the host that we're using in the spec file +# +compile_host=`grep 'host_triplet =' gtk/Makefile | sed "s/.* = //"` + +if test "x$compile_host" != "x$host" ; then + echo 1>&2 "Host mismatch: compile='$compile_host', spec file='$host'" && exit 1 +fi + +make install DESTDIR=$RPM_BUILD_ROOT \ + RUN_QUERY_IMMODULES_TEST=false + +echo ".so man1/gtk-query-immodules-2.0.1" > $RPM_BUILD_ROOT%{_mandir}/man1/gtk-query-immodules-2.0-%{__isa_bits}.1 + +gzip -c %{SOURCE4} > $RPM_BUILD_ROOT%{_mandir}/man1/update-gtk-immodules.1.gz + +%find_lang gtk20 +%find_lang gtk20-properties + +# +# Make cleaned-up versions of tutorials, examples, and faq for installation +# +mkdir -p tmpdocs +cp -aR docs/tutorial/html tmpdocs/tutorial +cp -aR docs/faq/html tmpdocs/faq + +for dir in examples/* ; do + if [ -d $dir ] ; then + mkdir -p tmpdocs/$dir + for file in $dir/* ; do + install -m 0644 $file tmpdocs/$dir + done + fi +done + +# We need to have separate 32-bit and 64-bit binaries +# for places where we have two copies of the GTK+ package installed. +# (we might have x86_64 and i686 packages on the same system, for example.) +case "$host" in + alpha*|ia64*|ppc64*|powerpc64*|s390x*|x86_64*|aarch64*|mips64*) + mv $RPM_BUILD_ROOT%{_bindir}/gtk-query-immodules-2.0 $RPM_BUILD_ROOT%{_bindir}/gtk-query-immodules-2.0-64 + ;; + *) + mv $RPM_BUILD_ROOT%{_bindir}/gtk-query-immodules-2.0 $RPM_BUILD_ROOT%{_bindir}/gtk-query-immodules-2.0-32 + ;; +esac + +# Install wrappers for the binaries +cp %{SOURCE2} $RPM_BUILD_ROOT%{_bindir}/update-gtk-immodules + +# Input method frameworks want this +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/X11/xinit/xinput.d +cp %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/X11/xinit/xinput.d + +# Remove unpackaged files +rm $RPM_BUILD_ROOT%{_libdir}/*.la +rm $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/*/*.la +rm $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/%{bin_version}/*/*.la +rm $RPM_BUILD_ROOT%{_bindir}/gtk-update-icon-cache +rm $RPM_BUILD_ROOT%{_mandir}/man1/gtk-update-icon-cache.1* + +touch $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/%{bin_version}/immodules.cache + +mkdir -p $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/modules +mkdir -p $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/immodules +mkdir -p $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/%{bin_version}/filesystems + + +%transfiletriggerin -- %{_libdir}/gtk-2.0/immodules/ %{_libdir}/gtk-2.0/%{bin_version}/immodules/ +gtk-query-immodules-2.0-%{__isa_bits} --update-cache + +%transfiletriggerpostun -- %{_libdir}/gtk-2.0/immodules/ %{_libdir}/gtk-2.0/%{bin_version}/immodules/ +gtk-query-immodules-2.0-%{__isa_bits} --update-cache + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files -f gtk20.lang +%license COPYING +%doc AUTHORS NEWS README +%{_bindir}/gtk-query-immodules-2.0* +%{_bindir}/update-gtk-immodules +%{_libdir}/libgtk-x11-2.0.so.* +%{_libdir}/libgdk-x11-2.0.so.* +%{_libdir}/libgailutil.so.* +%dir %{_libdir}/gtk-2.0 +%dir %{_libdir}/gtk-2.0/%{bin_version} +%{_libdir}/gtk-2.0/%{bin_version}/engines +%{_libdir}/gtk-2.0/%{bin_version}/filesystems +%dir %{_libdir}/gtk-2.0/%{bin_version}/immodules +%{_libdir}/gtk-2.0/%{bin_version}/printbackends +%{_libdir}/gtk-2.0/modules +%{_libdir}/gtk-2.0/immodules +%dir %{_datadir}/gtk-2.0 +%{_datadir}/themes/Default +%{_datadir}/themes/Emacs +%{_datadir}/themes/Raleigh +%ghost %{_libdir}/gtk-2.0/%{bin_version}/immodules.cache +%{_libdir}/girepository-1.0 +%{_mandir}/man1/gtk-query-immodules-2.0* +%{_mandir}/man1/update-gtk-immodules.1.gz + +%files immodules +%{_libdir}/gtk-2.0/%{bin_version}/immodules/im-am-et.so +%{_libdir}/gtk-2.0/%{bin_version}/immodules/im-cedilla.so +%{_libdir}/gtk-2.0/%{bin_version}/immodules/im-cyrillic-translit.so +%{_libdir}/gtk-2.0/%{bin_version}/immodules/im-inuktitut.so +%{_libdir}/gtk-2.0/%{bin_version}/immodules/im-ipa.so +%{_libdir}/gtk-2.0/%{bin_version}/immodules/im-multipress.so +%{_libdir}/gtk-2.0/%{bin_version}/immodules/im-thai.so +%{_libdir}/gtk-2.0/%{bin_version}/immodules/im-ti-er.so +%{_libdir}/gtk-2.0/%{bin_version}/immodules/im-ti-et.so +%{_libdir}/gtk-2.0/%{bin_version}/immodules/im-viqr.so +%{_sysconfdir}/X11/xinit/xinput.d/im-cedilla.conf +%dir %{_sysconfdir}/gtk-2.0 +%config(noreplace) %{_sysconfdir}/gtk-2.0/im-multipress.conf + +%files immodule-xim +%{_libdir}/gtk-2.0/%{bin_version}/immodules/im-xim.so + +%files devel -f gtk20-properties.lang +%{_libdir}/lib*.so +%{_libdir}/gtk-2.0/include +%{_includedir}/* +%{_datadir}/aclocal/* +%{_bindir}/gtk-builder-convert +%{_libdir}/pkgconfig/* +%{_bindir}/gtk-demo +%{_datadir}/gtk-2.0/demo +%{_datadir}/gir-1.0 +%{_mandir}/man1/gtk-builder-convert.1.gz + +%files devel-docs +%{_datadir}/gtk-doc +%doc tmpdocs/tutorial +%doc tmpdocs/faq +%doc tmpdocs/examples + +%changelog +* Thu Aug 02 2018 Petr Viktorin - 2.24.32-3.2 +- Port gtk-builder-convert to Python 3 (#1595827) + +* Thu Jun 21 2018 Troy Dawson - 2.24.32-3.1 +- Fix python shebangs (#1580696) + +* Mon May 21 2018 Josh Boyer - 2.24.32-3 +- No longer require imsettings (#1538134) + +* Wed Feb 07 2018 Fedora Release Engineering - 2.24.32-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Tue Jan 09 2018 Kalev Lember - 2.24.32-1 +- Update to 2.24.32 + +* Wed Aug 02 2017 Fedora Release Engineering - 2.24.31-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 2.24.31-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Wed Jun 21 2017 Kalev Lember - 2.24.31-4 +- Filter provides for private modules +- Update package summary + +* Fri Feb 10 2017 Fedora Release Engineering - 2.24.31-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Sep 15 2016 Michal Toman - 2.24.31-2 +- Use gtk-query-immodules-2.0-64 on 64-bit MIPS + +* Sun Sep 11 2016 Kalev Lember - 2.24.31-1 +- Update to 2.24.31 + +* Tue Jul 5 2016 Ville Skyttä - 2.24.30-2 +- Add gtk-query-immodules-2.0 file triggers + +* Mon Mar 07 2016 Kalev Lember - 2.24.30-1 +- Update to 2.24.30 + +* Wed Feb 03 2016 Fedora Release Engineering - 2.24.29-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Dec 11 2015 Kalev Lember - 2.24.29-1 +- Update to 2.24.29 + +* Wed Jun 17 2015 Fedora Release Engineering - 2.24.28-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Wed May 13 2015 Matthias Clasen - 2.24.28-1 +- Update to 2.24.28 + +* Fri Mar 20 2015 Richard Hughes - 2.24.27-2 +- Depend on gdk-pixbuf2-modules as this is now an optional subpackage + +* Tue Mar 3 2015 Matthias Clasen - 2.24.27-1 +- Update to 2.24.27 + +* Sat Feb 21 2015 Till Maas - 2.24.26-2 +- Rebuilt for Fedora 23 Change + https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code + +* Thu Feb 19 2015 Matthias Clasen - 2.24.26-1 +- Update to 2.24.26 + +* Wed Dec 17 2014 Kalev Lember - 2.24.25-2 +- Use gtk-update-icon-cache that's built as gtk3 subpackage +- Fix the build with latest gdk-pixbuf2 + +* Sat Oct 11 2014 Kalev Lember - 2.24.25-1 +- Update to 2.24.25 + +* Mon Sep 29 2014 Matthias Clasen - 2.24.24-4 +- Avoid a crash in the pixbuf engine when used from Qt + +* Thu Sep 04 2014 Kalev Lember - 2.24.24-3 +- Do not abort when releasing an unlocked mutex (#1138146) + +* Sat Aug 16 2014 Fedora Release Engineering - 2.24.24-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Tue Jul 22 2014 Matthias Clasen - 2.24.24-1 +- Update to 2.24.24 + +* Tue Jul 22 2014 Kalev Lember - 2.24.23-3 +- Rebuilt for gobject-introspection 1.41.4 + +* Sat Jun 07 2014 Fedora Release Engineering - 2.24.23-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Fri May 23 2014 Kalev Lember - 2.24.23-1 +- Update to 2.24.23 + +* Mon Nov 11 2013 Matthias Clasen - 2.24.22-2 +- Fix build on aarch64 + +* Fri Oct 11 2013 Matthias Clasen - 2.24.22-1 +- Update to 2.24.22 + +* Wed Sep 18 2013 Kalev Lember - 2.24.21-1 +- Update to 2.24.21 + +* Sat Aug 03 2013 Fedora Release Engineering - 2.24.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Thu Jul 4 2013 Matthias Clasen - 2.24.10-1 +- Update to 2.24.10 +- Make immodule cache handling the same as in gtk3. The cache + file is now in $libdir, no longer in /etc + +* Wed Jun 26 2013 Matthias Clasen - 2.24.19-4 +- Include man pages again +- Add a man page for update-gtk-immodules + +* Wed Jun 26 2013 Marek Kasik - 2.24.19-3 +- Backport listing of Avahi printers from gtk-3.x +- Resolves: #973730 + +* Sat Jun 22 2013 Matthias Clasen - 2.24.19-2 +- Trim %%changelog + +* Sun Jun 16 2013 Matthias Clasen - 2.24.19-1 +- Update to 2.24.19 + +* Mon May 13 2013 Matthias Clasen - 2.24.18-1 +- Update to 2.24.18 + +* Fri May 10 2013 Matthias Clasen - 2.24.17-2 +- Drop explicit automake dep (#961674) + +* Wed Mar 6 2013 Matthias Clasen - 2.24.17-1 +- Update to 2.24.17 + +* Sat Feb 23 2013 Kalev Lember - 2.24.16-1 +- Update to 2.24.16 + +* Thu Feb 21 2013 Ville Skyttä - 2.24.15-2 +- Fix %%postun error on one-arch erase on multilib (#696358). +- Fix bogus dates in %%changelog, other cosmetic specfile tweaks. + +* Sun Feb 10 2013 Kalev Lember - 2.24.15-1 +- Update to 2.24.15 +- Drop the automake 1.13 and gmodule linking patches; fixed upstream + +* Tue Jan 15 2013 Matthias Clasen - 2.24.14-1 +- Update to 2.24.14 + +* Tue Oct 2 2012 Matthias Clasen - 2.24.13-1 +- Update to 2.24.13 + +* Fri Jul 27 2012 Fedora Release Engineering - 2.24.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sun Jul 15 2012 Matthias Clasen - 2.24.11-1 +- Update to 2.24.11 + +* Fri Jun 8 2012 Akira TAGOH - 2.24.10-2 +- Add the backport patch from gtk-2-24 branch to allow fallback for immodules. + This would solves the unexpected immodules selection. (#828764) + +* Mon Feb 6 2012 Matthias Clasen - 2.24.10-1 +- Update to 2.24.10 + +* Wed Feb 1 2012 Peter Robinson - 2.24.8-3 +- Add patch to fix DSO linking. Would have thought these would have long stopped being a problem + +* Fri Jan 13 2012 Fedora Release Engineering - 2.24.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Nov 23 2011 Matthias Clasen - 2.24.8-1 +- Update to 2.24.8 + +* Wed Nov 02 2011 Bill Nottingham - 2.24.7-3 +- add upstream patch for #749541/b.g.o #662633 + +* Wed Oct 26 2011 Fedora Release Engineering - 2.24.7-2 +- Rebuilt for glibc bug#747377 + +* Mon Oct 17 2011 Matthias Clasen - 2.24.7-1 +- Update to 2.24.7 + +* Tue Aug 30 2011 Matthias Clasen - 2.24.6-1 +- Update to 2.24.6 + +* Fri Jun 17 2011 Tomas Bzatek - 2.24.5-1 +- Update to 2.24.5 + +* Mon Jun 13 2011 Daniel Drake - 2.24.4-2 +- Fix unbinding of keycodes on drag-and-drop (olpc#10643) + +* Fri Apr 1 2011 Matthias Clasen - 2.24.4-1 +- Update to 2.24.4 + +* Mon Mar 14 2011 Matthias Clasen - 2.24.3-1 +- Update to 2.24.3 + +* Mon Feb 21 2011 Matthias Clasen - 2.24.1-1 +- Update to 2.24.1 + +* Wed Feb 09 2011 Fedora Release Engineering - 2.24.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sun Jan 30 2011 Matthias Clasen - 2.24.0-1 +- Update to 2.24.0 + +* Thu Jan 6 2011 Matthias Clasen - 2.23.90-1 +- Update to 2.23.90 + +* Wed Nov 10 2010 Matthias Clasen - 2.23.2-1 +- Update to 2.23.2 + +* Wed Sep 29 2010 jkeating - 2.22.0-3 +- Rebuilt for gcc bug 634757 + +* Thu Sep 23 2010 Matthias Clasen - 2.22.0-1 +- Update to 2.22.0 + +* Tue Sep 21 2010 Matthias Clasen - 2.21.8-2 +- Rebuild against newer gobject-introspection + +* Tue Sep 14 2010 Matthias Clasen - 2.21.8-1 +- Update to 2.21.8 + +* Tue Aug 31 2010 Matthias Clasen - 2.21.7-1 +- Update to 2.21.7 + +* Mon Aug 23 2010 Matthias Clasen - 2.21.6-2 +- Co-own /usr/share/gtk-doc (#604367) + +* Tue Aug 17 2010 Matthias Clasen - 2.21.6-1 +- Update to 2.21.6 + +* Thu Jul 15 2010 Colin Walters - 2.21.5-2 +- Rebuild with new gobject-introspection + +* Mon Jul 12 2010 Matthias Clasen - 2.21.5-1 +- Update to 2.21.5 + +* Tue Jul 6 2010 Matthias Clasen - 2.21.4-1 +- Update to 2.21.4 + +* Wed Jun 30 2010 Matthias Clasen - 2.21.3-3 +- Rebuild for "Incompatible version 1.0 (supported: 1.1). GRRR + +* Tue Jun 29 2010 Colin Walters - 2.21.3-2 +- Changes to support building from snapshot + +* Mon Jun 28 2010 Matthias Clasen - 2.21.3-1 +- Update to 2.21.3 + +* Fri Jun 25 2010 Colin Walters - 2.21.2-2 +- drop gir-repository-devel dep + +* Thu Jun 10 2010 Matthias Clasen - 2.21.2-1 +- Update to 2.21.2 + +* Sun May 30 2010 Matthias Clasen - 2.21.1-1 +- Update to 2.21.1 + +* Fri May 7 2010 Matthias Clasen - 2.21.0-1 +- Update to 2.21.0 + +* Sun May 2 2010 Matthias Clasen - 2.20.1-1 +- Update to 2.20.1 + +* Tue Mar 23 2010 Matthias Clasen - 2.20.0-1 +- Update to 2.20.0 + +* Fri Mar 12 2010 Matthias Clasen - 2.19.7-2 +- Support dragging windows from menubars + +* Wed Mar 10 2010 Matthias Clasen - 2.19.7-1 +- Update to 2.19.7 +- Add a VCS tag +- Minor packaging cleanups + +* Tue Feb 23 2010 Matthias Clasen - 2.19.6-1 +- Update to 2.19.6 + +* Thu Feb 18 2010 Richard Hughes - 2.19.5-2 +- Apply a patch from upstream to remove two duplicate prototypes that + breaks the build for many GTK projects. + +* Thu Feb 11 2010 Matthias Clasen - 2.19.5-1 +- Update to 2.19.5 + +* Tue Jan 26 2010 Matthias Clasen - 2.19.4-1 +- Update to 2.19.4 + +* Fri Jan 15 2010 Matthias Clasen - 2.19.3-2 +- Fix a CSW issue that leads to panel crashes + +* Mon Jan 11 2010 Matthias Clasen - 2.19.3-1 +- Update to 2.19.3 + +* Mon Jan 4 2010 Tomas Bzatek - 2.19.2-2 +- Install missing Gdk-2.0.gir + +* Mon Dec 21 2009 Matthias Clasen - 2.19.2-1 +- Update to 2.19.2 + +* Wed Nov 25 2009 Matthias Clasen - 2.18.3-22 +- Make level3 keys work again (#537567) + +* Tue Nov 10 2009 Matthias Clasen - 2.18.3-21 +- Fix refcounting issues in the filechooser that lead + to crashes with device hotplug (gnome #600992) + +* Thu Nov 5 2009 Marek Kasik - 2.18.3-20 +- Do not rotate page when printing to landscape PDF, just +- set correct width and height + +* Mon Nov 2 2009 Marek Kasik - 2.18.3-19 +- Correct rotation of number-up layout when printing landscape + +* Mon Nov 2 2009 Marek Kasik - 2.18.3-18 +- Show correct print preview (gnome bug #592582) + +* Mon Nov 2 2009 Marek Kasik - 2.18.3-17 +- Remove handling of "connecting-to-device" reason (#529364) + +* Sat Oct 31 2009 Matthias Clasen - 2.18.3-16 +- Handle screen changes for tooltips (#531568) + +* Wed Oct 28 2009 Matthias Clasen - 2.18.3-15 +- Work around a bug in the X automatic compositor (#531443) + +* Wed Oct 28 2009 Matthias Clasen - 2.18.3-14 +- Make the new tooltips sharp +- Improve the Metacity compositor workaround for new tooltips + +* Mon Oct 26 2009 Matthias Clasen - 2.18.3-12 +- Fix a possible assertion failure in GtkToolButton + +* Fri Oct 23 2009 Matthew Barnes - 2.18.3-11 +- Fix a GtkIconView hang + +* Fri Oct 23 2009 Matthias Clasen - 2.18.3-10 +- Tweak tooltip positioning +- Make new tooltip style an opt-in theme choice + +* Thu Oct 22 2009 Matthias Clasen - 2.18.3-9 +- Fix a problem with parsing symbolic colors in rc files (#528662) + +* Thu Oct 22 2009 Peter Hutterer - 2.18.3-8 +- compose-sequences.patch: update compose sequences to what's currently in + libX11 git. + +* Wed Oct 21 2009 Matthias Clasen - 2.18.3-7 +- Try to catch some nm-applet problems by rejecting requests to + load icons at size 0 + +* Wed Oct 21 2009 Matthias Clasen - 2.18.3-6 +- Hack around metacity compositor limitations + +* Wed Oct 21 2009 Matthias Clasen - 2.18.3-5 +- Tweak tooltip appearance + +* Tue Oct 20 2009 Matthias Clasen - 2.18.3-4 +- Make tooltips look nicer + +* Sun Oct 18 2009 Matthias Clasen - 2.18.3-3 +- Fix a size allocation problem uncovered by the previous patch + +* Sat Oct 17 2009 Matthias Clasen - 2.18.3-2 +- Support padding around status icons + +* Sat Oct 17 2009 Matthias Clasen - 2.18.3-1 +- Update to 2.18.3 + +* Tue Oct 13 2009 Matthias Clasen - 2.18.2-3 +- Make gtk-builder-convert use system python + +* Fri Oct 9 2009 Matthias Clasen - 2.18.2-2 +- Make selecting the final char work again (#528072) + +* Mon Oct 5 2009 Matthias Clasen - 2.18.2-1 +- Update to 2.18.2 + +* Wed Sep 30 2009 Matthias Clasen - 2.18.1-1 +- Update to 2.18.1 + +* Mon Sep 28 2009 Matthias Clasen - 2.18.0-3 +- Fix a crash in the appearance capplet + +* Sun Sep 27 2009 Matthias Clasen - 2.18.0-2 +- Fix anchor handling in text views (#525910) + +* Wed Sep 23 2009 Matthias Clasen - 2.18.0-1 +- Update to 2.18.0 +- Add some patches for improved printing support + +* Sun Sep 13 2009 Matthias Clasen - 2.17.11-3 +- Fix the bell + +* Sun Sep 6 2009 Matthias Clasen - 2.17.11-2 +- Fix the initial event mask for the root window (#521137) + +* Sat Sep 5 2009 Matthias Clasen - 2.17.11-1 +- Update to 2.17.11 + +* Tue Sep 1 2009 Matthias Clasen - 2.17.10-1 +- Update to 2.17.10 + +* Mon Aug 24 2009 Matthias Clasen - 2.17.9-1 +- Update to 2.17.9 + +* Tue Aug 18 2009 Matthias Clasen - 2.17.8-1 +- Update to 2.17.8 + +* Thu Aug 13 2009 Matthias Clasen - 2.17.7-2 +- Fix a possible crash + +* Tue Aug 11 2009 Matthias Clasen - 2.17.7-1 +- 2.17.7 + +* Tue Aug 11 2009 Matthias Clasen - 2.17.6-6 +- Fix setting root cursors + +* Fri Aug 7 2009 Matthias Clasen - 2.17.6-5 +- Fix gdm background drawing + +* Sun Aug 2 2009 Matthias Clasen - 2.17.6-4 +- Save some space + +* Sat Jul 25 2009 Matthias Clasen - 2.17.6-3 +- 2.17.6 + +* Fri Jul 24 2009 Fedora Release Engineering - 2.17.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Fri Jul 17 2009 Matthias Clasen - 2.17.5-1 +- Update to 2.17.5 + +* Mon Jul 13 2009 Matthias Clasen - 2.17.4-2 +- Fix a problem with gtkentry.h + +* Fri Jul 10 2009 Matthias Clasen - 2.17.4-1 +- Update to 2.17.4 + +* Fri Jul 10 2009 Matthias Clasen - 2.17.3-3 +- Add an imsettings conf file for im-cedilla + +* Wed Jul 8 2009 Matthias Clasen - 2.17.3-2 +- Some fixes for drawing issues, e.g. with statusicons + +* Tue Jul 7 2009 Matthias Clasen - 2.17.3-1 +- Update to 2.17.3 + +* Tue Jun 16 2009 Matthias Clasen - 2.17.2-5 +- Fix an entry completion crash + +* Mon Jun 15 2009 Matthias Clasen - 2.17.2-1 +- Update to 2.17.2 + +* Fri May 29 2009 Matthias Clasen - 2.17.1-1 +- Update to 2.17.1 + +* Tue May 26 2009 Matthias Clasen - 2.17.0-2 +- Update the immodules files in %%postun (#502420) +- Ship the xim immodule separately + +* Fri May 15 2009 Matthias Clasen - 2.17.0-1 +- Update to 2.17.0 + +* Sun Apr 12 2009 Karsten Hopp 2.16.1-2 +- autoconf uses ibm-linux not redhat-linux (s390x), + fix host similar to ppc + +* Sat Apr 11 2009 Matthias Clasen - 2.16.1-1 +- Update to 2.16.1 + +* Tue Apr 7 2009 Marek Kasik - 2.16.0-2 +- Add authentication support to GtkPrintBackend. + +* Fri Mar 13 2009 Matthias Clasen - 2.16.0-1 +- Update to 2.16.0 + +* Mon Mar 2 2009 Matthias Clasen - 2.15.5-1 +- Update to 2.15.5 + +* Thu Feb 26 2009 - Bastien Nocera - 2.15.4-7 +- Require a newer libXrandr to build and run + +* Tue Feb 24 2009 Fedora Release Engineering - 2.15.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Feb 24 2009 Matthias Clasen - 2.15.4-5 +- Drop accidental debug things + +* Mon Feb 23 2009 Matthias Clasen - 2.15.4-4 +- More xrandr handling fixes + +* Sun Feb 22 2009 Matthias Clasen - 2.15.4-3 +- Make the devel-docs subpackage noarch + +* Wed Feb 18 2009 Matthias Clasen - 2.15.4-2 +- Ignore disconnected monitors + +* Tue Feb 17 2009 Matthias Clasen - 2.15.4-1 +- Update to 2.15.4 + +* Sat Feb 14 2009 Matthias Clasen - 2.15.3-3 +- Split off a noarch devel-docs subpackage + +* Fri Feb 6 2009 Matthias Clasen - 2.15.3-2 +- Fix PolicyKit-gnome's use of actions + +* Mon Feb 2 2009 Matthias Clasen - 2.15.3-1 +- Update to 2.15.3 + +* Thu Jan 29 2009 Matthias Clasen - 2.15.2-4 +- Split of an immodules subpackage (#444814) +- Disable ia64 hack thats not needed in Fedora +- Remove some .la files that crept in + +* Wed Jan 28 2009 Marek Kasik - 2.15.2-3 +- modify default_printer.patch to show a network default printer + in the case of no local default printer +- Resolves: #478400 + +* Tue Jan 27 2009 Matthias Clasen - 2.15.2-2 +- Fix togglebuttons causing crashes + +* Tue Jan 27 2009 Matthias Clasen - 2.15.2-1 +- Update to 2.15.2 + +* Mon Jan 26 2009 - Bastien Nocera - 2.15.1-5 +- Add patch to avoid crashes when destroying a GtkScale with marks + +* Sun Jan 25 2009 Matthias Clasen - 2.15.1-4 +- Draw radio action proxies as radio menuitems +- Fix issues with toolitem action proxies and overflow + +* Sat Jan 24 2009 Matthias Clasen - 2.15.1-3 +- Avoid triggering an assertion that makes the gdm greeter nonfunctional + +* Sat Jan 24 2009 Matthias Clasen - 2.15.1-2 +- Fix blank toolbuttons in the evolution composer + +* Fri Jan 23 2009 Matthias Clasen - 2.15.1-1 +- Update to 2.15.1 + +* Mon Jan 19 2009 Marek Kasik - 2.15.0-2 +- fix a problem with default printer in a network +- Resolves: #478400 + +* Thu Jan 1 2009 Matthias Clasen - 2.15.0-1 +- Update to 2.15.0 + +* Tue Dec 16 2008 Matthias Clasen - 2.14.6-1 +- Update to 2.14.6 + +* Tue Dec 2 2008 Matthias Clasen - 2.14.5-4 +- Rebuild for pkg-config provides + +* Mon Nov 24 2008 Matthias Clasen - 2.14.5-3 +- Update to 2.14.5 +- Drop obsolete patches +- Update descriptions + +* Sun Nov 23 2008 Matthias Clasen - 2.14.4-4 +- Reduce rpmlint warnings produced by the ia64 multilib hack +- Fight unnecessary library dependencies + +* Fri Oct 24 2008 Alexander Larsson - 2.14.4-3 +- Manually check for fallback file icon since we're not + always returning that from gio anymore (from upstream) + +* Wed Oct 22 2008 Matthias Clasen - 2.14.4-2 +- Don't emit size-changed signals if the screen size doesn't change + +* Fri Oct 17 2008 Matthias Clasen - 2.14.4-1 +- Update to 2.14.4 + +* Wed Oct 8 2008 Matthias Clasen - 2.14.3-6 +- Fix a problem with file chooser buttons + +* Fri Oct 3 2008 Matthias Clasen - 2.14.3-5 +- Prevent unloading of the gail module + +* Thu Sep 25 2008 Matthias Clasen - 2.14.3-2 +- Move message catalogs for properties to the -devel package + +* Wed Sep 24 2008 Matthias Clasen - 2.14.3-1 +- Update to 2.14.3 + +* Mon Sep 22 2008 Matthias Clasen - 2.14.2-5 +- Rebuild +- Fix a filechooser crash + +* Mon Sep 22 2008 Matthias Clasen - 2.14.2-3 +- BR libXdamage-devel (#462971, Owen Taylor) +- Plug some memory leaks + +* Thu Sep 18 2008 Matthias Clasen - 2.14.2-1 +- Update to 2.14.2 + +* Fri Sep 5 2008 Matthias Clasen - 2.14.0-4 +- Remove the last patch, crash is fixed in at-spi now + +* Fri Sep 5 2008 Matthias Clasen - 2.14.0-3 +- Fix a greeter crash + +* Thu Sep 4 2008 Matthias Clasen - 2.14.0-2 +- Fix a deadlock in pixbuf loader initialization + +* Thu Sep 4 2008 Matthias Clasen - 2.14.0-1 +- Update to 2.14.0 + +* Tue Aug 26 2008 Matthias Clasen - 2.13.7-4 +- Fix an Xrandr bug + +* Mon Aug 25 2008 Matthias Clasen - 2.13.7-3 +- Fix the "swarm of flash windows" + +* Mon Aug 25 2008 Matthias Clasen - 2.13.7-2 +- Fix a possible infinite loop in gtkrc parsing + +* Fri Aug 22 2008 Matthias Clasen - 2.13.7-1 +- Update to 2.13.7 + +* Wed Aug 13 2008 Matthias Clasen - 2.13.6-4 +- Fix sporadic panel crashes + +* Mon Aug 11 2008 Matthias Clasen - 2.13.6-3 +- Fix evolution composer breakage + +* Sat Aug 9 2008 Matthias Clasen - 2.13.6-2 +- Fix menu breakage + +* Tue Aug 5 2008 Matthias Clasen - 2.13.6-1 +- Update to 2.13.6 + +* Mon Jul 21 2008 Matthias Clasen - 2.13.5-1 +- Update to 2.13.5 + +* Thu Jul 10 2008 Matthias Clasen - 2.13.4-2 +- Fix a segfault in the icon view a11y code + +* Sat Jul 5 2008 Matthias Clasen - 2.13.4-1 +- Update to 2.13.4 + +* Thu Jun 26 2008 Lubomir Rintel - 2.13.3-3 +- Fix that makes gio-enabled file chooser return absolute paths + +* Thu Jun 19 2008 Soren Sandmann - 2.13.3-2 +- Require glib 2.17.1 (for g_dgettext) + +* Fri Jun 13 2008 Matthias Clasen - 2.13.3-1 +- Update to 2.13.3 + +* Wed Jun 11 2008 - Marek Kasik - 2.13.2-2 +- Reworked correction of hostname of printer which is the +- print job sent to. +- Resolves: #248245, #449379 + +* Tue Jun 3 2008 Matthias Clasen - 2.13.2-1 +- Update to 2.13.2, drop upstreamed patches + +* Fri May 30 2008 Matthias Clasen - 2.13.1-2 +- Fix a problem with some pixbuf loaders + +* Fri May 30 2008 Matthias Clasen - 2.13.1-1 +- Update to 2.13.1 + +* Thu May 1 2008 Christopher Aillon - 2.13.0-2 +- Remove trailing comma from the enum so -pedantic compiles work + +* Thu Apr 24 2008 Matthias Clasen - 2.13.0-1 +- Update to 2.13.0 + +* Wed Apr 9 2008 Matthias Clasen - 2.12.9-5 +- Fix a possible crash when dragging notebook tabs + +* Wed Apr 9 2008 Matthias Clasen - 2.12.9-4 +- Make sure we use the right icon size for all icons in the + file chooser (Fix by Tomas Bzatek) +- Improve the handling of auth dialogs in the file chooser (Tomas Bzatek) + +* Mon Apr 7 2008 Marek Kasik - 2.12.9-3 +- Correction of "implicit declaration of function 'g_fopen'" + warning +- Resolves: #439114 + +* Thu Apr 3 2008 Matthias Clasen - 2.12.9-2 +- Don't free foreign colormaps + +* Wed Mar 12 2008 Matthias Clasen - 2.12.9-1 +- Update to 2.12.9 + +* Tue Mar 4 2008 Matthias Clasen - 2.12.8-3 +- Honor cups user default options from ~/.cups/lpoptions + +* Tue Feb 26 2008 Matthias Clasen - 2.12.8-2 +- Work with libbeagle.so.1 + +* Tue Feb 12 2008 Matthias Clasen - 2.12.8-1 +- Update to 2.12.8 + +* Wed Jan 30 2008 Matthias Clasen - 2.12.7-1 +- Update to 2.12.7 + +* Tue Jan 29 2008 Matthias Clasen - 2.12.6-1 +- Update to 2.12.6 + +* Tue Jan 8 2008 Matthias Clasen - 2.12.5-1 +- Update to 2.12.5 + +* Tue Jan 8 2008 Matthias Clasen - 2.12.4-1 +- Update to 2.12.4 +- Drop obsolete patches + +* Wed Dec 19 2007 Colin Walters - 2.12.3-5 +- BR libXcomposite-devel so we get the sexiness, also pull it in + in the devel package. + +* Tue Dec 18 2007 Matthias Clasen - 2.12.3-4 +- Fix a gtk-doc problem +- Work around a kernel problem in the build system + +* Mon Dec 17 2007 Matthias Clasen - 2.12.3-3 +- Add a setting to change input methods + +* Tue Dec 11 2007 Matthias Clasen - 2.12.3-2 +- Fix yet another notebook tab related crash + +* Wed Dec 5 2007 Matthias Clasen - 2.12.3-1 +- Update to 2.12.3 + +* Mon Nov 26 2007 Matthias Clasen - 2.12.2-1 +- Update to 2.12.2 + +* Sun Nov 4 2007 Matthias Clasen - 2.12.1-6 +- Include the /usr/lib/gtk-2.0/2.10.0/filesystems directory + +* Thu Oct 25 2007 Matthias Clasen - 2.12.1-5 +- Fix a bug that prevents GtkBuilder-using apps (like totem) + to run in some locales (like Turkish) (#348631) + +* Mon Oct 22 2007 Matthias Clasen - 2.12.1-4 +- Fix a crash in gnome-system-log (#321701) + +* Wed Oct 17 2007 Matthias Clasen - 2.12.1-2 +- Fix a crash in the firefox print preview (#336771) + +* Wed Oct 17 2007 Matthias Clasen - 2.12.1-1 +- Update to 2.12.1 (bug fixes and translation updates) +- Drop obsolete patches + +* Thu Oct 11 2007 Matthias Clasen - 2.12.0-6 +- Fix a double-free problem in gtk-update-icon-cache (#327711) + +* Thu Oct 4 2007 Matthias Clasen - 2.12.0-5 +- Fix a grab problem with multiple volume buttons + +* Tue Sep 25 2007 Matthias Clasen - 2.12.0-4 +- Fix a crash in simple search +- Drop obsolete Obsoletes and Conflicts + +* Thu Sep 20 2007 Matthias Clasen - 2.12.0-3 +- Fix a problem with swt and tooltips + +* Tue Sep 18 2007 Matthias Clasen - 2.12.0-2 +- Adapt to tracker ABI changes + +* Fri Sep 14 2007 Matthias Clasen - 2.12.0-1 +- Update to 2.12.0 + +* Fri Sep 7 2007 Matthias Clasen - 2.11.6-9 +- Add a workaround for the flash plugin + +* Fri Sep 7 2007 Ray Strode - 2.11.6-8 +- install dummy binary in libdir/gtk-2.0/immodules directory to + aid rpm when doing ia64 multilib (bug 253726) + +* Mon Aug 27 2007 Jens Petersen - 2.11.6-7 +- own libdir/gtk-2.0/immodules directory (#255621) + +* Wed Aug 8 2007 Matthias Clasen - 2.11.6-6 +- Improve tooltip compatibility to make acroread work again + +* Sun Aug 5 2007 Matthias Clasen - 2.11.6-5 +- Really move gtk-demo over + +* Thu Aug 2 2007 Matthias Clasen - 2.11.6-4 +- Move gtk-demo to the -devel package +- Don't install ChangeLog +- Update the License field + +* Wed Jul 25 2007 Matthias Clasen - 2.11.6-3 +- Fix the behaviour of tooltips on system tray icons + +* Tue Jul 24 2007 Matthias Clasen - 2.11.6-2 +- Silence the icon cache validator (#248789) + +* Mon Jul 23 2007 Matthias Clasen - 2.11.6-1 +- Update to 2.11.6 +- Make it build against recent cups + +* Thu Jul 19 2007 Matthias Clasen - 2.11.5-4 +- Up the glib requirement + +* Sun Jul 8 2007 Matthias Clasen - 2.11.5-3 +- Own /usr/lib/gtk-2.0/modules + +* Mon Jul 2 2007 Matthias Clasen - 2.11.5-1 +- Update to 2.11.5 + +* Tue Jun 19 2007 Matthias Clasen - 2.11.4-1 +- Update to 2.11.4 + +* Sun Jun 17 2007 Matthias Clasen - 2.11.3-4 +- Update versioned dependencies (#244602) + +* Sun Jun 17 2007 Matthias Clasen - 2.11.3-3 +- Clean up directory ownership + +* Sat Jun 16 2007 Caolan McNamara - 2.11.3-2 +- Resolves: rhbz#244516 avoid typename in headers for C++ + +* Fri Jun 15 2007 Matthias Clasen - 2.11.3-1 +- Update to 2.11.3 +- Drop upstreamed patches + +* Wed Jun 6 2007 Matthias Clasen - 2.11.2-1 +- Update to 2.11.2 + +* Mon Jun 4 2007 Matthias Clasen - 2.11.1-1 +- Update to 2.11.1 +- Update patches + +* Thu May 24 2007 Matthias Clasen - 2.11.0-1 +- Update to 2.11.0 +- Drop upstreamed patches + +* Sat May 19 2007 Matthias Clasen - 2.10.12-1 +- Update to 2.10.12 +- Drop upstreamed patches + +* Tue May 15 2007 Matthias Clasen - 2.10.11-6 +- Backport some fixes for the ftw()-based search engine + +* Tue Apr 10 2007 Matthias Clasen - 2.10.11-5 +- Use DESKTOP xdg-user-dir in the file chooser + +* Mon Apr 9 2007 Matthias Clasen - 2.10.11-4 +- Fix a memory leak in the search patch + +* Wed Mar 28 2007 Matthias Clasen - 2.10.11-3 +- Support raw printers + +* Tue Mar 20 2007 Florian La Roche - 2.10.11-2 +- fix Conflicts: libgnomeui line + +* Wed Mar 14 2007 Matthias Clasen - 2.10.11-1 +- Update to 2.10.11 +- Require libpng-devel in the devel package (#232013) + +* Mon Mar 12 2007 Matthias Clasen - 2.10.10-1 +- Update to 2.10.10 + +* Fri Feb 9 2007 Stepan Kasal - 2.10.9-4 +- Clean up the autotools calls in %%prep. + +* Fri Feb 2 2007 Matthias Clasen - 2.10.9-3 +- Fix update-gtk-immodules and update-gdk-pixbuf-loaders + being swapped (#227134) + +* Tue Jan 30 2007 Matthias Clasen - 2.10.9-2 +- Fix filechooser search support + +* Mon Jan 22 2007 Matthias Clasen - 2.10.9-1 +- Update to 2.10.9 + +* Wed Jan 17 2007 Matthias Clasen - 2.10.8-2 +- Fix a crash in the recent-files menu code. + +* Wed Jan 17 2007 Matthias Clasen - 2.10.8-1 +- Update to 2.10.8 + +* Tue Jan 09 2007 Behdad Esfahbod - 2.10.7-2 +- Configure with --with-included-loaders=png. Saves a page per process + +* Thu Dec 21 2006 Matthias Clasen - 2.10.7-1 +- Make gdk_pixbuf_loader_close() idempotent +- Always emit the closed signal when the loader is closed + +* Thu Dec 21 2006 Matthias Clasen - 2.10.6-8 +- Make update scripts handle slight variations in $host + +* Sat Dec 9 2006 Matthias Clasen - 2.10.6-7 +- Fix error handling in pixbuf loaders (#218755) +- Fix clipping of mnemonic underlines (#218615) +- Give accessible names to message dialogs (#215472) +- Fix a crash in the handling of invalid icon themes (#218247) +- Make the print dialog work when the 'BrowseShortNames Off' cups + option is used (#217220) + +* Sat Nov 25 2006 Matthias Clasen - 2.10.6-6 +- Fix a recent-files related crash + +* Tue Nov 21 2006 Matthias Clasen - 2.10.6-5 +- Change the search patch to check for beagle first + +* Mon Nov 20 2006 Matthias Clasen - 2.10.6-4 +- Some spec file cleanups + +* Fri Nov 17 2006 Matthias Clasen - 2.10.6-3 +- Rework the filechooser search to support tracker, too + +* Thu Nov 16 2006 Matthias Clasen - 2.10.6-2 +- Avoid a possible segfault (#215933) + +* Sat Sep 30 2006 Matthias Clasen - 2.10.4-4 +- Avoid a possible segfault (gnome #358405) + +* Fri Sep 29 2006 Matthias Clasen - 2.10.4-3 +- Fix a possible deadlock when not using the gnome-vfs + filesystem backend + +* Sat Sep 23 2006 Matthias Clasen - 2.10.4-2 +- Fix a problem with the search patch + +* Sat Sep 23 2006 Matthias Clasen - 2.10.4-1 +- Update to 2.10.4 +- Drop upstreamed patches +- Update the search patch +- Require pkgconfig in the -devel package + +* Tue Sep 19 2006 Matthias Clasen - 2.10.3-7 +- Fix issues with auth dialogs in the file chooser + +* Wed Sep 13 2006 Matthias Clasen - 2.10.3-6 +- Don't spew a warning if libbeagle is not installed + +* Wed Sep 13 2006 Matthias Clasen - 2.10.3-5 +- Make color picker work with window groups + +* Sun Sep 10 2006 Matthias Clasen - 2.10.3-4 +- Fix display of Desktop in file chooser buttons. + +* Fri Sep 8 2006 Matthias Clasen - 2.10.3-3.fc6 +- Fix a Sylpheed crash (#192101) + +* Tue Sep 5 2006 Matthias Clasen - 2.10.3-2.fc6 +- Use fam for recent files + +* Tue Sep 5 2006 Matthias Clasen - 2.10.3-1.fc6 +- Update to 2.10.3 + +* Fri Sep 1 2006 Matthias Clasen - 2.10.2-6.fc6 +- Fix a problem with entering Hangul in entries + +* Thu Aug 31 2006 Matthias Clasen - 2.10.2-5.fc6 +- Fix problems with listing printers +- Stop cursor blinking after a while, to save energy + +* Mon Aug 28 2006 Matthias Clasen - 2.10.2-4.fc6 +- Use a reasonable timeout when polling for printer + list updates (#203585) + +* Wed Aug 23 2006 Matthias Clasen - 2.10.2-3.fc6 +- Fix confusion between values and names in printer options (#203588) + +* Fri Aug 18 2006 Matthias Clasen - 2.10.2-2.fc6 +- Fix some problems with the recent files code + +* Fri Aug 18 2006 Matthias Clasen - 2.10.2-1.fc6 +- Update to 2.10.2 + +* Mon Aug 14 2006 Matthias Clasen - 2.10.1-3.fc6 +- Fix a problem with the search patch + +* Wed Aug 9 2006 Ray Strode - 2.10.1-2 +- patch from Jonathan Matthew to fix + crash in GtkTreeModelFilter (upstream bug 346800) + +* Sun Jul 23 2006 Matthias Clasen - 2.10.1-1 +- Update to 2.10.1 + +* Wed Jul 19 2006 Matthias Clasen - 2.10.0-5 +- Fix a typo in the Search support patch + +* Tue Jul 18 2006 Matthias Clasen - 2.10.0-4 +- Make the Search support more bulletproof + +* Sun Jul 16 2006 Matthias Clasen - 2.10.0-3 +- Fix a problem with the Search support + +* Sat Jul 15 2006 Matthias Clasen - 2.10.0-2 +- Add Search support to the filechooser + +* Wed Jul 12 2006 Jesse Keating - 2.10.0-1.1 +- rebuild + +* Mon Jul 3 2006 Matthias Clasen - 2.10.0-1 +- Update to 2.10.0 + +* Wed Jun 21 2006 Matthias Clasen - 2.9.4-1 +- Update to 2.9.4 + +* Thu Jun 15 2006 Matthias Clasen - 2.9.3-4 +- Add more BuildRequires + +* Wed Jun 14 2006 Matthias Clasen - 2.9.3-3 +- Require cairo 1.1.8 + +* Wed Jun 14 2006 Tomas Mraz - 2.9.3-2 +- rebuilt with new gnutls + +* Tue Jun 13 2006 Matthias Clasen - 2.9.3-1 +- Update to 2.9.3 + +* Thu Jun 8 2006 Matthias Clasen - 2.9.2-4 +- Fix a crash in evolution + +* Wed Jun 7 2006 Matthias Clasen - 2.9.2-3 +- Fix the builtin icon cache + +* Tue Jun 6 2006 Matthias Clasen - 2.9.2-2 +- Add a BuildRequires for cups-devel +- configure with --disable-rebuilds + +* Mon Jun 5 2006 Matthias Clasen - 2.9.2-1 +- Update to 2.9.2 + +* Fri Jun 2 2006 Matthias Clasen - 2.9.1-2 +- Rebuild + +* Tue May 16 2006 Matthias Clasen - 2.9.1-1 +- Update to 2.9.1 + +* Mon May 8 2006 Matthias Clasen - 2.9.0-4 +- Bump required versions of GLib, Pango and cairo +- Add conflicts to force updating theme engine packages + +* Fri May 5 2006 Matthias Clasen - 2.9.0-1 +- Update to 2.9.0 + +* Fri Apr 7 2006 Matthias Clasen - 2.8.17-2 +- Update to 2.8.17 + +* Thu Mar 30 2006 Matthias Clasen - 2.8.16-2 +- Fix a multiscreen dnd crash + +* Wed Mar 15 2006 Matthias Clasen - 2.8.16-1 +- Update to 2.8.16 + +* Mon Mar 13 2006 Matthias Clasen - 2.8.15-1 +- Update to 2.8.15 +- Drop upstreamed patch + +* Fri Mar 10 2006 Matthias Clasen - 2.8.14-2 +- Fix a crash when using accessible treeviews + +* Wed Mar 8 2006 Matthias Clasen - 2.8.14-1 +- Update to 2.8.14 to fix a possible memory overrun + in gtk_object_sink + +* Sun Mar 5 2006 Matthias Clasen - 2.8.13-4 +- Don't ship .la files for engines, either + +* Wed Mar 01 2006 Karsten Hopp 2.8.13-3 +- Buildrequires: libXi-devel + +* Mon Feb 27 2006 Ray Strode - 2.8.13-2 +- s/Prereq/Requires/ for hicolor dep + +* Sat Feb 25 2006 Matthias Clasen - 2.8.13-1 +- Update to 2.8.13 + +* Fri Feb 24 2006 Ray Strode - 2.8.12-8 +- add dependency on hicolor + +* Sat Feb 11 2006 Matthias Clasen - 2.8.12-7.1 +- Update to 2.8.12 + +* Fri Feb 10 2006 Jesse Keating - 2.8.11-7.1 +- bump again for double-long bug on ppc(64) + +* Wed Feb 8 2006 Matthias Clasen 2.8.11-7 +- Fix a double free in the file chooser + +* Tue Feb 7 2006 Christopher Aillon 2.8.11-6 +- Fix up jkeating's recent %%changelog entry to match this spec's style +- Make the devel package Require %%{version}-%%{release} + +* Tue Feb 7 2006 Jesse Keating 2.8.11-5.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Mon Feb 6 2006 Matthias Clasen 2.8.11-5 +- Sync render fix with upstream + +* Fri Feb 3 2006 Matthias Clasen 2.8.11-3 +- Avoid a slowpath in XRender + +* Fri Jan 27 2006 Matthias Clasen 2.8.11-1 +- Update to 2.8.11 + +* Thu Jan 19 2006 Christopher Aillon 2.8.10-4 +- Use Unicode character 2022 for the default invisible character + +* Wed Jan 18 2006 Matthias Clasen 2.8.10-3 +- Rebuild against GLib 2.9.4 + +* Fri Jan 13 2006 Matthias Clasen 2.8.10-2 +- Run make check + +* Thu Jan 12 2006 Matthias Clasen 2.8.10-1 +- Update to 2.8.10 + +* Sat Dec 10 2005 Matthias Clasen 2.8.9-1 +- Update to 2.8.9 + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Mon Nov 28 2005 Matthias Clasen 2.8.8-1 +- Update to 2.8.8 + +* Tue Nov 15 2005 Matthias Clasen 2.8.7-1 +- Update to 2.8.7 + +* Tue Nov 8 2005 Matthias Clasen 2.8.6-6 +- Clean up spec file a bit + +* Mon Oct 31 2005 Matthias Clasen 2.8.6-5 +- Switch requires to modular X + +* Mon Oct 24 2005 Matthias Clasen 2.8.6-3 +- Add a setting to hide the input method menu + +* Wed Oct 19 2005 Matthias Clasen 2.8.6-2 +- Sync to upstream xdgmime + +* Wed Oct 5 2005 Matthias Clasen 2.8.6-1 +- New upstream version + +* Mon Oct 3 2005 Matthias Clasen 2.8.5-1 +- New upstream version + +* Fri Sep 30 2005 Matthias Clasen 2.8.4-2 +- Prevent an overflow in size hints handling + +* Tue Sep 27 2005 Matthias Clasen 2.8.4-1 +- New upstream version + +* Mon Aug 29 2005 Matthias Clasen 2.8.3-1 +- Newer upstream version + +* Mon Aug 15 2005 Matthias Clasen 2.8.0-1 +- Newer upstream version + +* Thu Aug 4 2005 Matthias Clasen +- Newer upstream version + +* Thu Jul 28 2005 Owen Taylor 2.7.4-1 +- Update to 2.7.4 + +* Fri Jul 15 2005 Matthias Clasen +- Update to 2.7.3 + +* Fri Jul 8 2005 Matthias Clasen +- Update to 2.7.2 + +* Fri Jul 1 2005 Matthias Clasen +- Update to 2.7.1 + +* Tue Jun 21 2005 Matthias Clasen +- update to 2.7.0 +- bump requirements + +* Tue May 10 2005 Matthias Clasen +- remove the openssl prereq again, as it did not fix + Florians problem. + +* Sun May 8 2005 Matthias Clasen +- remove debug spew + +* Fri Apr 22 2005 Florian La Roche +- add a Prereq: for the new openssl version to be installed first + +* Wed Apr 13 2005 Matthias Clasen - 2.6.7-1 +- Update to 2.6.7 + +* Mon Apr 11 2005 Matthias Clasen - 2.6.6-1 +- Update to 2.6.6 +- Drop upstreamed patches + +* Sun Apr 10 2005 Jeremy Katz - 2.6.5-2 +- add patch from upstream CVS for broken icons (#154340, bgo#169870) + +* Sat Apr 9 2005 Matthias Clasen - 2.6.5-1 +- Update to 2.6.5 +- Drop upstreamed patches + +* Mon Mar 28 2005 Matthias Clasen - 2.6.4-3 +- Fix a double free in the bmp loader + +* Wed Mar 2 2005 Matthias Clasen - 2.6.4-2 +- Rebuild with gcc4 + +* Tue Mar 1 2005 Matthias Clasen - 2.6.4-1 +- Upgrade to 2.6.4 +- Remove upstreamed patch + +* Mon Feb 28 2005 Matthias Clasen - 2.6.3-1 +- Upgrade to 2.6.3 + +* Fri Feb 4 2005 Matthias Clasen - 2.6.2-1 +- Upgrade to 2.6.2 + +* Mon Jan 10 2005 Matthias Clasen - 2.6.1-1 +- Upgrade to 2.6.1 +- Drop no longer needed fixes + +* Mon Dec 06 2004 Matthias Clasen - 2.4.14-1 +- Upgrade to 2.4.14 +- Remove the no longer needed pa.po patch +- Adjust gtk+-2.4.7-update-counter.patch + +* Wed Dec 01 2004 Matthias Clasen - 2.4.13-13 +- Revert an accidental ABI change. (#151450) + +* Wed Nov 03 2004 Matthias Clasen - 2.4.13-11 +- Fix an oversight in the previous fix. + +* Wed Nov 03 2004 Matthias Clasen - 2.4.13-8 +- Fix an oversight in the previous fix, really + fix the crash. (#137922) + +* Thu Oct 28 2004 Matthias Clasen - 2.4.13-5 +- Include an upstream bugfix in the + gtk+-2.4.9-treeview-activate.patch. This fixes + a crasher bug (#137461) + +* Fri Oct 22 2004 Owen Taylor - 2.4.13-3 +- Fix crash with backspace at end of buffer (#136840) + +* Wed Oct 20 2004 Owen Taylor - 2.4.13-2 +- Fix up backspace-deletes-character patches to actually work + (#135656.) + +* Wed Oct 20 2004 Matthias Clasen +- Fix the translation of default:LTR in pa.po (#136431) + +* Tue Oct 12 2004 Matthias Clasen - 2.4.13-1 +- Upgrade to 2.4.13 + +* Mon Oct 04 2004 Matthias Clasen - 2.4.10-7 +- Don't move binaries to -32/-64 needlessly. + +* Fri Oct 01 2004 Matthias Clasen - 2.4.10-6 +- Fix a problem in the last patch. + +* Tue Sep 28 2004 Matthias Clasen - 2.4.10-5 +- Improve completion popup speed for large directories (#133313) + +* Thu Sep 23 2004 Matthias Clasen - 2.4.10-4 +- Make arrows in path bar larger. + +* Wed Sep 22 2004 Matthias Clasen - 2.4.10-3 +- Make SELECT_FOLDER work better in the file chooser. + +* Wed Sep 15 2004 Matthias Clasen - 2.4.10-2 +- don't install .la files. (#132792) + +* Wed Sep 15 2004 Matthias Clasen - 2.4.10-1 +- update to latest upstream version, drop some patches + +* Wed Sep 15 2004 Matthias Clasen - 2.4.9-9 +- Fix issues in the xpm and ico loaders + found by Chris Evans (#130711) + +* Mon Sep 13 2004 Matthias Clasen - 2.4.9-8 +- bring expanders back to their old size + +* Fri Sep 10 2004 Matthias Clasen - 2.4.9-7 +- backport support for PangoLogAttr.backspace_deletes_character + +* Tue Sep 7 2004 Matthias Clasen - 2.4.9-6 +- fix expander drawing (#131676) + +* Thu Aug 26 2004 Matthias Clasen - 2.4.9-5 +- prereq a new enough libtiff (#130678) + +* Wed Aug 25 2004 Jonathan Blandford 2.4.9-4 +- backport patch to make typeahead activate the row + +* Wed Aug 25 2004 Matthias Clasen - 2.4.9-3 +- adjust patches + +* Wed Aug 25 2004 Matthias Clasen - 2.4.9-1 +- update to 2.4.9 + +* Tue Aug 24 2004 Soren Sandmann 2.4.7-4 +- Backport update counter + +* Tue Aug 24 2004 Jonathan Blandford 2.4.7-2.3 +- patch to make '/' do the search popup + +* Fri Aug 20 2004 Owen Taylor - 2.4.7-2.2 +- Fix problem with infinite loop on bad BMP data (#130450, + test BMP from Chris Evans, fix from Manish Singh) + +* Sat Aug 14 2004 Matthias Clasen 2.4.7-1 +- update to 2.4.7 + +* Fri Aug 13 2004 Matthias Clasen 2.4.6-1 +- update to 2.4.6 +- call libtoolize --force to win .so's back... + +* Fri Jul 30 2004 Jonathan Blandford 2.4.4-4 +- add typeahead patch to GtkTreeView +- automake-1.9 + +* Tue Jul 27 2004 Matthias Clasen - 2.4.4-3 +- Use -64 suffix on powerpc64. (#128605) + +* Fri Jul 16 2004 Matthias Clasen - 2.4.4-2 +- Fix permissions of gdk-pixbuf-csource script. +- Escape macros in %%changelog + +* Fri Jul 9 2004 Matthias Clasen - 2.4.4-1 +- Update to 2.4.4 + +* Thu Jul 8 2004 Matthias Clasen - 2.4.1-5 +- Look for the gtk.immodules file in the right location. (#127073) + +* Thu Jul 8 2004 Matthias Clasen - 2.4.1-4 +- Add a wrapper for gdk-pixbuf-csource. + +* Wed Jun 23 2004 Matthias Clasen - 2.4.1-3 +- Don't install testgtk and testtext +- Rename binaries to -32/-64 (#124478) +- Move arch-dependent config files to /etc/gtk-2.0/$host (#124482) +- Add wrappers for updating the arch-dependent config files + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Thu May 20 2004 Matthias Clasen - 2.4.1-1 +- Upgrade to 2.4.1 + +* Wed Mar 17 2004 Alex Larsson 2.4.0-1 +- update to 2.4.0 +- update bin_version to 2.4.0 + +* Wed Mar 10 2004 Mark McLoughlin 2.3.6-1 +- Update to 2.3.6 +- Remove 2.3.5 buildfix patch +- Remove gdk-pixbuf-xlib dependency fix + +* Wed Mar 03 2004 Mark McLoughlin 2.3.5-1 +- Update to 2.3.5 +- Bump the required glib and pango versions +- Make it build on x86_64 + +* Tue Mar 02 2004 Elliot Lee +- rebuilt + +* Wed Feb 25 2004 Mark McLoughlin 2.3.4-1 +- Update to 2.3.4 +- Remove the xft-prefs patch, its upstream now +- Don't kill libtool's hardcode_libdir_flag_spec anymore + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Fri Jan 23 2004 Alexander Larsson 2.3.2-2 +- Remove old HAVE_XFT2 check +- find_lang gtk20-properties too + +* Fri Jan 23 2004 Jonathan Blandford 2.3.2-1 +- new version +- removed patches that have been applied to 2.3.x branch + +* Mon Dec 1 2003 Thomas Woerner 2.2.4-5.2 +- removed rpath + +* Wed Oct 15 2003 Owen Taylor 2.2.4-5.1 +- Link gdk-pixbuf-xlib against gdk-pixbuf (#106678) + +* Fri Oct 3 2003 Owen Taylor 2.2.4-4.0 +- Fix 64-bit problem in gtkimcontextxim.c (#106124) + +* Tue Sep 16 2003 Owen Taylor 2.2.4-3.0 +- Fix an infinite loop that can occur in the panel (#104524) + +* Fri Sep 5 2003 Owen Taylor 2.2.4-2.1 +- Fix up tutorial in packaging (#90197), add FAQ +- Back out change to make KP_Decimal interpretation dependent on locale + (#101046) + +* Thu Sep 4 2003 Owen Taylor 2.2.4-1.1 +- Version 2.2.4 - fixes a few small problems in 2.2.3 + +* Tue Aug 26 2003 Owen Taylor 2.2.3-1.1 +- Version 2.2.3 + +* Thu Jul 10 2003 Owen Taylor 2.2.2-2.0 +- Change release number for rebuild + +* Wed Jul 9 2003 Owen Taylor 2.2.2-2.1 +- XFlush() rather than XSync() at the end of process_all_updates() + (big remote X anaconda speedup) +- Add patch to fix frequent Red Hat 9 crash + http://bugzilla.gnome.org/show_bug.cgi?id=105745 + +* Mon Jun 9 2003 Owen Taylor +- Version 2.2.2 +- Mark assembly files as noexec-stack + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Mon Feb 24 2003 Jonathan Blandford 2.2.1-2 +- add a libpng dependency to pull in the rebuilt version. + +* Fri Feb 21 2003 Jonathan Blandford 2.2.1-2 +- add a patch to fix broken scrolling in a lot of applications. + +* Sun Feb 2 2003 Owen Taylor +- Version 2.2.1 +- Update xftprefs for gtk+-2.2.1 + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Tue Jan 14 2003 Jonathan Blandford +- patch to fix TreeView misdrawing. Remove when 2.2.1 comes out + +* Fri Dec 20 2002 Owen Taylor +- Version 2.2.0 + +* Fri Dec 20 2002 Nalin Dahyabhai +- Fix postun to not try to run a script through ldconfig +- Only remove the gtk.immodules and gdk-pixbuf.loaders files if uninstalling + while not upgrading + +* Wed Dec 11 2002 Owen Taylor +- Version 2.1.5 + +* Wed Dec 11 2002 Owen Taylor +- Version 2.1.4 + +* Wed Dec 4 2002 Owen Taylor +- Fix problem with GtkCombo not setting text to first item + +* Tue Dec 3 2002 Owen Taylor +- Version 2.1.3, re-add xftprefs patch + +* Fri Nov 22 2002 Havoc Pennington +- rebuild with xft support + +* Wed Nov 20 2002 Havoc Pennington +- rebuild to hack around xft.pc being in the wrong place +- buildreq the pango with pangoxft + +* Thu Nov 7 2002 Havoc Pennington +- 2.1.3 +- remove TODO from doc, no longer exists +- remove 64bit patch, now upstream +- comment out scroll_to patch, jrb has to deal with this +- remove keycode patch now upstream +- remove usintl patch now upstream +- remove imenvar patch, now upstream +- remove xftprefs patch now upstream +- remove xftdraw patch now upstream +- remove installdir patch (no longer applies) and do "makeinstall RUN_QUERY_IMMODULES_TEST=false" +- remove extranotify patch, now upstream +- add gdk-pixbuf-query-loaders to file list +- remove gdk-pixbuf.loaders and gtk.immodules in postun as they are + not owned by the package (these should probably live in /var since they + aren't config files and we overwrite them all the time) + +* Thu Oct 3 2002 Owen Taylor +- Add a fix for a 64bit problem in gtktypeutils.h +- Bump in rebuild for RPM configuration problem + +* Sun Aug 25 2002 Jonathan Blandford +- fix gtk_tree_view_scroll_to_cell + +* Fri Aug 23 2002 Owen Taylor +- Fixed Raleigh theme missing from package list + +* Mon Aug 19 2002 Owen Taylor +- Fix a memory leak in xftprefs.patch +- Fix extra settings notifies on startup that were causing significant + performance problems as fonts were reloaded. + +* Tue Aug 13 2002 Owen Taylor +- Fixes to GtkIMContextSimple compose table for us-intl keyboards + (#70995, Alexandre Oliva) +- Fix problem with keycodes passed to GtkIMContextXIM + +* Thu Aug 8 2002 Owen Taylor +- Remove fixed-ltmain.sh, no longer needed +- Fix bug with GTK_IM_MODULE environment variable +- Remove profile.d entries setting GDK_USE_XFT, since we now default to it on +- Backport patch from CVS HEAD to get Xft to work on non-RENDER XServers +- Version 2.0.6 + +* Tue Jul 16 2002 Owen Taylor +- Fix cut and paste error in xftprefs patch pointed out by Anders Carlsson + +* Mon Jul 8 2002 Owen Taylor +- Add patch to hook Xft up to XSETTINGS + +* Tue Jul 2 2002 Jonathan Blandford +- tree-view fixes for anaconda. Already in CVS. + +* Fri Jun 21 2002 Owen Taylor +- Default GDK_USE_XFT to on, not off + +* Sun Jun 16 2002 Havoc Pennington +- 2.0.5 +- remove xft configure.in patch + +* Fri Jun 07 2002 Havoc Pennington +- rebuild in different environment + +* Fri Jun 7 2002 Havoc Pennington +- rebuild + +* Thu Jun 6 2002 Owen Taylor +- Add patch so that configuration works with pango-1.1/fontconfig + +* Tue Jun 4 2002 Havoc Pennington +- 2.0.3 + +* Mon Jun 03 2002 Havoc Pennington +- rebuild in different environment + +* Mon Jun 3 2002 Havoc Pennington +- drop /etc/gtk-2.0/gtkrc from the file list, will now be provided by redhat-artwork + +* Wed May 29 2002 Havoc Pennington +- rebuild in different environment + +* Wed May 29 2002 Havoc Pennington +- add profile.d entries to set GDK_USE_XFT + +* Thu May 23 2002 Tim Powers +- automated rebuild + +* Thu Apr 25 2002 Havoc Pennington +- rebuild in different environment +- hardcode automake 1.4 req + +* Fri Apr 19 2002 Havoc Pennington +- do the prefix/lib -> libdir thing +- include key themes in the package + +* Mon Apr 15 2002 root +- Fix missing .po files (#63336) + +* Thu Apr 11 2002 Owen Taylor +- Add reference docs to -devel package (#61184) +- Use GTK2_RC_FILES, not GTK_RC_FILES, since KDE points GTK_RC_FILES + to gtk-1.2 ~/.gtkrc + +* Wed Apr 3 2002 Alex Larsson +- Change dependency for glib2 since gtk and glib versions mismatch + +* Wed Apr 3 2002 Alex Larsson +- Update to version 2.0.2 + +* Fri Mar 8 2002 Owen Taylor +- Version 2.0.0 + +* Mon Feb 25 2002 Alex Larsson +- Update to 1.3.15 + +* Thu Feb 21 2002 Alex Larsson +- Bump for rebuild + +* Mon Feb 18 2002 Alex Larsson +- Update to 1.3.14 + +* Fri Feb 15 2002 Havoc Pennington +- add horrible buildrequires hack + +* Thu Feb 14 2002 Havoc Pennington +- 1.3.13.91 snapshot + +* Mon Feb 11 2002 Matt Wilson +- build from CVS snapshot +- use setup -q + +* Wed Jan 30 2002 Owen Taylor +- Version 1.3.13 + +* Tue Jan 22 2002 Havoc Pennington +- automake14 + +* Wed Jan 2 2002 Havoc Pennington +- 1.3.12.90 snapshot + +* Sun Nov 25 2001 Havoc Pennington +- Version 1.3.11 +- check atk/pango versions explicitly prior to build, + so that --nodeps tricks don't result in bad binary RPMs + +* Fri Oct 5 2001 Havoc Pennington +- pixbuf loaders were missing from file list +- conflict with gdk-pixbuf-devel <= 0.11 + +* Thu Oct 4 2001 Havoc Pennington +- cvs snap + +* Thu Sep 27 2001 Havoc Pennington +- sync with Owen's version + +* Thu Sep 20 2001 Havoc Pennington +- smp_mflags +- langify + +* Wed Sep 19 2001 Havoc Pennington +- 1.3.8 +- add automake hackarounds + +* Thu Sep 13 2001 Havoc Pennington +- conflict with old GTK with headers not moved +- prereq new version of pango + +* Mon Sep 10 2001 Havoc Pennington +- update to CVS snapshot + +* Wed Sep 5 2001 Havoc Pennington +- build require specific versions of dependencies + +* Tue Sep 4 2001 Owen Taylor +- Version 1.3.7 + +* Thu Jul 26 2001 Havoc Pennington +- Obsolete Inti and Inti-devel, #49967 + +* Sat Jul 21 2001 Owen Taylor +- PreReq specific pango and atk versions (#49434) +- Don't package gtk.immodules (#49584) +- Added BuildPrereq for libtiff-devel, libjpeg-devel, libpng-devel (#49495) +- Configure with --disable-gtk-doc (#48987) +- Package libgdk_pixbuf_xlib (#47753) + +* Sat Jul 7 2001 Tim Powers +- languify to satisfy rpmlint + +* Thu Jun 21 2001 Florian La Roche +- use something better than libtool + +* Wed Jun 13 2001 Havoc Pennington +- 1.3.6 +- libtool hackery +- obsolete gtk+-gtkbeta-devel + +* Fri May 4 2001 Owen Taylor +- Version 1.3.5 +- Rename to gtk2 + +* Fri Nov 17 2000 Owen Taylor +- Final 1.3.2 + +* Tue Nov 14 2000 Owen Taylor +- New snapshot + +* Mon Nov 13 2000 Owen Taylor +- 1.3.2pre1 snapshot version + +* Sun Aug 13 2000 Owen Taylor +- Rename to 1.3.1b to avoid version increment difficulties + +* Thu Aug 10 2000 Havoc Pennington +- Fix .pc files to not contain -I%%{_includedir} + +* Thu Aug 10 2000 Havoc Pennington +- Update to a CVS snapshot + +* Fri Jul 14 2000 Owen Taylor +- Removed stray b from %%postun +- Real 1.3.1 tarball fixing stupid omission in gtk-config + +* Fri Jul 07 2000 Owen Taylor +- Version 1.3.1 +- move back to /usr +- Remove gtk-config.1 manpage from build since + it conflicts with gtk+-devel. When we go to + gtk+ gtk+1.2 setup, we should add it back + +* Fri Jun 30 2000 Owen Taylor +- Rename gtkrc-default source so that it GTK+ package can't remove it + +* Thu Jun 8 2000 Owen Taylor +- Rebuild with a prefix of /opt/gtk-beta + +* Wed May 31 2000 Owen Taylor +- New version + +* Tue Apr 25 2000 Owen Taylor +- Snapshot version to install in /opt/pango + +* Mon Feb 21 2000 Owen Taylor +- Fix weird excess problem that somehow turned up in %%{_sysconfdir}/gtkrc.LANG + +* Mon Feb 14 2000 Owen Taylor +- More patches from 1.2.7 + +* Fri Feb 04 2000 Owen Taylor +- Set the charset explicitely for the default font to avoid + problems with XFree86-4.0 where the default charset is + iso10646-1, not iso8859-1. +- Fix problems with size requisitions for scrolled windows + that was causing looping. (RH bug #7997) + +* Thu Feb 03 2000 Owen Taylor +- Explicitely set the foreground of the tooltips to black + to avoid bad interactions with themes that set a + light foreground color. + +* Thu Feb 03 2000 Owen Taylor +- Added large patch of bugfixes in stable branch of CVS + +* Tue Oct 12 1999 Owen Taylor +- Added Akira Higuti's patch for line-wrapping in GTK+ + +* Thu Oct 7 1999 Owen Taylor +- version 1.2.6 + +* Thu Sep 23 1999 Owen Taylor +- version 1.2.5 +- install tutorial GIFs + +* Wed Sep 22 1999 Owen Taylor +- Upgrade to real 1.2.5pre2 +- Changed name so upgrade to 1.2.5 will work :-( +- Add extra gtkrc files +- Add examples and English language tutorial to -devel package + +* Fri Sep 17 1999 Owen Taylor +- Upgraded to 1.2.5pre2. (Actually, pre-pre-2) + +* Tue Aug 17 1999 Michael Fulbright +- added threaded patch + +* Mon Jun 7 1999 Owen Taylor +- Update for GTK+-1.2.3 +- Patches that will be in GTK+-1.2.4 +- Patch to keep GTK+ from coredumping on X IO errors +- Patch to improve compatilibity with GTK-1.2.1 (allow + event mask to be set on realized widgets) + +* Mon Apr 19 1999 Michael Fulbright +- fixes memory leak + +* Mon Apr 12 1999 Owen Taylor +- The important bug fixes that will be in GTK+-1.2.2 + +* Thu Apr 01 1999 Michael Fulbright +- patches from owen to handle various gdk bugs + +* Sun Mar 28 1999 Michael Fulbright +- added XFree86-devel requirement for gtk+-devel + +* Thu Mar 25 1999 Michael Fulbright +- version 1.2.1 + +* Wed Mar 17 1999 Michael Fulbright +- removed /usr/info/dir.gz file from package + +* Fri Feb 26 1999 Michael Fulbright +- Version 1.2.0 + +* Thu Feb 25 1999 Michael Fulbright +- version 1.2.0pre2, patched to use --sysconfdir=%%{_sysconfdir} + +* Mon Feb 15 1999 Michael Fulbright +- patched in Owen's patch to fix Metal theme + +* Fri Feb 05 1999 Michael Fulbright +- bumped up to 1.1.15 + +* Wed Feb 03 1999 Michael Fulbright +- bumped up to 1.1.14 + +* Mon Jan 18 1999 Michael Fulbright +- bumped up to 1.1.13 + +* Wed Jan 06 1999 Michael Fulbright +- bumped up to 1.1.12 + +* Wed Dec 16 1998 Michael Fulbright +- added Theme directory to file list +- up to 1.1.7 for GNOME freeze + +* Sun Oct 25 1998 Shawn T. Amundson +- Fixed Source: to point to v1.1 + +* Tue Aug 04 1998 Michael Fulbright +- change %%postun to %%preun + +* Sat Jun 27 1998 Shawn T. Amundson +- Changed version to 1.1.0 + +* Thu Jun 11 1998 Dick Porter +- Removed glib, since it is its own module now + +* Mon Apr 13 1998 Marc Ewing +- Split out glib package + +* Wed Apr 8 1998 Shawn T. Amundson +- Changed version to 1.0.0 + +* Tue Apr 7 1998 Owen Taylor +- Changed version to 0.99.10 + +* Thu Mar 19 1998 Shawn T. Amundson +- Changed version to 0.99.9 +- Changed gtk home page to www.gtk.org + +* Thu Mar 19 1998 Shawn T. Amundson +- Changed version to 0.99.8 + +* Sun Mar 15 1998 Marc Ewing +- Added aclocal and bin stuff to file list. +- Added -k to the SMP make line. +- Added lib/glib to file list. + +* Sat Mar 14 1998 Shawn T. Amundson +- Changed version to 0.99.7 + +* Sat Mar 14 1998 Shawn T. Amundson +- Updated ftp url and changed version to 0.99.6 + +* Thu Mar 12 1998 Marc Ewing +- Reworked to integrate into gtk+ source tree +- Truncated ChangeLog. Previous Authors: + Trond Eivind Glomsrod + Michael K. Johnson + Otto Hammersmith +