Your message dated Wed, 01 Apr 2009 19:02:03 +0000
with message-id <[email protected]>
and subject line Bug#437444: fixed in wmmaiload 2.3.0-1
has caused the Debian Bug report #437444,
regarding wmmaiload: Patch for GTK 2.0
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
437444: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=437444
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: wmmaiload
Tags: patch

Hi,

Attached is a patch for wmbubble to build against GTK+ 2.0:
 - changes the required bits in Init.make
 - adjusts a couple of things for GTK+ 2.0

Please apply, as it'll help clear the list of GTK+1.2 applications.

Thanks,

JB.

-- 
 Julien BLACHE <[email protected]>  |  Debian, because code matters more 
 Debian & GNU/Linux Developer        |       <http://www.debian.org>
 Public key available on <http://www.jblache.org> - KeyID: F5D6 5169 
 GPG Fingerprint : 935A 79F1 C8B3 3521 FD62 7CC7 CD61 4FD7 F5D6 5169 

Only in orig/wmmaiload-2.2.1/wmmaiload: config.h
Only in wmmaiload-2.2.1/wmmaiload: wmmaiload
Only in orig/wmmaiload-2.2.1/wmmaiload-config: .dependencies
diff -ru orig/wmmaiload-2.2.1/wmmaiload-config/Init.make wmmaiload-2.2.1/wmmaiload-config/Init.make
--- orig/wmmaiload-2.2.1/wmmaiload-config/Init.make	2007-08-12 17:49:55.000000000 +0200
+++ wmmaiload-2.2.1/wmmaiload-config/Init.make	2007-08-12 17:50:59.078810649 +0200
@@ -37,9 +37,9 @@
 #
 
 CROSS_COMPILE =
-USER_CPPFLAGS = `gtk-config --cflags`
+USER_CPPFLAGS = `pkg-config gtk+-2.0 --cflags`
 USER_CFLAGS   =
-USER_LDFLAGS  = `gtk-config --libs` -lX11
+USER_LDFLAGS  = `pkg-config gtk+-2.0 --libs` -lX11
 
 
 #*****************************************************************
Only in orig/wmmaiload-2.2.1/wmmaiload-config: config.h
diff -ru orig/wmmaiload-2.2.1/wmmaiload-config/dialogs.c wmmaiload-2.2.1/wmmaiload-config/dialogs.c
--- orig/wmmaiload-2.2.1/wmmaiload-config/dialogs.c	2005-07-07 20:54:17.000000000 +0200
+++ wmmaiload-2.2.1/wmmaiload-config/dialogs.c	2007-08-12 17:51:55.082002090 +0200
@@ -38,7 +38,6 @@
                            bouton, TRUE, TRUE, 0);
         GTK_WIDGET_SET_FLAGS(GTK_WIDGET(bouton), GTK_CAN_DEFAULT);
         gtk_widget_grab_default(GTK_WIDGET(bouton));
-        gtk_widget_draw_default(GTK_WIDGET(bouton));
         gtk_widget_show(bouton);
 
         bouton = gtk_button_new_with_label("No");
@@ -97,7 +96,6 @@
                            bouton, TRUE, TRUE, 0);
         GTK_WIDGET_SET_FLAGS(GTK_WIDGET(bouton), GTK_CAN_DEFAULT);
         gtk_widget_grab_default(GTK_WIDGET(bouton));
