--- mboxcheck-applet-0.3.orig/debian/changelog
+++ mboxcheck-applet-0.3/debian/changelog
@@ -0,0 +1,80 @@
+mboxcheck-applet (0.3-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/control:
+    - Remove python-gnome2-extras dependency (Closes: #485306).
+    - Add python-gnomeapplet dependency.
+
+ -- Luca Falavigna <dktrkranz@debian.org>  Sat, 03 Oct 2009 16:04:08 +0200
+
+mboxcheck-applet (0.3-2) unstable; urgency=low
+
+  * Updated for new python policy (Closes: #380866)
+  * Acknowledge NMU (Closes: #308268)
+  * mboxcheck.py:
+    - use "gnomeapplet" instead of "gnome.applet"
+  * debian/control:
+    - Build-Depends on python-all-dev, python-central (>= 0.5)
+    - changed Standards-Version to 3.7.2
+    - use XS-Python-Version and XB-Python-Version
+  * debian/rules:
+    - call dh_pycentral
+
+ -- Sebastien Bacher <seb128@debian.org>  Mon, 18 Sep 2006 01:15:36 +0200
+
+mboxcheck-applet (0.3-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Add python-gnome2-extras to Depends (Closes: #308268).
+  * Move debhelper to Build-Depends.
+  * Bump Standards-Version. No changes needed.
+  * Update FSF address in debian/copyright.
+
+ -- Julien Louis <ptitlouis@sysif.net>  Mon,  5 Jun 2006 20:47:11 +0200
+
+mboxcheck-applet (0.3-1) unstable; urgency=low
+
+  * New upstream version
+    + Add support for unread mails.
+
+ -- Sebastien Bacher <seb128@debian.org>  Sun,  5 Oct 2003 12:58:39 +0200
+
+mboxcheck-applet (0.2-3) unstable; urgency=low
+
+  * Renamed manpage (Closes: #213824).
+
+ -- Sebastien Bacher <seb128@debian.org>  Fri,  3 Oct 2003 03:03:23 +0200
+
+mboxcheck-applet (0.2-2) unstable; urgency=low
+
+  * Fixed a error with evolution unread mails code.
+
+ -- Sebastien Bacher <seb128@debian.org>  Mon, 29 Sep 2003 23:53:29 +0200
+
+mboxcheck-applet (0.2-1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Sebastien Bacher <seb128@debian.org>  Sun, 28 Sep 2003 16:36:23 +0200
+
+mboxcheck-applet (0.1-3) unstable; urgency=low
+
+  * Fixed missing Build-Depends on python (Closes: #207863).
+  * Fixed an error in the mail count.
+  * Updated Standard-Versions to 3.6.1.0.
+
+ -- Sebastien Bacher <seb128@debian.org>  Sat, 30 Aug 2003 12:26:11 +0200
+
+mboxcheck-applet (0.1-2) unstable; urgency=low
+
+  * Updated for python 2.3 as default version.
+  * Use dh_python.
+
+ -- Sebastien Bacher <seb128@debian.org>  Mon, 11 Aug 2003 02:35:35 +0200
+
+mboxcheck-applet (0.1-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Sebastien Bacher <seb128@debian.org>  Wed, 30 Jul 2003 13:43:11 +0200
+
--- mboxcheck-applet-0.3.orig/debian/copyright
+++ mboxcheck-applet-0.3/debian/copyright
@@ -0,0 +1,26 @@
+This package was debianized by Sebastien Bacher <seb128@debian.org> on
+Wed, 30 Jul 2003 13:43:11 +0200.
+
+This applet is not online for the moment.
+
+Upstream Author: Sebastien Bacher <seb128@debian.org>
+
+Copyright:
+
+   This package is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; version 2 dated June, 1991.
+
+   This package is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this package; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+   MA 02110-1301, USA.
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
--- mboxcheck-applet-0.3.orig/debian/rules
+++ mboxcheck-applet-0.3/debian/rules
@@ -0,0 +1,44 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+build:
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -rf debian/mboxcheck
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+	install -m 0755 mboxcheck.py debian/mboxcheck-applet/usr/share/mboxcheck-applet/
+	install -m 0755 configmbox.py debian/mboxcheck-applet/usr/share/mboxcheck-applet/
+	install -m 0664 mboxcheck.png debian/mboxcheck-applet/usr/share/pixmaps/
+	install -m 0664 GNOME_MboxCheck.server debian/mboxcheck-applet/usr/lib/bonobo/servers/
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installchangelogs ChangeLog debian/changelog
+	dh_installman mboxcheck-applet.1
+	dh_link usr/share/mboxcheck-applet/mboxcheck.py usr/lib/gnome-panel/mboxcheck
+	dh_compress
+	dh_fixperms
+	dh_pycentral
+	dh_python
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-arch: 
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
--- mboxcheck-applet-0.3.orig/debian/compat
+++ mboxcheck-applet-0.3/debian/compat
@@ -0,0 +1 @@
+4
--- mboxcheck-applet-0.3.orig/debian/dirs
+++ mboxcheck-applet-0.3/debian/dirs
@@ -0,0 +1,4 @@
+usr/bin
+usr/lib/bonobo/servers
+usr/share/mboxcheck-applet
+usr/share/pixmaps
--- mboxcheck-applet-0.3.orig/debian/docs
+++ mboxcheck-applet-0.3/debian/docs
@@ -0,0 +1,4 @@
+AUTHORS
+NEWS
+README
+TODO
--- mboxcheck-applet-0.3.orig/debian/control
+++ mboxcheck-applet-0.3/debian/control
@@ -0,0 +1,21 @@
+Source: mboxcheck-applet
+Section: gnome
+Priority: optional
+Maintainer: Sebastien Bacher <seb128@debian.org>
+Build-Depends-Indep: python
+Build-Depends: debhelper (>= 4.1.65), python-all-dev, python-central (>= 0.5)
+Standards-Version: 3.7.2
+XS-Python-Version: all
+
+Package: mboxcheck-applet
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, python-gnome2 (>= 1.99.16-3), python-gnomeapplet
+XB-Python-Version: ${python:Versions}
+Description: A GNOME2 applet to check your mboxes
+ Mboxcheck is an applet that checks mails arrive in your mboxes. 
+ It has a list of indicators :
+ .
+  * the indicators are pixmaps or text
+  * the indicator are attached to one or several boxes
+  * each indicator has a customisable tooltip with informations like his name, 
+    the number of mails, the list of mboxes attached
