--- dhis-dns-engine-5.3.orig/debian/changelog
+++ dhis-dns-engine-5.3/debian/changelog
@@ -0,0 +1,32 @@
+dhis-dns-engine (5.3-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Guus Sliepen <guus@debian.org>  Sat, 05 Jan 2008 22:12:09 +0100
+
+dhis-dns-engine (5.1-2) unstable; urgency=low
+
+  * Remove strip command from Makefile. Closes: #436765
+
+ -- Guus Sliepen <guus@debian.org>  Tue, 14 Aug 2007 13:43:33 +0200
+
+dhis-dns-engine (5.1-1) unstable; urgency=low
+
+  * New upstream release. Closes: #372556
+  * Use libbind-dev instead of bind-dev.
+  * Remove warnings caused by silly use of unsigned char.
+
+ -- Guus Sliepen <guus@debian.org>  Tue, 13 Jun 2006 12:56:16 +0200
+
+dhis-dns-engine (5.0-2) unstable; urgency=low
+
+  * #include <stdarg.h> instead of <varargs.h>.
+
+ -- Guus Sliepen <guus@debian.org>  Tue, 27 May 2003 22:40:05 +0200
+
+dhis-dns-engine (5.0-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Guus Sliepen <guus@debian.org>  Sat, 22 Jun 2002 12:42:24 +0200
+
--- dhis-dns-engine-5.3.orig/debian/copyright
+++ dhis-dns-engine-5.3/debian/copyright
@@ -0,0 +1,34 @@
+This package was debianized by Guus Sliepen <guus@debian.org> on
+Sat, 22 Jun 2002 11:28:45 +0200.
+
+It was downloaded from http://www.dhis.org/dhis/r5/
+
+Upstream Author: Joao Cabral <jcnc@dhis.org>
+
+Copyright:
+
+ Copyright (c) 1998-2001 Joao Cabral (jcnc@dhis.org)
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in the
+    documentation and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
+
+      DHIS(c)  Dynamic Host Information System Release 5.1
--- dhis-dns-engine-5.3.orig/debian/dirs
+++ dhis-dns-engine-5.3/debian/dirs
@@ -0,0 +1 @@
+usr/lib/dhis-server
--- dhis-dns-engine-5.3.orig/debian/docs
+++ dhis-dns-engine-5.3/debian/docs
@@ -0,0 +1,2 @@
+README
+CONTRIBUTORS
--- dhis-dns-engine-5.3.orig/debian/rules
+++ dhis-dns-engine-5.3/debian/rules
@@ -0,0 +1,90 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -g
+endif
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+	INSTALL_PROGRAM += -s
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	# Add here commands to configure the package.
+
+	touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+	#/usr/bin/docbook-to-man debian/dhis-dns-engine.sgml > dhis-dns-engine.1
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	# Add here commands to clean up after the build process.
+	$(MAKE) clean
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/dhis-dns-engine.
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/dhis-dns-engine
+
+
+# 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_installdebconf	
+	dh_installdocs
+#	dh_installexamples
+#	dh_installmenu
+#	dh_installlogrotate
+#	dh_installemacsen
+#	dh_installpam
+#	dh_installmime
+#	dh_installinit
+#	dh_installcron
+#	dh_installman
+#	dh_installinfo
+#	dh_undocumented
+	dh_installchangelogs 
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_makeshlibs
+	dh_installdeb
+#	dh_perl
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
--- dhis-dns-engine-5.3.orig/debian/compat
+++ dhis-dns-engine-5.3/debian/compat
@@ -0,0 +1 @@
+4
--- dhis-dns-engine-5.3.orig/debian/control
+++ dhis-dns-engine-5.3/debian/control
@@ -0,0 +1,18 @@
+Source: dhis-dns-engine
+Section: net
+Priority: extra
+Maintainer: Guus Sliepen <guus@debian.org>
+Build-Depends: debhelper (>> 4.0.0), libbind-dev
+Standards-Version: 3.7.3
+Homepage: http://www.dhis.org/
+
+Package: dhis-dns-engine
+Architecture: any
+Depends: ${shlibs:Depends}, dhis-server, bind9 | bind
+Description: Dynamic Host Information System - DNS engine
+ This package contains a dynamic DNS service module to be used
+ with dhisd release 5 or above.
+ .
+ While the DHIS server dhisd retrieves dynamic IP addresses
+ from clients, this module allows the server to update a
+ dynamic DNS zone based on those retrieved IP addresses.