-        gtk_widget_draw_default(GTK_WIDGET(bouton));
         gtk_widget_show(bouton);
 
         gtk_container_set_border_width(GTK_CONTAINER
diff -ru orig/wmmaiload-2.2.1/wmmaiload-config/mainwindow.c wmmaiload-2.2.1/wmmaiload-config/mainwindow.c
--- orig/wmmaiload-2.2.1/wmmaiload-config/mainwindow.c	2005-07-13 21:51:52.000000000 +0200
+++ wmmaiload-2.2.1/wmmaiload-config/mainwindow.c	2007-08-12 17:53:14.086504299 +0200
@@ -10,9 +10,9 @@
 #include "actions.h"
 
 
-static GtkWidget *edit;
-static GtkWidget *set;
-static GtkWidget *remove;
+static GtkWidget *b_edit;
+static GtkWidget *b_set;
+static GtkWidget *b_remove;
 
 static gint list_sel_cb (GtkCList *clist,
                          gint row,
@@ -21,9 +21,9 @@
                          void *data)
 {
         selected_row = row;
-        gtk_widget_set_sensitive(edit, TRUE);
-        gtk_widget_set_sensitive(set, TRUE);
-        gtk_widget_set_sensitive(remove, TRUE);
+        gtk_widget_set_sensitive(b_edit, TRUE);
+        gtk_widget_set_sensitive(b_set, TRUE);
+        gtk_widget_set_sensitive(b_remove, TRUE);
         return TRUE;
 }
 
@@ -35,9 +35,9 @@
                     void *data)
 {
         selected_row = -1;
-        gtk_widget_set_sensitive(edit, FALSE);
-        gtk_widget_set_sensitive(set, FALSE);
-        gtk_widget_set_sensitive(remove, FALSE);
+        gtk_widget_set_sensitive(b_edit, FALSE);
+        gtk_widget_set_sensitive(b_set, FALSE);
+        gtk_widget_set_sensitive(b_remove, FALSE);
         return TRUE;
 }
 
@@ -230,7 +230,7 @@
         gtk_table_attach_defaults(GTK_TABLE(table), bouton, 0, 1, 0, 1);
         gtk_widget_set_sensitive(bouton, FALSE);
         gtk_widget_show(bouton);
