--- bmon-2.0.1.orig/debian/changelog
+++ bmon-2.0.1/debian/changelog
@@ -0,0 +1,19 @@
+bmon (2.0.1-3) unstable; urgency=low
+
+  * debian/bmon.desktop added
+
+ -- Reto Schuettel <reto@schuettel.ch>  Tue, 18 Jan 2005 22:52:08 +0100
+
+bmon (2.0.1-2) unstable; urgency=low
+
+  * debian/rules
+    - removed unneeded debhelper scripts
+
+ -- Reto Schuettel <reto@schuettel.ch>  Tue, 18 Jan 2005 21:53:23 +0100
+
+bmon (2.0.1-1) unstable; urgency=low
+
+  * Initial Release. Closes: #286764.
+
+ -- Reto Schuettel <reto@schuettel.ch>  Tue, 21 Dec 2004 17:09:06 +0100
+
--- bmon-2.0.1.orig/debian/compat
+++ bmon-2.0.1/debian/compat
@@ -0,0 +1 @@
+4
--- bmon-2.0.1.orig/debian/control
+++ bmon-2.0.1/debian/control
@@ -0,0 +1,20 @@
+Source: bmon
+Section: net
+Priority: optional
+Maintainer: Reto Schuettel <reto@schuettel.ch>
+Build-Depends: debhelper (>= 4.0.0), libncurses5-dev (>= 5.4-4)
+Standards-Version: 3.6.1
+
+Package: bmon
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: portable bandwidth monitor and rate estimator
+ bmon is a commandline bandwidth monitor which supports various output
+ methods including an interactive curses interface, lightweight HTML output but
+ also simple ASCII output.
+ .
+ Statistics may be distributed over a network using multicast or unicast and
+ collected at some point to generate a summary of statistics for a set of
+ nodes. 
+ .
+ Homepage: http://suug.ch/~tgr/bmon/
--- bmon-2.0.1.orig/debian/rules
+++ bmon-2.0.1/debian/rules
@@ -0,0 +1,81 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+#
+# 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
+
+	CFLAGS="$(CFLAGS)" ./configure 	\
+				--host=$(DEB_HOST_GNU_TYPE) \
+				--build=$(DEB_BUILD_GNU_TYPE) \
+				--prefix=/usr \
+				--mandir=\$${prefix}/share/man 
+	
+build: build-stamp
+
+build-stamp:  config.status
+	dh_testdir
+
+	$(MAKE)
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	$(MAKE) distclean
+	$(MAKE) clean
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	$(MAKE) install prefix=$(CURDIR)/debian/bmon/usr
+
+# 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_install
+	dh_installchangelogs ChangeLog
+	dh_installdocs
+	dh_installmenu
+	dh_installman
+	dh_strip
+	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 
--- bmon-2.0.1.orig/debian/bmon.menu
+++ bmon-2.0.1/debian/bmon.menu
@@ -0,0 +1 @@
+?package(bmon):needs="text" section="Apps/Net" title="bmon" command="/usr/bin/bmon"
--- bmon-2.0.1.orig/debian/bmon.desktop
+++ bmon-2.0.1/debian/bmon.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Version=1.0
+Encoding=UTF-8
+Name=bmon
+Comment=Bandwidth monitor
+Comment[en]=Bandbreiten-Monitor
+Exec=bmon
+Terminal=true
+Type=Application
+Categories=Application;Network;
--- bmon-2.0.1.orig/debian/bmon.dirs
+++ bmon-2.0.1/debian/bmon.dirs
@@ -0,0 +1 @@
+etc/
--- bmon-2.0.1.orig/debian/bmon.install
+++ bmon-2.0.1/debian/bmon.install
@@ -0,0 +1,2 @@
+etc/bmon.conf etc/
+debian/bmon.desktop usr/share/applications
--- bmon-2.0.1.orig/debian/copyright
+++ bmon-2.0.1/debian/copyright
@@ -0,0 +1,26 @@
+This package was debianized by Reto Schuettel <reto@schuettel.ch> on
+Tue, 21 Dec 2004 17:09:06 +0100.
+
+It was downloaded from http://www.suug.ch/~tgr/bmon/
+
+Upstream Author: Thomas Graf <tgraf@suug.ch>
+
+Copyright (c) 2001-2004 Thomas Graf <tgraf@suug.ch>
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (the "Software"),
+to deal in the Software without restriction, including without limitation
+the rights to use, copy, modify, merge, publish, distribute, sublicense,
+and/or sell copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
--- bmon-2.0.1.orig/debian/bmon.docs
+++ bmon-2.0.1/debian/bmon.docs
@@ -0,0 +1,2 @@
+BUGS
+TODO
