hkgerman (1:2-26) debian-dir only changes

Summary

 debian/aspell-de-alt.README.Debian         |   10 +
 debian/aspell-de-alt.dirs                  |    3 
 debian/aspell-de-alt.docs                  |    1 
 debian/aspell-de-alt.info-aspell           |   11 +
 debian/aspell-de-alt.install               |    1 
 debian/aspell-de-alt.links                 |    3 
 debian/aspell-de-alt.postinst              |   52 +++++
 debian/aspell-de-alt.postrm                |   40 ++++
 debian/aspell-de-alt.preinst               |   45 ++++
 debian/aspell-de-alt.prerm                 |   25 ++
 debian/changelog                           |  277 +++++++++++++++++++++++++++++
 debian/changelog.aspell-de-alt             |   35 +++
 debian/compat                              |    1 
 debian/control                             |   65 ++++++
 debian/copyright                           |   85 ++++++++
 debian/de-alt.contents                     |    3 
 debian/diacrit7to8.l                       |   63 ++++++
 debian/dirs                                |    1 
 debian/docs                                |    3 
 debian/hk2-buglist                         |  273 ++++++++++++++++++++++++++++
 debian/iogerman.info-ispell                |   25 ++
 debian/myspell-de-de-oldspell.dirs         |    3 
 debian/myspell-de-de-oldspell.info-myspell |    1 
 debian/rules                               |  159 ++++++++++++++++
 debian/wogerman.copyright                  |   13 +
 debian/wogerman.dirs                       |    1 
 debian/wogerman.info-wordlist              |   12 +
 27 files changed, 1211 insertions(+)

    
download this patch

Patch contents