-        edit = bouton;
+        b_edit = bouton;
 
         bouton = gtk_button_new_with_label(" Set default ");
         gtk_signal_connect(GTK_OBJECT(bouton), "clicked",
@@ -238,7 +238,7 @@
         gtk_table_attach_defaults(GTK_TABLE(table), bouton, 1, 2, 0, 1);
         gtk_widget_set_sensitive(bouton, FALSE);
         gtk_widget_show(bouton);
-        set = bouton;
+        b_set = bouton;
 
         bouton = gtk_button_new_with_label(" Remove box ");
         gtk_signal_connect(GTK_OBJECT(bouton), "clicked",
@@ -246,7 +246,7 @@
         gtk_table_attach_defaults(GTK_TABLE(table), bouton, 2, 3, 0, 1);
         gtk_widget_set_sensitive(bouton, FALSE);
         gtk_widget_show(bouton);
-        remove = bouton;
+        b_remove = bouton;
 
         /*--- Frame 5 ---*/
         frame = gtk_frame_new(NULL);
@@ -322,7 +322,6 @@
         gtk_box_pack_start(GTK_BOX(buttons_hbox), bouton, TRUE, TRUE, 0);
         GTK_WIDGET_SET_FLAGS(GTK_WIDGET(bouton), GTK_CAN_DEFAULT);
         gtk_widget_grab_default(GTK_WIDGET(bouton));
-        gtk_widget_draw_default(GTK_WIDGET(bouton));
         gtk_widget_show(bouton);
 
         bouton = gtk_button_new_with_label(" Cancel ");
diff -ru orig/wmmaiload-2.2.1/wmmaiload-config/popedit.c wmmaiload-2.2.1/wmmaiload-config/popedit.c
--- orig/wmmaiload-2.2.1/wmmaiload-config/popedit.c	2005-07-07 20:54:17.000000000 +0200
+++ wmmaiload-2.2.1/wmmaiload-config/popedit.c	2007-08-12 17:52:20.083426839 +0200
@@ -68,7 +68,6 @@
                            bouton, TRUE, TRUE, 0);
         GTK_WIDGET_SET_FLAGS(GTK_WIDGET(bouton), GTK_CAN_DEFAULT);
         gtk_widget_grab_default(GTK_WIDGET(bouton));
-        gtk_widget_draw_default(GTK_WIDGET(bouton));
         gtk_widget_show(bouton);
 
         bouton = gtk_button_new_with_label("Cancel");
Only in wmmaiload-2.2.1/wmmaiload-config: wmmaiload-config

--- End Message ---
--- Begin Message ---
Source: wmmaiload
Source-Version: 2.3.0-1

We believe that the bug you reported is fixed in the latest version of
wmmaiload, which is due to be installed in the Debian FTP archive:

wmmaiload_2.3.0-1.diff.gz
  to pool/main/w/wmmaiload/wmmaiload_2.3.0-1.diff.gz
wmmaiload_2.3.0-1.dsc
  to pool/main/w/wmmaiload/wmmaiload_2.3.0-1.dsc
wmmaiload_2.3.0-1_i386.deb
  to pool/main/w/wmmaiload/wmmaiload_2.3.0-1_i386.deb
wmmaiload_2.3.0.orig.tar.gz
  to pool/main/w/wmmaiload/wmmaiload_2.3.0.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Barry deFreese <[email protected]> (supplier of updated wmmaiload package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Wed, 01 Apr 2009 14:31:29 -0400
Source: wmmaiload
Binary: wmmaiload
Architecture: source i386
Version: 2.3.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group <[email protected]>
Changed-By: Barry deFreese <[email protected]>
Description: 
 wmmaiload  - dockapp to monitor mails in one or more mail boxes
Closes: 437444
Changes: 
 wmmaiload (2.3.0-1) unstable; urgency=low
 .
   * QA upload.
     + Set maintainer to Debian QA Group <[email protected]>
   * New upsstream release.
     + Uses GTK2. (Closes: #437444).
     + Change build-deps from gtk1.2 and glib1.2 to 2.0.
   * Make clean not ignore errors.
   * Add Homepage.
   * Add watch file.
   * Bump debhelper build-dep and compat to 5.
   * Bump Standards Version to 3.8.1.
Checksums-Sha1: 
 f7e6947505e461110a8ea94cb456b81d8bbc0ba3 1111 wmmaiload_2.3.0-1.dsc
 9d25e311350ed42b22b1f82b8955b944ce9fc5ac 51957 wmmaiload_2.3.0.orig.tar.gz
 3c789a5bc1d015397fc03b03a4b69a8b30e1d124 5866 wmmaiload_2.3.0-1.diff.gz
 9eba5756957bc4514832bc366e2ac2a8ee3d2d65 41898 wmmaiload_2.3.0-1_i386.deb
Checksums-Sha256: 
 d241c6310c965c54bf647865bbff82e0f86a342654ae07befd5dbdc3572db519 1111 
wmmaiload_2.3.0-1.dsc
 d3a0532f1802a74e65d31846c9ff7f30ddea01ce6e4d70f2154eb1ad0ff7b2a9 51957 
wmmaiload_2.3.0.orig.tar.gz
 731f7bab781e50230cea8aae86f45e422f4052e73f313232499e917b0e734ba7 5866 
wmmaiload_2.3.0-1.diff.gz
 c644e33a58bbea048172cb6dcc72f5bcc21ceefa5d3d2a15d0e5c4b62507e19b 41898 
wmmaiload_2.3.0-1_i386.deb
Files: 
 f6ebb89af8f337c3a42c02caaf79c1e4 1111 x11 optional wmmaiload_2.3.0-1.dsc
 ce2b022e2d5484231388c01377085270 51957 x11 optional wmmaiload_2.3.0.orig.tar.gz
 b9b93692035e6d0f57faa8fbf74219aa 5866 x11 optional wmmaiload_2.3.0-1.diff.gz
 c5f82ec28d57c0715d6af928f6b96456 41898 x11 optional wmmaiload_2.3.0-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAknTuBoACgkQ5ItltUs5T34NCACcDMY3bCAlYSPJfgcf+Ac7EnEO
qOEAmwedJTbzERZLw4EahbCyZFeqmlgG
=jiM0
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to