--- hyphen-show-20000425.orig/debian/control
+++ hyphen-show-20000425/debian/control
@@ -0,0 +1,14 @@
+Source: hyphen-show
+Section: tex
+Priority: optional
+Maintainer: Martin Buck <mbuck@debian.org>
+Build-Depends: debhelper (>= 5)
+Standards-Version: 3.7.2.2
+
+Package: hyphen-show
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: Show hyphenations in DVI-files
+ hyphen_show scans a DVI-file, tries to find all hyphenations and writes them
+ to stdout. It is useful to check whether TeX's hyphenation algorithm really
+ did the good job it is supposed to do.
--- hyphen-show-20000425.orig/debian/compat
+++ hyphen-show-20000425/debian/compat
@@ -0,0 +1 @@
+5
--- hyphen-show-20000425.orig/debian/rules
+++ hyphen-show-20000425/debian/rules
@@ -0,0 +1,56 @@
+#!/usr/bin/make -f
+
+CC = gcc
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -O0
+else
+ CFLAGS += -O2
+endif
+
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+
+ $(CC) $(CFLAGS) -o hyphen_show hyphen_show.c
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ -rm -f build-stamp install-stamp
+ -rm -f hyphen_show hyphen_show.o README
+ dh_clean
+
+install: install-stamp
+install-stamp: build-stamp
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs usr/bin
+ dh_install hyphen_show usr/bin
+ cp README.hyphen_show README
+ touch install-stamp
+
+binary-indep: build install
+
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_installdocs README
+ dh_installman hyphen_show.1
+ dh_installchangelogs
+ 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
--- hyphen-show-20000425.orig/debian/changelog
+++ hyphen-show-20000425/debian/changelog
@@ -0,0 +1,51 @@
+hyphen-show (20000425-2) unstable; urgency=low
+
+ * Acknowledge previous NMU. Closes: #168391, #124744
+ * gcc 3 compatibility fixes, using Gentoo's hyphen_show-gcc34.patch
+ * Fixed a few warnings
+ * Upgraded to Standards-Version 3.7.2.2:
+ - Support DEB_BUILD_OPTIONS
+ * Switched to debhelper compatibility level 5
+ * Fixed manpage to use the right section
+
+ -- Martin Buck <mbuck@debian.org> Thu, 15 Mar 2007 00:38:58 +0100
+
+hyphen-show (20000425-1.1) unstable; urgency=low
+
+ * NMU.
+ * Add Build-Depends on debhelper. Closes: #168391.
+ * Fix spelling error in package description. Closes: #124744.
+
+ -- Daniel Schepler <schepler@debian.org> Fri, 1 Aug 2003 23:18:33 -0700
+
+hyphen-show (20000425-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Martin Buck <mbuck@debian.org> Sun, 6 Aug 2000 01:43:22 +0200
+
+hyphen-show (20000420-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Martin Buck <mbuck@debian.org> Mon, 24 Apr 2000 16:51:27 +0200
+
+hyphen-show (0.1-3) unstable; urgency=low
+
+ * Fixed segfault that occured when hyphen_show could not open the .hyp file
+ for writing. closes: #60972
+
+ -- Martin Buck <mbuck@debian.org> Sun, 16 Apr 2000 14:10:52 +0200
+
+hyphen-show (0.1-2) unstable; urgency=low
+
+ * Switched to debhelper
+ * Upgraded to Debian Policy 3.0.1.1
+
+ -- Martin Buck <mbuck@debian.org> Mon, 13 Sep 1999 23:42:08 +0200
+
+hyphen-show (0.1-1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Martin Buck <mbuck@debian.org> Sun, 7 Sep 1997 19:20:36 +0200
--- hyphen-show-20000425.orig/debian/copyright
+++ hyphen-show-20000425/debian/copyright
@@ -0,0 +1,22 @@
+This package was debianized by Martin Buck mbuck@debian.org on
+Sun, 7 Sep 1997 19:20:36 +0200.
+
+It was downloaded from ftp://ftp.iwd.uni-bremen.de/pub/tex/hyphenation/
+
+Original authors & copyright:
+Copyright (C) 1997 G. Lamprecht, W. Lotz, R. Weibezahn; IWD, Bremen University
+License
+
+License: GPL (see /usr/share/common-licenses/GPL)
+
+Additionally:
+IN NO EVENT SHALL THE LRW/IWD BE LIABLE TO ANY PARTY FOR
+DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
+OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE LRW
+HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+THE LRW/IWD SPECIFICALLY DISCLAIMS ANY WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
+ON AN "AS IS" BASIS, AND THE LRW/IWD NO OBLIGATION TO
+PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.