--- gkrelltop-2.2.13.orig/debian/docs
+++ gkrelltop-2.2.13/debian/docs
@@ -0,0 +1 @@
+README
--- gkrelltop-2.2.13.orig/debian/control
+++ gkrelltop-2.2.13/debian/control
@@ -0,0 +1,31 @@
+Source: gkrelltop
+Section: x11
+Priority: extra
+Maintainer: Adi Zaimi <adizaimi@users.sourceforge.net>
+Uploaders: Yaroslav Halchenko <debian@onerussian.com>
+Build-Depends: debhelper (>= 5), autotools-dev, libgtk2.0-dev, gkrellm, gkrellmd
+Standards-Version: 3.8.2
+
+Package: gkrelltop
+Architecture: any
+Depends: gkrellm, ${shlibs:Depends}
+Suggests: gkrelltopd
+Description: Top three intensive processes plugin for gkrellm 
+ Plugin for gkrellm that displays the top three cpu 
+ or memory intensive processes in a small window 
+ inside gkrellm, similar to wmtop. Useful to check 
+ out anytime what processes are consuming most cpu 
+ memory, or IO resources on your machine.
+
+Package: gkrelltopd
+Architecture: any
+Depends: gkrellmd, ${shlibs:Depends}
+Suggests: gkrelltop
+Description: Top three intensive processes plugin for gkrellmd 
+ Plugin for gkrellmd. This is the server end
+ plugin of gkrelltop. Gkrelltop displays the top
+ three cpu intensive processes in a small window
+ inside gkrellm, similar to wmtop. Useful to check
+ out anytime what processes are consuming most cpu
+ memory, or IO resources on your machine.
+
--- gkrelltop-2.2.13.orig/debian/rules
+++ gkrelltop-2.2.13/debian/rules
@@ -0,0 +1,94 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+config.status: configure
+	dh_testdir
+	# configure the package.
+	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
+
+
+build: build-stamp
+
+build-stamp:  config.status
+	dh_testdir
+
+	# Compile the package.
+	$(MAKE)
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	$(MAKE) clean
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+	cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+	cp -f /usr/share/misc/config.guess config.guess
+endif
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs -A 
+
+	# Add here commands to install the package into debian/gkrelltop.
+	$(MAKE) PREFIX=$(CURDIR)/debian/gkrelltop  DESTDIR=usr/lib/gkrellm2/plugins install
+	$(MAKE) PREFIXD=$(CURDIR)/debian/gkrelltopd DESTDIR=usr/lib/gkrellm2/plugins-gkrellmd install-server
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs 
+	dh_installdocs 
+	dh_installexamples
+	dh_installman 
+	dh_link
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+	dh_strip
+endif
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 
--- gkrelltop-2.2.13.orig/debian/changelog
+++ gkrelltop-2.2.13/debian/changelog
@@ -0,0 +1,57 @@
+gkrelltop (2.2.13-1) unstable; urgency=medium
+
+  * Refactored the top_three code for better performance.
+  * Temporarily suspend refresh when mouse over.
+  * Correct directory for gkrelltopd install dir (closes: #488736).
+
+ -- Adi Zaimi <adizaimi@users.sourceforge.net>  Wed, 23 Jul 2009 23:23:57 -0500
+
+gkrelltop (2.2.12-1) unstable; urgency=medium
+
+  * Add ability to see per process IO activity
+  * Handle nostrip build option (closes: #437041).
+  * Fix duplication when a single process in list (closes: #421342).
+  * Don't depend on libc6-dev (closes: #470761).
+
+ -- Adi Zaimi <adizaimi@users.sourceforge.net>  Wed, 8 Jul 2009 23:51:02 -0500
+
+gkrelltop (2.2.11-2) unstable; urgency=low
+
+  * Fix problem with clean not happening for debian build process
+  * Fix make clean problem (closes: #442575).
+
+ -- Adi Zaimi <adizaimi@users.sourceforge.net>  Fri, 8 Feb 2008 20:52:00 -0500
+
+gkrelltop (2.2.11-1) unstable; urgency=low
+
+  * New upstream version
+  * Fix problem with excluded programs not reapearing 
+
+ -- Adi Zaimi <adizaimi@users.sourceforge.net>  Tue, 25 Dec 2007 23:35:21 -0500
+
+gkrelltop (2.2.10-1) unstable; urgency=low
+
+  * New upstream version
+  * Fix floating point exception problem.
+
+ -- Adi Zaimi <adizaimi@users.sourceforge.net>  Sat, 21 Jul 2007 01:25:17 -0500
+
+gkrelltop (2.2.9-1.1) unstable; urgency=high
+
+  * Non-maintainer high-urgency upload for RC bug fix.
+  * Build shared objects with -fPIC (closes: #425320).
+
+ -- Julien Cristau <jcristau@debian.org>  Wed, 18 Jul 2007 17:37:58 +0200
+
+gkrelltop (2.2.9-1) unstable; urgency=low
+
+  * New upstream version
+
+ -- Adi Zaimi <adizaimi@users.sourceforge.net>  Tue, 13 Feb 2007 03:21:22 -0500
+
+gkrelltop (2.2.8-1) unstable; urgency=low
+
+  * Initial Debian release (Closes: #410021)
+
+ -- Adi Zaimi <adizaimi@users.sourceforge.net>  Mon, 6 Feb 2007 01:43:57 -0500
+
--- gkrelltop-2.2.13.orig/debian/gkrelltopd.dirs
+++ gkrelltop-2.2.13/debian/gkrelltopd.dirs
@@ -0,0 +1 @@
+usr/lib/gkrellm2/plugins-gkrellmd/
--- gkrelltop-2.2.13.orig/debian/gkrelltopd.docs
+++ gkrelltop-2.2.13/debian/gkrelltopd.docs
@@ -0,0 +1 @@
+README
--- gkrelltop-2.2.13.orig/debian/compat
+++ gkrelltop-2.2.13/debian/compat
@@ -0,0 +1 @@
+5
--- gkrelltop-2.2.13.orig/debian/substvars
+++ gkrelltop-2.2.13/debian/substvars
@@ -0,0 +1 @@
+shlibs:Depends=libc6 (>= 2.3.4)
--- gkrelltop-2.2.13.orig/debian/copyright
+++ gkrelltop-2.2.13/debian/copyright
@@ -0,0 +1,31 @@
+This package was debianized by Adi Zaimi <adizaimi@users.sourceforge.net> on
+Mon, 22 Jan 2007 13:13:30 -0500.
+
+It was downloaded from http://gkrelltop.sourceforge.net
+
+Upstream Author: Adi Zaimi <adizaimi@users.sourceforge.net>
+
+Copyright: 2007, Adi Zaimi <adizaimi@users.sourceforge.net>.
+
+License:
+
+   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; either version 2 of the License, or
+   (at your option) any later version.
+
+   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'.
+
+The Debian packaging is (C) 2007, Adi Zaimi <adizaimi@users.sourceforge.net>
+and is licensed under the GPL, see above.
+
--- gkrelltop-2.2.13.orig/debian/gkrelltop.dirs
+++ gkrelltop-2.2.13/debian/gkrelltop.dirs
@@ -0,0 +1 @@
+usr/lib/gkrellm2/plugins
--- gkrelltop-2.2.13.orig/debian/gkrelltop.docs
+++ gkrelltop-2.2.13/debian/gkrelltop.docs
@@ -0,0 +1 @@
+README