--- hkgerman-2.orig/debian/aspell-de-alt.README.Debian
+++ hkgerman-2/debian/aspell-de-alt.README.Debian
@@ -0,0 +1,10 @@
+aspell-de-alt for Debian
+------------------------
+
+If the aspell-de and aspell-de-alt packages are installed in parallel,
+the new orthography is used by default. Use the following command to
+change this:
+
+	update-alternatives --config de.multi
+
+ -- Christoph Berg <cb@df7cb.de>, Thu, 17 Mar 2005 16:12:57 +0100
--- hkgerman-2.orig/debian/aspell-de-alt.dirs
+++ hkgerman-2/debian/aspell-de-alt.dirs
@@ -0,0 +1,3 @@
+usr/share/aspell
+var/lib/aspell
+var/lib/dictionaries-common/aspell
--- hkgerman-2.orig/debian/aspell-de-alt.docs
+++ hkgerman-2/debian/aspell-de-alt.docs
@@ -0,0 +1 @@
+debian/changelog.aspell-de-alt
--- hkgerman-2.orig/debian/aspell-de-alt.info-aspell
+++ hkgerman-2/debian/aspell-de-alt.info-aspell
@@ -0,0 +1,11 @@
+Language: deutsch, alte Rechtschreibung (German, old spelling)
+Hash-Name: de-alt
+Emacsen-Name: deutsch-alt
+Coding-System: iso-8859-1
+Aspell-Locales: 1:de
+
+Language: deutsch/Schweiz, alte Rechtschreibung (German/Switzerland, old spelling)
+Hash-Name: de_CH-alt
+Emacsen-Name: de_CH-alt
+Coding-System: iso-8859-1
+Aspell-Locales: 1:de_CH
--- hkgerman-2.orig/debian/aspell-de-alt.install
+++ hkgerman-2/debian/aspell-de-alt.install
@@ -0,0 +1 @@
+debian/de-alt.contents usr/share/aspell
--- hkgerman-2.orig/debian/aspell-de-alt.links
+++ hkgerman-2/debian/aspell-de-alt.links
@@ -0,0 +1,3 @@
+var/lib/aspell/de-alt-common.rws usr/lib/aspell/de-alt-common.rws
+var/lib/aspell/de-alt-CH.rws usr/lib/aspell/de-alt-CH.rws
+var/lib/aspell/de-alt-DE.rws usr/lib/aspell/de-alt-DE.rws
--- hkgerman-2.orig/debian/aspell-de-alt.postinst
+++ hkgerman-2/debian/aspell-de-alt.postinst
@@ -0,0 +1,52 @@
+#! /bin/sh
+# postinst script for aspell-de-alt
+
+set -e
+
+# summary of how this script can be called:
+#        * <postinst> `configure' <most-recently-configured-version>
+#        * <old-postinst> `abort-upgrade' <new version>
+#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
+#          <new-version>
+#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
+#          <failed-install-package> <version> `removing'
+#          <conflicting-package> <version>
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+case "$1" in
+    configure)
+	DIR="/usr/lib/aspell"
+	update-alternatives \
+		--install $DIR/de.multi de.multi $DIR/de-alt.multi 1901 \
+		--slave $DIR/de_AT.multi de_AT.multi $DIR/de-alt.multi \
+		--slave $DIR/de_CH.multi de_CH.multi $DIR/de_CH-alt.multi \
+		--slave $DIR/de_DE.multi de_DE.multi $DIR/de-alt.multi
+
+	# when a Sarge user setting exists, restore it
+	if [ -e /var/lib/aspell/de.multi.alternative-alt ] ; then
+	    update-alternatives --set de.multi /usr/lib/aspell/de-alt.multi
+	    rm /var/lib/aspell/de.multi.alternative-alt
+	fi
+
+	# register with installdeb-aspell
+	touch /var/lib/aspell/de-alt.compat
+    ;;
+
+    abort-upgrade|abort-remove|abort-deconfigure)
+    ;;
+
+    *)
+        echo "postinst called with unknown argument \`$1'" >&2
+        exit 1
+    ;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0
+
+# vim:sw=4:
--- hkgerman-2.orig/debian/aspell-de-alt.postrm
+++ hkgerman-2/debian/aspell-de-alt.postrm
@@ -0,0 +1,40 @@
+#! /bin/sh
+# postrm script for aspell-de-alt
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+#        * <postrm> `remove'
+#        * <postrm> `purge'
+#        * <old-postrm> `upgrade' <new-version>
+#        * <new-postrm> `failed-upgrade' <old-version>
+#        * <new-postrm> `abort-install'
+#        * <new-postrm> `abort-install' <old-version>
+#        * <new-postrm> `abort-upgrade' <old-version>
+#        * <disappearer's-postrm> `disappear' <overwriter> <new-version>
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+case "$1" in
+    purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+	rm -f /var/lib/aspell/de-alt.compat
+	# remove generated files since update-dictcommon-aspell does not
+	rm -f /var/lib/aspell/de-alt-common.rws /var/lib/aspell/de-alt-CH.rws /var/lib/aspell/de-alt-DE.rws
+    ;;
+
+    *)
+	echo "postrm called with unknown argument \`$1'" >&2
+	exit 1
+    ;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0
+
+# vim:sw=4:
--- hkgerman-2.orig/debian/aspell-de-alt.preinst
+++ hkgerman-2/debian/aspell-de-alt.preinst
@@ -0,0 +1,45 @@
+#! /bin/sh
+# preinst script for aspell-de
+
+set -e
+
+# summary of how this script can be called:
+#        * <new-preinst> `install'
+#        * <new-preinst> `install' <old-version>
+#        * <new-preinst> `upgrade' <old-version>
+#        * <old-preinst> `abort-upgrade' <new-version>
+
+case "$1" in
+    install|upgrade)
+	# Sarge shipped with the files in /usr/lib/aspell-0.60
+	if dpkg --compare-versions "$2" lt-nl 2.1-1-2 ; then
+	    # if the user changed the link, remember the status
+	    unset LANG LC_MESSAGES LC_ALL
+	    if update-alternatives --display de.multi | grep -q 'status is manual' &&
+		update-alternatives --display de.multi | grep -q 'points to.*-alt' ; then
+		    echo "Preserving old alternative de.multi -> aspell-de-alt"
+		    echo alt > /var/lib/aspell/de.multi.alternative-alt
+	    fi
+
+	    # remove the old links
+	    update-alternatives --remove de.multi /usr/lib/aspell-0.60/de-alt.multi || :
+	fi
+    ;;
+
+    abort-upgrade)
+    ;;
+
+    *)
+	echo "preinst called with unknown argument \`$1'" >&2
+	exit 1
+    ;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0
+
+# vim:sw=4:
--- hkgerman-2.orig/debian/aspell-de-alt.prerm
+++ hkgerman-2/debian/aspell-de-alt.prerm
@@ -0,0 +1,25 @@
+#! /bin/sh
+# prerm script for aspell-de-alt
+
+set -e
+
+case "$1" in
+    remove|deconfigure)
+	DIR="/usr/lib/aspell"
+	update-alternatives --remove de.multi $DIR/de-alt.multi
+    ;;
+
+    upgrade|failed-upgrade)
+    ;;
+
+    *)
+	echo "prerm called with unknown argument \`$1'" >&2
+	exit 1
+    ;;
+esac
+
+#DEBHELPER#
+
+exit 0
+
+# vim:sw=4:
--- hkgerman-2.orig/debian/changelog
+++ hkgerman-2/debian/changelog
@@ -0,0 +1,277 @@
+hkgerman (1:2-26) unstable; urgency=low
+
+  * myspell-de-de-oldspell now conflicts with hunspell-de-de and
+    hunspell-de-de-frami (Closes: #557051).
+  * Refer to GPL-2 in copyright file.
+  * Upgrade to Standards-Version 3.8.3 (no changes).
+
+ -- Roland Rosenfeld <roland@debian.org>  Sun, 06 Dec 2009 14:25:33 +0100
+
+hkgerman (1:2-25.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * move dict to /usr/share/hunspell and add compat symlinks
+    from /usr/share/myspell/dicts (closes: #541932) 
+  * utf8'ize copyright 
+
+ -- Rene Engelhard <rene@debian.org>  Wed, 23 Sep 2009 20:09:45 +0200
+
+hkgerman (1:2-25) unstable; urgency=low
+
+  * Add aspell support based on code from old aspell-de-alt package.
+  * Have to increase the epoch, because aspell-de-alt was version 2.1
+    before (don't ask me, where this version comes from).
+  * Update FSF address in copyright.
+  * Filter debug output of broken aspell 0.60.5-1 munchlist command
+    using "grep -v '^\(XXX\|>>>\)'" when creating aspell dictionaries
+    (see #428285).
+
+ -- Roland Rosenfeld <roland@debian.org>  Sun, 29 Jul 2007 00:22:24 +0200
+
+hkgerman (2-24) unstable; urgency=low
+
+  * s/Betriebsspannnung/Betriebsspannung/ (Closes: #295140).
+  * Several fixes (Closes: #295158):
+    - s/auslooten/ausloten/
+    - remove fo"rmig/AU (only used in compounds)
+    - remove geschritt/A (not a German word)
+    - s/Negerskalverei/Negersklaverei/
+    - s/Negerskave/Negersklave/
+    - s/Rhodesienkonflik/Rhodesienkonflikt/
+    - remove Stechzikel/S (Stechzirkel is already in dictionary)
+    - s/Wattenmehr/Wattenmeer/
+  * Upgrade to Standards-Version 3.7.2 (no changes).
+  * Upgrade to debhelper 5.
+  * Mention the IANA name (de-DE-1901) in the package descriptions.
+
+ -- Roland Rosenfeld <roland@debian.org>  Sun,  7 Jan 2007 15:54:38 +0100
+
+hkgerman (2-23) unstable; urgency=low
+
+  * Upgrade to Standards-Version 3.6.2 (no changes).
+  * Depend on debconf (>= 0.5) | debconf-2.0.
+
+ -- Roland Rosenfeld <roland@debian.org>  Mon, 26 Sep 2005 21:22:32 +0200
+
+hkgerman (2-22) unstable; urgency=low
+
+  * Remove "Intellegenz" (correct: "Intelligenz") (Closes: #269391).
+  * Convert changelog from iso-8859-1 to utf-8.
+
+ -- Roland Rosenfeld <roland@debian.org>  Sun, 12 Sep 2004 17:53:27 +0200
+
+hkgerman (2-21) unstable; urgency=low
+
+  * Added versioned dependency on dictionaries-common to [wi]ogerman.
+
+ -- Roland Rosenfeld <roland@debian.org>  Fri, 13 Feb 2004 18:07:50 +0100
+
+hkgerman (2-20) unstable; urgency=low
+
+  * Rebuild with new dictionaries-common-dev 0.20.0 (Closes: #232161,
+    #232180).
+
+ -- Roland Rosenfeld <roland@debian.org>  Wed, 11 Feb 2004 18:35:09 +0100
+
+hkgerman (2-19) unstable; urgency=low
+
+  * Corrected wrong spellings:
+    - s/Nebenlaüfigkeit/Nebenläufigkeit/ (Closes: #210187).
+    - s/Wiedervereinigtungsfrage/Wiedervereinigungsfrage/ (Closes: #210193).
+  * Run ogerman wordlist through sort -u to avoid duplicates 
+    (Closes: #210188).
+  * Add myspell support (package myspell-de-de-oldspell) mostly provided
+    by Rene Engelhard <rene@debian.org> (Closes: #210430).
+
+ -- Roland Rosenfeld <roland@debian.org>  Sat,  7 Feb 2004 13:16:15 +0100
+
+hkgerman (2-18) unstable; urgency=low
+
+  * Corrected wrong spellings: Brustbeschwerde, Redaktionsmitgliede,
+    Wiederstand. Thanks to Bjoern Jacke <bjoern@j3e.de>.
+  * s/Planungskozept/Planungskonzept/. Thanks to Frederik Ramm
+    <frederik@remote.org>.
+  * Apply hkgerman_2-patch-bj1.diff.gz by Bjoern Jacke <bjoern@j3e.de>,
+    which optimizes affix file, corrects some spellings and scripts.
+  * Upgrade to Standards-Version 3.6.1 (no changes).
+  * Upgrade to debhelper 4:
+    - debian/compat
+    - optimize rules according to debhelper/examples/rules.multi.
+    - Build-Depend on debhelper (>= 4.0.0)
+  * s/Außenministerkonfernz/Außenministerkonferenz/ (Closes: #204370).
+  * s/Binärbaüme/Binärbäume/ (Closes: #209401).
+
+ -- Roland Rosenfeld <roland@debian.org>  Tue,  9 Sep 2003 20:53:47 +0200
+
+hkgerman (2-17) unstable; urgency=low
+
+  * Add UTF8 support to affix file (Thanks to Bjoern Jacke <bjoern@j3e.de>
+    for providing the patch).
+  * s/german/German/ in copyright files to make lintian happy.
+  * Remove trailing dot from descriptions to make lintian happy.
+  * Upgrade Standards-Version to 3.5.8 (no changes).
+
+ -- Roland Rosenfeld <roland@debian.org>  Sun,  1 Dec 2002 15:38:07 +0100
+
+hkgerman (2-16) unstable; urgency=low
+
+  * Recompile with dictionaries-common-dev >= 0.8.4.
+
+ -- Roland Rosenfeld <roland@debian.org>  Sat, 26 Oct 2002 09:40:39 +0200
+
+hkgerman (2-15) unstable; urgency=low
+
+  * First official dictionaries-common release
+    (Closes: #43173, #94556, #164245, #164265).
+  * Correct handling of 'ss' and 'SS' in HTML affix file (Closes: #154568).
+  * Upgrade Standards-Version to 3.5.7.
+  * iogerman now depends on ispell.
+  * Many-Otherchars in info files corrected to "no":
+  * Locale set in info files to "de_DE".
+  * s/referenziell/referentiell/ (Closes: #137094).
+  * Downgrade Pre-Depends: dictionaries-common to Depends.
+
+ -- Roland Rosenfeld <roland@debian.org>  Sun, 13 Oct 2002 17:45:27 +0200
+
+hkgerman (2-14) unstable; urgency=low
+
+  * Now use new dictionaries-common support.
+  * Use dictionaries-common-dev 0.4.99.14 and new policy now.
+  * Recompile with ispell 3.1.20-30.
+  * Renamed igerman to iogerman and wgerman to wogerman to show that this
+    is the old German orthography, which will be replaced by [iw]ngerman
+    at least at 2005-08-01.
+  * Add debian/iogerman.info-ispell and debian/wogerman.info-wordlist.
+  * Add installdeb-wordlist and installdeb-ispell to debian/rules.
+  * Build-Depends on dictionaries-common-dev now.
+  * Add dependencies on debconf to wogerman and iogerman.
+  * Remove wordlist deutsch in rules/clean.
+  * Changed to debhelper.
+
+ -- Roland Rosenfeld <roland@debian.org>  Wed, 27 Feb 2002 21:07:09 +0100
+
+hkgerman (2-13) unstable; urgency=low
+
+  * New Debian maintainer (Closes: #130824).
+  * Merge new hk2-buglist from http://lisa.goe.net/~bjacke/igerman98/dict/
+  * Add SGML-, HTML-, and XML-entities to affix file.
+  * Merge stringchars etc. from igerman98, which seem to be more up to
+    date.
+  * Removed special handling for "wir tuen" from deutsch.aff, because
+    Duden says "wir tun".
+  * s/referentiell/referenziell/
+  * s/Zwangskolleektivierung/Zwangskollektivierung/ (Closes: #134586).
+
+ -- Roland Rosenfeld <roland@debian.org>  Sun, 24 Feb 2002 22:14:51 +0100
+
+hkgerman (2-12) unstable; urgency=low
+
+  * hkgerman is now GPL. (closes: #131124)
+  * fixing description. (closes: #124752, #125479)
+  * applied (partly) buglist from suse (closes: #28526)
+  * changed order in deutsch.aff (closes: #90482)
+  * fixed upstream-authors address.
+
+ -- Cord Beermann <cord@debian.org>  Fri,  1 Feb 2002 20:45:44 +0100
+
+hkgerman (2-11) unstable; urgency=low
+
+  * Orphaned this package.
+
+ -- Adrian Bunk <bunk@fs.tum.de>  Fri, 25 Jan 2002 12:51:50 +0100
+
+hkgerman (2-10) unstable; urgency=low
+
+  * Added the missing build dependency on ispell. (closes: #94552)
+  * Renamed words.5 to words-german.5 . (closes: #94359)
+
+ -- Adrian Bunk <bunk@fs.tum.de>  Mon, 23 Apr 2001 02:00:18 +0200
+
+hkgerman (2-9) unstable; urgency=low
+
+  * Changed igerman to be binary-any again. There was a reason
+    why it shouldn't be binary-all...
+
+ -- Adrian Bunk <bunk@fs.tum.de>  Tue, 17 Apr 2001 14:00:11 +0200
+
+hkgerman (2-8) unstable; urgency=low
+
+  * New maintainer. (closes: #90362)
+  * Made igerman binary-all.
+  * Use update-alternatives in wgerman. (closes: #27954, #43172)
+  * Removed the obsolete README.debian.
+  * Added "-isp" to dpkg-gencontrol in debian/rules.
+  * /usr/doc -> /usr/share/doc (closes: #91514, #91700)
+  * /usr/man -> /usr/share/man (closes: #91082)
+  * /usr/dict -> /usr/share/dict (closes: #87290)
+  * Added build dependencies.
+  * Standards-Version: 3.5.2
+
+ -- Adrian Bunk <bunk@fs.tum.de>  Thu, 12 Apr 2001 13:17:58 +0200
+
+hkgerman (2-7.1) unstable; urgency=low
+
+  * Non maintainer upload with permission of maintainer.
+  * Merged in hk2-buglist from
+    http://members.xoom.com/_XOOM/maccy/ispell/dict/, thanks to Björn
+    Jacke <bjoern.jacke@gmx.de> (Fixes: #28526).
+  * Added alphabeta.txt and roemisch.txt to dictionary.
+  * Convert "sS" to "ß" in diacrit7to8 (Fixes: #42245).
+  * Compress changelog.Debian.
+  * Mention in control that this refers to the old German orthography.
+
+ -- Roland Rosenfeld <roland@debian.org>  Thu, 14 Oct 1999 20:52:19 +0200
+
+hkgerman (2-7) unstable; urgency=low
+
+  * make clean should not remove the debian/CVS directory 
+    (when present).
+  * wgerman provides wordlist (Bug#9396).
+  * affix shortcuts removed when creating wgerman dictionary.
+  * debian/rules clean now removes left over debian/*.deb
+    files.
+
+ -- Juergen Menden <menden@morgana.camelot.de>  Thu, 29 May 1997 00:03:26 +0200
+
+hkgerman (2-6) unstable; urgency=low
+
+  * converted to the new source package format.
+  * new maintainer.
+
+ -- Juergen Menden <menden@morgana.camelot.de>  Sun, 20 Apr 1997 17:14:25 +0200
+
+hkgerman (2-5) unstable; urgency=low
+
+  * igerman now provides ispell-dictionary (Bug#3503)
+  * gzip manpage
+
+ -- Michael Meskes <meskes@debian.org>  Thu,  4 Jul 1996 09:05:11 +0200
+  
+hkgerman (2-4) unstable; urgency=low
+
+  * Adapted to new naming scheme
+  * Both packages now have an extended description
+  * Don't create adirectory for copyright file
+
+ -- Michael Meskes <meskes@debian.org>  Fri, 28 Jun 1996 21:35:38 +0200
+  
+hkgerman (2-3) unstable; urgency=low
+
+  * Finally translated the german part of the copyright file.
+  * Combined doc files
+  
+ -- Michael Meskes <meskes@debian.org>  Tue, 14 May 1996 14:07:58 +0200
+
+hkgerman (2-2) unstable; urgency=low
+
+  * Corrected copyright file.
+
+ -- Michael Meskes <meskes@debian.org>  Mon, 13 May 1996 13:33:24 +0200
+  
+hkgerman (2-1) unstable; urgency=low
+
+  * Upgraded to affix version 1.7
+  * Added new dictionary by Heinz Knutzen <hk@informatik.uni-kiel.d400.de>
+  * New maintainer
+
+ -- Michael Meskes <meskes@debian.org>  Thu, 25 Apr 1996 13:38:28 +0200
--- hkgerman-2.orig/debian/changelog.aspell-de-alt
+++ hkgerman-2/debian/changelog.aspell-de-alt
@@ -0,0 +1,35 @@
+aspell-de-alt (2.1-1-5) unstable; urgency=low
+
+  * Unset LANG in preinst for update-alternatives output (see #382335).
+
+ -- Christoph Berg <myon@debian.org>  Thu, 10 Aug 2006 21:08:00 +0200
+
+aspell-de-alt (2.1-1-4) unstable; urgency=low
+
+  * Fix alternatives path in prerm (Closes: #353320, thanks Lars Wirzenius).
+  * Properly declare Build-Depends-Indep.
+
+ -- Christoph Berg <myon@debian.org>  Tue, 21 Feb 2006 21:29:11 +0100
+
+aspell-de-alt (2.1-1-3) unstable; urgency=low
+
+  * Move /var/lib/aspell/de-alt* to postinst, it will be modified by
+    installdeb-aspell (Closes: #324113).
+  * Add "1901" to Description (Closes: #308004).
+
+ -- Christoph Berg <myon@debian.org>  Mon, 12 Sep 2005 15:08:05 +0200
+
+aspell-de-alt (2.1-1-2) unstable; urgency=low
+
+  * Repackage for new aspell build system (Closes: #319674).
+    Thanks to Brian Nelson for the repackaging instructions.
+  * Bump standards version (no changes).
+
+ -- Christoph Berg <cb@df7cb.de>  Thu, 28 Jul 2005 00:41:21 +0200
+
+aspell-de-alt (2.1-1-1) unstable; urgency=low
+
+  * Initial Release (Closes: #296742).
+
+ -- Christoph Berg <cb@df7cb.de>  Thu, 17 Mar 2005 19:49:14 +0100
+
--- hkgerman-2.orig/debian/compat
+++ hkgerman-2/debian/compat
@@ -0,0 +1 @@
+5
--- hkgerman-2.orig/debian/control
+++ hkgerman-2/debian/control
@@ -0,0 +1,65 @@
+Source: hkgerman
+Section: text
+Priority: optional
+Maintainer: Roland Rosenfeld <roland@debian.org>
+Standards-Version: 3.8.3
+Build-Depends: ispell (>= 3.1.20-30), dictionaries-common-dev (>= 0.20.0), debhelper (>= 5), flex, aspell (>> 0.60.3.2-2)
+
+Package: iogerman
+Architecture: any
+Provides: ispell-dictionary
+Depends: debconf (>= 0.5.0.0) | debconf-2.0, ispell, dictionaries-common (>= 0.20.0)
+Suggests: wogerman
+Replaces: igerman
+Conflicts: igerman
+Description: Old German orthography dictionary for ispell
+ This is the old German dictionary for ispell as put together by
+ heinz.knutzen@web.de.
+ .
+ This dictionary refers to the traditional German orthography
+ (de-DE-1901).  For the new orthography (de-DE-1996) see package
+ ingerman.
+
+Package: wogerman
+Architecture: all
+Provides: wordlist
+Depends: debconf (>= 0.5.0.0) | debconf-2.0, dictionaries-common (>= 0.20.0)
+Replaces: wgerman
+Conflicts: wgerman
+Description: The old German dictionary for /usr/share/dict
+ This is the German dictionary as put together by 
+ heinz.knutzen@web.de.
+ .
+ This dictionary refers to the traditional German orthography
+ (de-DE-1901).  For the new orthography (de-DE-1996) see package
+ wngerman.
+
+Package: myspell-de-de-oldspell
+Architecture: all
+Priority: extra
+Conflicts: myspell-de-de, hunspell-de-de, hunspell-de-de-frami,
+ openoffice.org (<= 1.0.3-2), openoffice.org-spellcheck-de-de
+Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts
+Suggests: openoffice.org
+Provides: myspell-dictionary, myspell-dictionary-de
+Description: German dictionary for myspell (old orthography)
+ This is the German (Germany) dictionary for use with the myspell
+ spellchecker which is currently used within OpenOffice.org and the
+ mozilla spellchecker.
+ .
+ This dictionary refers to the traditional German orthography
+ (de-DE-1901).  For the new orthography (de-DE-1996) see package
+ myspell-de-de.
+
+Package: aspell-de-alt
+Architecture: all
+Depends: aspell (>> 0.60.3-2), dictionaries-common (>= 0.9.1)
+Provides: aspell-dictionary
+Conflicts: aspell-de (<< 0.60-20030222-1-3)
+Description: German dictionary for aspell (old spelling)
+ This package contains German dictionaries for the aspell spell checker.
+ .
+ Dictionaries included are de-alt (deutsch-alt/german-old) and de_CH-alt,
+ all using the old German orthography from 1901 (alte Rechtschreibung).
+ .
+ The new (1996) spelling is provided by aspell-de.
--- hkgerman-2.orig/debian/copyright
+++ hkgerman-2/debian/copyright
@@ -0,0 +1,85 @@
+This is the Debian Linux prepackaged version of a German dictionary.
+This package was put together by Michael Meskes <meskes@debian.org> from
+sources obtained from
+
+ftp://ftp.informatik.uni-kiel.de/pub/kiel/dicts/hk2-deutsch.tar.gz
+
+This version of the package also incorporates several changes
+Christoph Berg <myon@debian.org> added to the former package
+aspell-de, which is based on files downloaded from
+ftp://ftp.gnu.org/gnu/aspell/dict/de/.
+
+
+The affix file carries the following copyright:
+
+# Copyright 1988, 1989, 1992, 1993, Geoff Kuenning, Granada Hills, CA
+# 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.
+# 3. All modifications to the source code must be clearly marked as
+#    such.  Binary redistributions based on modified source code
+#    must be clearly marked as modified versions in the documentation
+#    and/or other materials provided with the distribution.
+# 4. All advertising materials mentioning features or use of this software
+#    must display the following acknowledgment:
+#      This product includes software developed by Geoff Kuenning and
+#      other unpaid contributors.
+# 5. The name of Geoff Kuenning may not be used to endorse or promote
+#    products derived from this software without specific prior
+#    written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING 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 GEOFF KUENNING 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.
+#
+#	Affix table for German
+#
+
+In http://bugs.debian.org/131124 the author of this dictionary cleared the
+copyright.
+
+From: Heinz Knutzen <heinz.knutzen@web.de>
+Date: Fri, 1 Feb 2002 18:20:23 +0100
+
+"Hereby I put the h2-deutsch wordlists under the GNU Public License"
+
+On Debian GNU/Linux systems the complete text of the GPL can be found
+in /usr/share/common-licenses/GPL-2.
+
+
+The de-alt_phonet.dat file has the following copyright:
+
+#   German phonetic transformation rules for use with Aspell
+#   Copyright (C) 2000 Björn Jacke
+#
+#   This library is free software; you can redistribute it and/or
+#   modify it under the terms of the GNU Lesser General Public
+#   License version 2.1 as published by the Free Software Foundation;
+#
+#   This library 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
+#   Lesser General Public License for more details.
+#
+#   You should have received a copy of the GNU Lesser General Public
+#   License along with this library; if not, write to the Free
+#   Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+#   02110-1301, USA.
+#
+#   Björn Jacke may be reached by email at bjoern.jacke@gmx.de
--- hkgerman-2.orig/debian/de-alt.contents
+++ hkgerman-2/debian/de-alt.contents
@@ -0,0 +1,3 @@
+de-alt-common
+de-alt-CH
+de-alt-DE
--- hkgerman-2.orig/debian/diacrit7to8.l
+++ hkgerman-2/debian/diacrit7to8.l
@@ -0,0 +1,63 @@
+/*
+ * diacrit7to8.l: convert characters with postfix diacritics to Latin1.
+ *
+ * by Kristoffer Høgsbro Rose <kris@diku.dk>, December 1, 1993.
+ *
+ * This programs comes without any warranty whatsowever.
+ */
+
+%%
+
+"A`"	putchar('À'); /* postfix accents */
+"A'"	putchar('Á');
+"A^"	putchar('Â');
+"A~"	putchar('Ã');
+"A\""	putchar('Ä');
+"C/"	putchar('Ç');
+"E`"	putchar('È');
+"E'"	putchar('É');
+"E^"	putchar('Ê');
+"E\""	putchar('Ë');
+"I`"	putchar('Ì');
+"I'"	putchar('Í');
+"I^"	putchar('Î');
+"I\""	putchar('Ï');
+"N~"	putchar('Ñ');
+"O`"	putchar('Ò');
+"O'"	putchar('Ó');
+"O^"	putchar('Ô');
+"O~"	putchar('Õ');
+"O\""	putchar('Ö');
+"U`"	putchar('Ù');
+"U'"	putchar('Ú');
+"U^"	putchar('Û');
+"U\""	putchar('Ü');
+"Y'"	putchar('Ý');
+"a`"	putchar('à');
+"a'"	putchar('á');
+"a^"	putchar('â');
+"a~"	putchar('ã');
+"a\""	putchar('ä');
+"c/"	putchar('ç');
+"e`"	putchar('è');
+"e'"	putchar('é');
+"e^"	putchar('ê');
+"e\""	putchar('ë');
+"i`"	putchar('ì');
+"i'"	putchar('í');
+"i^"	putchar('î');
+"i\""	putchar('ï');
+"n~"	putchar('ñ');
+"o`"	putchar('ò');
+"o'"	putchar('ó');
+"o^"	putchar('ô');
+"o~"	putchar('õ');
+"o\""	putchar('ö');
+"u`"	putchar('ù');
+"u'"	putchar('ú');
+"u^"	putchar('û');
+"u\""	putchar('ü');
+"y'"	putchar('ý');
+"sS"	putchar('ß');
+
+^\n	/* skip empty lines */;
--- hkgerman-2.orig/debian/dirs
+++ hkgerman-2/debian/dirs
@@ -0,0 +1 @@
+/usr/lib/ispell
--- hkgerman-2.orig/debian/docs
+++ hkgerman-2/debian/docs
@@ -0,0 +1,3 @@
+README
+ANNOUNCE
+Contributors
--- hkgerman-2.orig/debian/hk2-buglist
+++ hkgerman-2/debian/hk2-buglist
@@ -0,0 +1,273 @@
+This list is located at
+http://lisa.goe.net/~bjacke/igerman98/dict/hk2-buglist
+
+0
+< anstössig
+> anstößig
+1
+< Abstosses
+> Abstoßes
+2
+< Affenhausses
+> Affenhauses
+3
+< Aktienpreisses
+> Aktienpreises
+4
+< Ausstosses
+> Ausstoßes
+5
+< Blumenstrausses
+> Blumenstraußes
+6
+< Fortgeschrittenenkursses
+> Fortgeschrittenenkurses
+7
+< Induktionsschlüsses
+8
+< Kapillargefässe
+> Kapillargefäße
+9
+< Klettenverschluß
+> Klettverschluß
+10
+< Kokusnuß
+> Kokosnuß
+11
+< Kokusnußherrscher
+> Kokosnußherrscher
+12
+< Kokusnüssen
+> Kokosnüssen
+13
+< Staubgefässe
+> Staubgefäßes
+14
+< Stewardesses
+> Stewardessen
+15
+< Strausses
+> Straußes
+16
+< Tischtennisses
+17
+< Verlagspreisses
+18
+< Windstosses
+> Windstoßes
+19
+< Zirkusses
+20
+< Annäherungspolitikn
+21
+< Alarmsendungn
+22
+< Bösewichtn
+23
+< Schulfreundn
+24
+< Resumee
+> Resümee
+25
+< Rotkelchen
+> Rotkehlchen
+26
+< Sachbereichn
+27
+< Schutzbefohleneer
+< Schutzbefohleneern
+28
+< Seebäres
+29
+< Brummbäres
+30+31
+< Ameisenbäre
+< Ameisenbärs
+32  ... genitiv von bär ist bären!
+< Bärs
+33
+< Eisbärs
+34
+< Tanzbärs
+35
+< Teddybärs
+36
+< Waschbärs
+37
+< Sprengstöffe
+38
+< Staatsangehörigeer
+39
+< Staatsgefangeneer
+40
+< Stout
+41
+< Tempelherrs
+42
+< Verhöhre
+> Verhöre
+43
+< Vorstandsvorsitzendeer
+44
+< ausgererechnet
+45
+< beizuwohen
+> beizuwohnen
+46
+< eingeforen
+47
+< engültig
+48
+< sozialpotitisch
+49
+< akkreditert
+50
+< exponential
+51
+< gesammte
+52
+< intrumental
+53
+< instrumentell
+54
+< photografisch
+55
+< bahutsam
+56
+< hellbeig
+> hellbeige
+57
+< mittelos
+58
+< überabeitet
+59
+< Zeitläufte
+60
+< Haselsträuche
+> Haselsträucher
+61
+< Teersträuchen
+> Teersträuchern
+62
+< Brombeersträuche
+> Brombeersträucher
+63
+< Himbeersträuche
+> Himbeersträucher
+64
+< Wacholdersträusche
+65
+< irgenwo
+66
+< vorallem
+67
+< zusammenbekommen/A
+68
+< zusammenha"ngen/AU
+69
+< bewiesenermäsen
+> bewiesenermaßen
+70 (by Roland Rosenfeld)
+< Ouput
+> Output
+71 (by Roland Rosenfeld)
+< detailieren
+> detaillieren
+72
+< hochsa"sig
+73
+< behändeeres
+74
+< charakterstarkeres
+75
+< auflagenstarkeres
+76
+< desweiteren
+77
+< unversta"ndlicheierweise
+> unversta"ndlicherweise
+78
+< vorneherein
+79
+< Rally
+> Rallye
+80
+< einfürallemal
+81
+< anbetrachts
+82
+< Parafin
+83
+< Anffälligkeit
+84
+< Auspüffe
+85
+< Briefaufschrifft
+86
+< Pfeiffentabak
+87
+< Sumpffhühner
+< Sumpffhuhn
+88
+< prestrigeträchtig
+> prestigeträchtig
+89
+< Spielba"nken
+90
+< Abpra"lle
+91
+< Aufpra"lle
+92
+< Kna"lle
+92
+< Schwa"lle
+93
+< Sidnay
+94
+< Accessoiry
+< Accessoiries
+95
+< lies/A
+96
+< wohlauf/A
+97
+< Optimier/N
+98
+< zuru"ckliegen/Y
+> zuru"cklag/Z
+99
+< Aquisition
+100
+< Aquisiteur
+101
+< .*tuen
+102
+< legitimisieren
+103
+< Kontinentalplateaux
+104
+< halbrohreismenge
+105
+< indexieren
+106
+< Indexierung
+107
+< boolesch
+> boolsch
+108
+< deutschsprechen
+109
+< agressionshemmend
+110
+< Agressivita"t
+> Aggressivita"t
+111
+< Agression
+112
+< Altenwohnstift
+
+... there are hundreds of other nasty bugs in the hk dictionary but I stopped
+this list at this point.
+
+To see more bugs make a diff between 'isowordlist' of igerman98-19991219
+an igerman98-`mostrecentversion` and grep for words that disappeared.
--- hkgerman-2.orig/debian/iogerman.info-ispell
+++ hkgerman-2/debian/iogerman.info-ispell
@@ -0,0 +1,25 @@
+Language: deutsch (Old German -tex mode-)
+Hash-Name: ogerman
+Emacsen-Name: german-old
+Casechars: [A-Za-z\"]
+Not-Casechars: [^A-Za-z\"]
+Otherchars: [']
+Many-Otherchars: no
+Additionalchars: \"
+Ispell-Args: -C -d ogerman
+Extended-Character-Mode: ~tex
+Coding-System: iso-8859-1
+Locale: de_DE
+
+Language: deutsch (Old German 8 bit)
+Hash-Name: ogerman
+Emacsen-Name: german-old8
+Casechars: [A-Za-zÄÖÜäößü]
+Not-Casechars: [^A-Za-zÄÖÜäößü]
+Otherchars: [']
+Many-Otherchars: no
+Additionalchars: ÄÖÜäößü
+Ispell-Args: -C -d ogerman
+Extended-Character-Mode: ~latin1
+Coding-System: iso-8859-1
+Locale: de_DE
--- hkgerman-2.orig/debian/myspell-de-de-oldspell.dirs
+++ hkgerman-2/debian/myspell-de-de-oldspell.dirs
@@ -0,0 +1,3 @@
+usr/share/hunspell
+usr/share/myspell/dicts
+usr/share/myspell/infos/ooo
--- hkgerman-2.orig/debian/myspell-de-de-oldspell.info-myspell
+++ hkgerman-2/debian/myspell-de-de-oldspell.info-myspell
@@ -0,0 +1 @@
+DICT de DE de_DE
--- hkgerman-2.orig/debian/rules
+++ hkgerman-2/debian/rules
@@ -0,0 +1,159 @@
+#!/usr/bin/make -f
+#
+# (C) 1999-2007 Roland Rosenfeld <roland@debian.org>, based on
+# Sample debian/rules that uses debhelper. 
+# This file is public domain software, originally written by Joey Hess.
+#
+# This version is for a package that builds an architecture-dependant
+# package, as well as an architecture-independent package.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+worte=  worte.txt verben.txt adjektive.txt klein.txt \
+	geographie.txt vornamen.txt abkuerz.txt imperat.txt latein.txt \
+	informatik.txt infoabk.txt elektronik.txt orgabk.txt marken.txt \
+	worte2.txt zusammen.txt technik.txt compeng.txt \
+	alphabeta.txt roemisch.txt
+
+DROOT=`pwd`/debian
+ADIR=$(DROOT)/aspell-de-alt
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	$(MAKE) WORTE="$(worte)"
+	$(MAKE) myspelldic
+	$(MAKE) aspell
+	debian/rules deutsch
+
+	touch build-stamp
+
+debian/diacrit7to8: debian/diacrit7to8.l
+	cd debian; flex -8 -f diacrit7to8.l
+	gcc -O2 debian/lex.yy.c -lfl -o debian/diacrit7to8
+	@/bin/rm debian/lex.yy.c
+
+deutsch: all.words debian/diacrit7to8
+	sed -f ./clear_affix all.words | debian/diacrit7to8 | sort -u > $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	[ ! -f Makefile ] || $(MAKE) clean
+	rm -f debian/diacrit7to8
+	rm -f deutsch
+
+	rm -f debian/iogerman.config debian/iogerman.templates
+	rm -f debian/wogerman.config debian/wogerman.templates
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+#	iogerman (binary-arch):
+	install -o root -g root -m644 deutsch.aff \
+		`pwd`/debian/iogerman/usr/lib/ispell/ogerman.aff
+	install -o root -g root -m644 deutsch.hash \
+		`pwd`/debian/iogerman/usr/lib/ispell/ogerman.hash
+	(cd `pwd`/debian/iogerman/usr/lib/ispell; \
+		ln -s ogerman.aff odeutsch.aff; \
+		ln -s ogerman.hash odeutsch.hash;)
+
+#	wogerman (binary-indep):
+	install -o root -g root -m644 deutsch \
+		`pwd`/debian/wogerman/usr/share/dict/ogerman
+
+#	myspell-de-de-oldspell (binary-indep):
+	install -o root -g root -m644 myspell.dic \
+	  `pwd`/debian/myspell-de-de-oldspell/usr/share/hunspell/de_DE.dic
+	install -o root -g root -m644 myspell.aff \
+	  `pwd`/debian/myspell-de-de-oldspell/usr/share/hunspell/de_DE.aff
+	ln -s /usr/share/hunspell/de_DE.aff \
+		debian/myspell-de-de-oldspell/usr/share/myspell/dicts/de_DE.aff
+	ln -s /usr/share/hunspell/de_DE.dic \
+		debian/myspell-de-de-oldspell/usr/share/myspell/dicts/de_DE.dic
+
+#	aspell (binary-indep):
+	$(MAKE) DESTDIR=$(ADIR) aspell-install
+	gzip -9 < de-alt-common.cwl \
+		> $(ADIR)/usr/share/aspell/de-alt-common.cwl.gz
+	gzip -9 < de-alt-CH.cwl > $(ADIR)/usr/share/aspell/de-alt-CH.cwl.gz
+	gzip -9 < de-alt-DE.cwl > $(ADIR)/usr/share/aspell/de-alt-DE.cwl.gz
+	dh_link
+	dh_install
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir -i
+	dh_testroot -i
+	dh_installchangelogs -i Changes
+	dh_installdocs -i
+	dh_installexamples -i
+#	dh_installmenu -i
+	installdeb-wordlist -pwogerman # Internally calls dh_installdebconf
+	installdeb-myspell -pmyspell-de-de-oldspell
+	installdeb-aspell -paspell-de-alt
+#	dh_installdebconf -i
+#	dh_installlogrotate -i
+#	dh_installemacsen -i
+#	dh_installcatalogs -i
+#	dh_installpam -i
+#	dh_installmime -i
+#	dh_installinit -i
+#	dh_installcron -i
+#	dh_installinfo -i
+#	dh_undocumented -i
+	dh_installman -i
+	dh_link -i
+	dh_compress -i
+	dh_fixperms -i
+#	dh_perl -i
+#	dh_python -i
+	dh_installdeb -i
+	dh_gencontrol -i
+	dh_md5sums -i
+	dh_builddeb -i
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir -a
+	dh_testroot -a
+	dh_installchangelogs -a Changes
+	dh_installdocs -a
+	dh_installexamples -a
+	dh_installmenu -a
+	installdeb-ispell -a  # This internally calls dh_installdebconf
+#	dh_installdebconf -a
+#	dh_installlogrotate -a
+#	dh_installemacsen -a
+#	dh_installcatalogs -a
+#	dh_installpam -a
+#	dh_installmime -a
+#	dh_installinit -a
+#	dh_installcron -a
+#	dh_installinfo -a
+#	dh_undocumented -a
+	dh_installman -a
+	dh_strip -a
+	dh_link -a
+	dh_compress -a
+	dh_fixperms -a
+#	dh_perl -a
+#	dh_python -a
+#	dh_makeshlibs -a
+	dh_installdeb -a
+	dh_shlibdeps -a
+	dh_gencontrol -a
+	dh_md5sums -a
+	dh_builddeb -a
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
--- hkgerman-2.orig/debian/wogerman.copyright
+++ hkgerman-2/debian/wogerman.copyright
@@ -0,0 +1,13 @@
+This is the Debian Linux prepackaged version of a German dictionary.
+This package was put together by Michael Meskes <meskes@debian.org> from
+sources obtained from
+
+ftp://ftp.informatik.uni-kiel.de/pub/kiel/dicts/hk2-deutsch.tar.gz
+
+In http://bugs.debian.org/131124 the author of this dictionary cleared the
+copyright.
+
+From: Heinz Knutzen <heinz.knutzen@web.de>
+Date: Fri, 1 Feb 2002 18:20:23 +0100
+
+"Hereby I put the h2-deutsch wordlists under the GNU Public License"
--- hkgerman-2.orig/debian/wogerman.dirs
+++ hkgerman-2/debian/wogerman.dirs
@@ -0,0 +1 @@
+usr/share/dict
--- hkgerman-2.orig/debian/wogerman.info-wordlist
+++ hkgerman-2/debian/wogerman.info-wordlist
@@ -0,0 +1,12 @@
+Language: deutsch (Old German)
+Hash-Name: ogerman
+Emacsen-Name: german-old8
+Casechars: [A-Za-zÄÖÜäößü]
+Not-Casechars: [^A-Za-zÄÖÜäößü]
+Otherchars: [']
+Many-Otherchars: no
+Additionalchars: ÄÖÜäößü
+Ispell-Args: -C -d ogerman
+Extended-Character-Mode: ~latin1
+Coding-System: iso-8859-1
+Locale: de_DE