--- gniall-0.7.1.orig/debian/menu
+++ gniall-0.7.1/debian/menu
@@ -0,0 +1,2 @@
+?package(gniall):needs="X11" section="Games/Toys" \
+  title="gNiall" command="/usr/games/gniall"
--- gniall-0.7.1.orig/debian/changelog
+++ gniall-0.7.1/debian/changelog
@@ -0,0 +1,67 @@
+gniall (0.7.1-7) unstable; urgency=low
+
+  * debian/rules:
+    + Use debian/compat instead of DH_COMPAT.
+    + Use dh_installman instead of dh_installmanpages.
+  * debian/control:
+    + Set policy to 3.6.1.1.
+    + Removed the leading "a" in the short description.
+  * debian/menu:
+    + Quoted strings where appropriate.
+
+ -- Sam Hocevar (Debian packages) <sam+deb@zoy.org>  Fri, 23 Jul 2004 13:26:25 +0200
+
+gniall (0.7.1-6) unstable; urgency=low
+
+  * Ported to GNOME 2.
+  * Set policy to 3.5.10.
+
+ -- Sam Hocevar (Debian packages) <sam+deb@zoy.org>  Fri, 30 May 2003 18:59:15 +0200
+
+gniall (0.7.1-5) unstable; urgency=low
+
+  * Updated standards version to 3.5.9.0.
+  * Removed the trailing period in the package description.
+  * Removed obsolete call to dh_suidregister.
+  * Added a versioned build-dependency against debhelper (>=2.0).
+  * Changed package section to gnome.
+
+ -- Samuel Hocevar <sam@zoy.org>  Sat, 12 Apr 2003 01:19:56 +0200
+
+gniall (0.7.1-4) unstable; urgency=low
+
+  * Spelling fixes in package description (Closes: #124682).
+
+ -- Samuel Hocevar <sam@zoy.org>  Wed, 19 Dec 2001 17:41:43 +0100
+
+gniall (0.7.1-3) unstable; urgency=low
+
+  * Changed package description to something more descriptive due to user
+    request.
+
+ -- Samuel Hocevar <sam@zoy.org>  Mon, 29 Jan 2001 02:03:51 +0100
+
+gniall (0.7.1-2) unstable; urgency=low
+
+  * Removed generic installation instructions (Closes: #83432).
+
+ -- Samuel Hocevar <sam@zoy.org>  Thu, 25 Jan 2001 13:31:23 +0100
+
+gniall (0.7.1-1) unstable; urgency=low
+
+  * New upstream release (fixes a buffer overflox).
+  * Removed useless debug messages.
+
+ -- Samuel Hocevar <sam@zoy.org>  Wed, 20 Dec 2000 05:02:14 +0100
+
+gniall (0.7-2) unstable; urgency=low
+
+  * Fixed build dependencies (Closes: #79411).
+
+ -- Samuel Hocevar <sam@zoy.org>  Tue, 12 Dec 2000 15:45:38 +0100
+
+gniall (0.7-1) unstable; urgency=low
+
+  * Initial Release (Closes: #78213).
+
+ -- Samuel Hocevar <sam@zoy.org>  Wed, 29 Nov 2000 08:10:12 +0100
--- gniall-0.7.1.orig/debian/control
+++ gniall-0.7.1/debian/control
@@ -0,0 +1,15 @@
+Source: gniall
+Section: gnome
+Priority: optional
+Maintainer: Sam Hocevar (Debian packages) <sam+deb@zoy.org>
+Build-Depends: debhelper (>= 2.0), libgnomeui-dev (>= 2.0.5-2), libgnome2-dev (>= 2.1.90)
+Standards-Version: 3.6.1.1
+
+Package: gniall
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: program that tries to learn a human language
+ gNiall attempts to learn whatever language you try to teach it. It is
+ basically a dissociator: it collects statistics on sentences you type
+ and tries to construct meaningful replies. gNiall is inspired by Niall,
+ an Amiga program by Matthew Peck.
--- gniall-0.7.1.orig/debian/rules
+++ gniall-0.7.1/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
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+
+	# Touch stuff
+	touch configure.in \
+	&& touch aclocal.m4 \
+	&& touch configure \
+	&& touch config.h.in \
+	&& touch `find . -name Makefile.in`
+
+	# Configure the package.
+	./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
+
+	touch configure-stamp
+
+build: configure-stamp build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+	#/usr/bin/docbook-to-man debian/gNiall.sgml > gNiall.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) distclean
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tmp.
+	$(MAKE) install prefix=`pwd`/debian/tmp/usr
+	mv debian/tmp/usr/bin/* debian/gniall/usr/games/
+	cp gNiall.desktop debian/gniall/usr/share/gnome/apps/Games/
+
+
+# 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_testversion
+	dh_testdir
+	dh_testroot
+#	dh_installdebconf	
+	dh_installdocs
+	dh_installexamples
+	dh_installmenu
+#	dh_installemacsen
+#	dh_installpam
+#	dh_installinit
+	dh_installcron
+	dh_installman debian/gniall.1
+	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
--- gniall-0.7.1.orig/debian/copyright
+++ gniall-0.7.1/debian/copyright
@@ -0,0 +1,11 @@
+This package was debianized by Samuel Hocevar <sam@zoy.org> on
+Wed, 29 Nov 2000 08:10:12 +0100.
+
+It was downloaded from http://gniall.sourceforge.net/
+
+Upstream Author: Gary Benson <garyb@ee.bath.ac.uk>
+
+Copyright: GPL
+
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in /usr/share/common-licenses/GPL.
--- gniall-0.7.1.orig/debian/dirs
+++ gniall-0.7.1/debian/dirs
@@ -0,0 +1,2 @@
+usr/games
+usr/share/gnome/apps/Games
--- gniall-0.7.1.orig/debian/gniall.1
+++ gniall-0.7.1/debian/gniall.1
@@ -0,0 +1,33 @@
+.\"                                      Hey, EMACS: -*- nroff -*-
+.\" First parameter, NAME, should be all caps
+.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
+.\" other parameters are allowed: see man(7), man(1)
+.TH GNIALL 1 "November 29, 2000"
+.\" Please adjust this date whenever revising the manpage.
+.\"
+.\" Some roff macros, for reference:
+.\" .nh        disable hyphenation
+.\" .hy        enable hyphenation
+.\" .ad l      left justify
+.\" .ad b      justify to both left and right margins
+.\" .nf        disable filling
+.\" .fi        enable filling
+.\" .br        insert line break
+.\" .sp <n>    insert n+1 empty lines
+.\" for manpage-specific macros, see man(7)
+.SH NAME
+gniall \- A language learning program
+.SH SYNOPSIS
+.B gniall
+.RI [ OPTIONS ]... 
+.SH DESCRIPTION
+This manual page documents briefly
+.B gniall
+, a language learning program for GNOME.
+.SH OPTIONS
+.B gniall
+accepts the standard GNOME application options. Try `gniall --help' to
+get more information about these options.
+.SH AUTHOR
+This manual page was written by Samuel Hocevar <sam@zoy.org>,
+for the Debian GNU/Linux system (but may be used by others).
--- gniall-0.7.1.orig/debian/docs
+++ gniall-0.7.1/debian/docs
@@ -0,0 +1,2 @@
+README
+TODO
--- gniall-0.7.1.orig/debian/compat
+++ gniall-0.7.1/debian/compat
@@ -0,0 +1 @@
+2
