--- miscfiles-1.4.2.dfsg.1.orig/debian/prerm
+++ miscfiles-1.4.2.dfsg.1/debian/prerm
@@ -0,0 +1,80 @@
+#! /bin/sh
+#                               -*- Mode: Sh -*- 
+# prerm --- 
+# Author           : Manoj Srivastava ( srivasta@glaurung.green-gryphon.com ) 
+# Created On       : Fri May 14 15:43:52 1999
+# Created On Node  : glaurung.green-gryphon.com
+# Last Modified By : Manoj Srivastava
+# Last Modified On : Mon Feb  7 02:15:48 2000
+# Last Machine Used: glaurung.green-gryphon.com
+# Update Count     : 4
+# Status           : Unknown, Use with caution!
+# HISTORY          : 
+# Description      : 
+# 
+# 
+
+# Skeleton maintainer script showing all the possible cases.
+# Written by Charles Briscoe-Smith, March-June 1998.  Public Domain.
+
+# Abort if any command returns an error value
+set -e
+package_name=miscfiles
+
+# This script is called as the first step in removing the package from
+# the system.  This includes cases where the user explicitly asked for
+# the package to be removed, upgrade, automatic removal due to conflicts,
+# and deconfiguration due to temporary removal of a depended-on package.
+
+# Info files should be uninstalled from the dir file in any case.
+install-info --quiet --remove /usr/info/tasks.info.gz ;
+
+case "$1" in
+  remove)
+    # This package about to be removed.
+    :
+
+    # There are two sub-cases:
+    if test "${2+set}" = set; then
+      if test "$2" != in-favour; then
+        echo "$0: undocumented call to \`prerm $*'" 1>&2
+        exit 0
+      fi
+      # We are being removed because of a conflict with package $3
+      # (version $4), which is now being installed.
+      :
+
+    else
+      # The package is being removed in its own right.
+      :
+
+    fi ;;
+  deconfigure)
+    if test "$2" != in-favour -o "$5" != removing; then
+      echo "$0: undocumented call to \`prerm $*'" 1>&2
+      exit 0
+    fi
+    # Package $6 (version $7) which we depend on is being removed due
+    # to a conflict with package $3 (version $4), and this package is
+    # being deconfigured until $6 can be reinstalled.
+    :
+
+    ;;
+  upgrade)
+    # Prepare to upgrade FROM THIS VERSION of this package to version $2.
+    :
+
+    ;;
+  failed-upgrade)
+    # Prepare to upgrade from version $2 of this package TO THIS VERSION.
+    # This is only used if the old version's prerm couldn't handle it,
+    # and returned non-zero.  (Fix old prerm bugs here.)
+    :
+
+    ;;
+  *) echo "$0: didn't understand being called with \`$1'" 1>&2
+     exit 0;;
+esac
+
+exit 0
+
--- miscfiles-1.4.2.dfsg.1.orig/debian/config
+++ miscfiles-1.4.2.dfsg.1/debian/config
@@ -0,0 +1,12 @@
+#!/usr/bin/perl -w
+use Debconf::Client::ConfModule q(:all);
+
+version ('2.0');
+
+my $class = "wordlist";
+my $script = "/usr/share/dictionaries-common/dc-debconf-select.pl";
+
+if ( -e $script ){
+    require $script;
+    dc_debconf_select($class);
+}
--- miscfiles-1.4.2.dfsg.1.orig/debian/rules
+++ miscfiles-1.4.2.dfsg.1/debian/rules
@@ -0,0 +1,127 @@
+#!/usr/bin/make -f
+############################ -*- Mode: Makefile -*- ###########################
+## rules ---
+## Author	    : Manoj Srivastava ( srivasta@tiamat.datasync.com )
+## Created On	    : Sun Mar 30 00:18:31 1997
+## Created On Node  : tiamat.datasync.com
+## Last Modified By : Manoj Srivastava
+## Last Modified On : Mon Feb  7 03:28:29 2000
+## Last Machine Used: glaurung.green-gryphon.com
+## Update Count	    : 30
+## Status	    : Unknown, Use with caution!
+## HISTORY	    :
+## Description	    :
+##
+###############################################################################
+
+#
+# VERSION=$(shell LC_ALL=C dpkg-parsechangelog | grep ^Version: | \
+#                          sed 's/^Version: *//')
+#
+
+# The name of the package (for example, `emacs').
+package = $(shell grep Source debian/control | sed 's/^Source: //')
+
+FILES_TO_CLEAN = debian/files debian/files* debian/substvars
+STAMPS_TO_CLEAN =  stamp-binary stamp-build
+DIRS_TO_CLEAN  = debian/tmp
+thisdir=$(shell pwd)
+
+# install commands
+install_file= install -p -o root -g root -m 644
+install_program= install -p -o root -g root -m 755
+make_directory= install -p -d -o root -g root -m 755
+
+# Configuration variables (these should be pretty generic)
+DOCDIR := debian/tmp/usr/share/doc/$(package)
+
+
+all build: stamp-build
+
+stamp-build:
+# Builds the binary package.
+	$(checkdir)
+	-test -f stamp-configure || $(MAKE) -f debian/rules configure
+	$(MAKE)
+	touch stamp-build
+
+configure: stamp-configure
+
+stamp-configure:
+	CC=$(CC) CFLAGS="$(CFLAGS)"  ./configure --prefix=/usr \
+           && touch stamp-configure
+
+clean:
+	$(checkdir)
+	-test -f Makefile && make distclean
+	rm -f $(FILES_TO_CLEAN) $(STAMPS_TO_CLEAN)
+	rm -f -r $(DIRS_TO_CLEAN)
+	rm -f core `find . \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
+		-o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
+		-o -name '.*.rej' -o -name '.SUMS' -o -size 0 \) -print` TAGS
+
+binary: binary-arch binary-indep
+
+binary-arch: build
+# builds the architecture dependent part
+
+binary-indep: build stamp-binary
+
+
+stamp-binary:
+	@test 0 = $$(id | sed -e 's/(.*$$//' -e 's/^uid=//')  ||\
+		 (echo need root priviledges; exit 1)
+	$(checkdir)
+	-rm -rf debian/tmp 	 debian/tmp.deb
+	$(make_directory)  	 debian/tmp/DEBIAN
+	$(make_directory)  	 $(DOCDIR)
+	$(make_directory)	 debian/tmp/usr/share/state
+	$(MAKE)  install   	 prefix=`pwd`/debian/tmp/usr
+	rm -f               	 debian/tmp/usr/share/dict/words
+	rm -f              	 debian/tmp/usr/share/dict/README
+	rm -fr			 debian/tmp/usr/share/rfc
+	#
+	$(install_file)          NEWS $(DOCDIR)/NEWS
+	$(install_file)          ORIGIN $(DOCDIR)/ORIGIN
+	$(install_file)          README $(DOCDIR)/README
+#	$(install_file)		 Unicode-License $(DOCDIR)/Unicode-License
+	$(install_file)          dict-README $(DOCDIR)/dict-README
+	$(install_file)          debian/README.debian $(DOCDIR)/README.debian
+	$(install_file)          debian/changelog $(DOCDIR)/changelog.Debian
+	$(install_file)		 ChangeLog $(DOCDIR)/changelog
+	$(install_file)		 debian/us-constitution debian/tmp/usr/share/state
+	$(install_file)	 	 debian/us-declaration debian/tmp/usr/share/state
+	#	
+	mv                       debian/tmp/usr/share/dict/web2 debian/tmp/web2
+	gzip -9fqr          	 debian/tmp/usr/share/
+	mv debian/tmp/web2       debian/tmp/usr/share/dict/web2
+	(cd $(DOCDIR); for i in ../../misc/*; do\
+                         test -e $$i && ln -s $$i; done)
+	$(make_directory)     debian/tmp/var/lib/dictionaries-common/wordlist
+	$(install_file)       debian/miscfiles.info-wordlist \
+		    debian/tmp/var/lib/dictionaries-common/wordlist/miscfiles
+# Make sure the copyright file is not compressed
+	$(install_file)          debian/copyright $(DOCDIR)/copyright
+	$(install_program)       debian/postinst debian/tmp/DEBIAN/postinst
+	$(install_program)       debian/prerm    debian/tmp/DEBIAN/prerm
+	$(install_program)       debian/postrm    debian/tmp/DEBIAN/postrm
+	$(install_program)       debian/config    debian/tmp/DEBIAN/config
+	$(install_file)          debian/templates    debian/tmp/DEBIAN/templates
+	dh_md5sums
+	dpkg-gencontrol  -isp
+	chown -R                 root.root debian/tmp
+	chmod -R go=rX           debian/tmp
+	dpkg --build             debian/tmp ..
+	touch                    stamp-binary
+
+# Below here is fairly generic really
+define checkdir
+	test -f	 web2  -a -f debian/rules
+endef
+
+source diff:
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+
+.PHONY: binary binary-arch binary-indep clean
+
--- miscfiles-1.4.2.dfsg.1.orig/debian/control
+++ miscfiles-1.4.2.dfsg.1/debian/control
@@ -0,0 +1,31 @@
+Source: miscfiles
+Section: text
+Priority: optional
+Maintainer: Thomas Bushnell, BSG <tb@debian.org>
+Build-Depends: debhelper
+Standards-Version: 3.7.3
+
+Package: miscfiles
+Architecture: all
+Provides: wordlist
+Depends: debconf | debconf-2.0, dictionaries-common (>=0.20)
+Description: Dictionaries and other interesting files
+ These files are not crucial to system administration or operation,
+ but which have come to be common on various systems over the years.
+ They originated from various sources and are freely redistributable
+ (see the copyright file for more information). 
+ .
+ These files include those of general interest (English `connectives',
+ Webster's Second International English wordlist, traditional stone
+ and flower for each month, Precedence table for operators in the C
+ language, description of the ISO Latin-1 character set, two-letter
+ codes for languages, from ISO 639, International country telephone
+ codes, geographic coordinates of many major cities, Some common
+ abbreviations used in electronic communication, GNU mailing lists,
+ country and currency abbreviations, rfc-index, etc.).
+ .
+ There also is information specific to the United States (List of
+ three letter codes for some major airports, North American (+1)
+ telephone area codes, postal codes for US states and Canadian
+ provinces, the Constitution of the United States of America, the
+ Declaration of Independence of the Thirteen Colonies).
--- miscfiles-1.4.2.dfsg.1.orig/debian/miscfiles.info-wordlist
+++ miscfiles-1.4.2.dfsg.1/debian/miscfiles.info-wordlist
@@ -0,0 +1,2 @@
+Language: english (Webster's Second International English wordlist)
+Hash-Name: web2
--- miscfiles-1.4.2.dfsg.1.orig/debian/copyright
+++ miscfiles-1.4.2.dfsg.1/debian/copyright
@@ -0,0 +1,95 @@
+This package was initially debianized by Herbert Xu herbert@debian.org on
+Mon, 10 Feb 1997 21:44:40 +1100.
+
+It was downloaded from ftp://prep.ai.mit.edu/.
+
+Copyright:
+
+The Unicode data file license is Unicode-License.  The other files are
+either public domain, or copyrighted by the Free Software Foundation
+and distributed under the GPL.
+
+The GPL can be found at /usr/share/common-licenses/GPL on Debian systems.
+
+
+GNU miscfiles NEWS   8 July 1996
+
+Copyright (C) 2001 Free Software Foundation, Inc.
+See the end for copying conditions.
+
+Please send GNU miscfiles bug reports to bug-gnu-utils@prep.ai.mit.edu.
+
+----------------------------------------------------------------------
+Copyright information:
+
+Copyright (C) 2001 Free Software Foundation, Inc.
+
+   Permission is granted to anyone to make or distribute verbatim copies
+   of this document as received, in any medium, provided that the
+   copyright notice and this permission notice are preserved,
+   thus giving the recipient permission to redistribute in turn.
+
+   Permission is granted to distribute modified versions
+   of this document, or of portions of it,
+   under the above conditions, provided also that they
+   carry prominent notices stating who last changed them.
+
+----------------------------------------------------------------------
+
+
+UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
+
+Unicode Data Files include all data files under the directories
+http://www.unicode.org/Public/ and
+http://www.unicode.org/reports/. Unicode Software includes any source
+code under the directories http://www.unicode.org/Public/ and
+http://www.unicode.org/reports/.
+
+NOTICE TO USER: Carefully read the following legal agreement. BY
+DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S
+DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU
+UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND
+CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,
+INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
+
+COPYRIGHT AND PERMISSION NOTICE
+
+Copyright © 1991-2004 Unicode, Inc. All rights reserved. Distributed
+under the Terms of Use in http://www.unicode.org/copyright.html.
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Unicode data files and associated documentation (the
+"Data Files") or Unicode software and associated documentation (the
+"Software") to deal in the Data Files or Software without restriction,
+including without limitation the rights to use, copy, modify, merge,
+publish, distribute, and/or sell copies of the Data Files or Software,
+and to permit persons to whom the Data Files or Software are furnished
+to do so, provided that (a) the above copyright notice(s) and this
+permission notice appear in all copies of the Data Files or Software,
+v(b) both the above copyright notice(s) and this permission notice
+appear in associated documentation, and (c) there is clear notice in
+each modified Data File or in the Software as well as in the
+documentation associated with the Data File(s) or Software that the
+data or software has been modified.
+
+THE DATA FILES AND SOFTWARE ARE 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 OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
+HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
+ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
+SOFTWARE.
+
+Except as contained in this notice, the name of a copyright holder
+shall not be used in advertising or otherwise to promote the sale, use
+or other dealings in these Data Files or Software without prior
+written authorization of the copyright holder.
+
+
+
+Thomas Bushnell, BSG <tb@debian.org> is the current maintainer for
+Debian GNU/Linux.
+
--- miscfiles-1.4.2.dfsg.1.orig/debian/changelog
+++ miscfiles-1.4.2.dfsg.1/debian/changelog
@@ -0,0 +1,345 @@
+miscfiles (1.4.2.dfsg.1-9) unstable; urgency=low
+
+  * debian/rules (stamp-configure): Quote $(CFLAGS) properly.  (Closes:
+    #467257)  Thanks to Steve Langasek for the patch.
+  
+  * debian/source.lintian-overrides: Remove file since
+    not-using-po-debconf is no longer a lintian tag.
+  
+  * debian/rules (stamp-binary): Call dh_md5sums toward the end.
+  * debian/control (Build-Depends): New variable to require debhelper.
+  * debian/compat: New file (level 6).
+  
+ -- Thomas Bushnell, BSG <tb@debian.org>  Sun, 24 Feb 2008 18:40:51 -0500
+
+miscfiles (1.4.2.dfsg.1-8) unstable; urgency=low
+
+  * debian/control (Standards-Version): Update to 3.7.3.  No changes necessary.
+   
+  * debian/copyright: Include the unicode license here.
+  * debian/rules (stamp-binary): Don't install unicode license here.
+  
+ -- Thomas Bushnell, BSG <tb@debian.org>  Mon, 14 Jan 2008 15:56:16 -0500
+
+miscfiles (1.4.2.dfsg.1-7) unstable; urgency=low
+
+  * debian/templates: Can't have comments if we aren't using po-debconf.
+    Good grief.  (Closes: #391116)
+
+ -- Thomas Bushnell, BSG <tb@debian.org>  Wed,  4 Oct 2006 18:36:52 -0700
+
+miscfiles (1.4.2.dfsg.1-6) unstable; urgency=low
+    
+  * Grr; I forgot we can't internationalize dictionaries-common strings.
+    (See bug 369172).
+  * debian/templates: Revert last change; add comment explaining why.
+  * debian/control: Don't require po-debconf.
+  * debian/po: Delete directory and its contents.
+    (Closes: #391012, #391013, #391058)  
+
+ -- Thomas Bushnell, BSG <tb@debian.org>  Wed,  4 Oct 2006 10:11:53 -0700
+
+miscfiles (1.4.2.dfsg.1-5) unstable; urgency=low
+  
+  * debian/po/POTFILES.in: New file.
+  * debian/templates: Put underscores before appropriate items.
+  * Run debconf-updatepo.
+  * debian/control (Build-Depends): Add po-debconf.
+  
+  * debian/control (Standards-Version): Update to 3.7.2.
+  
+  * debian/control (Description): Remove trailing period in synopsis.
+  
+  * debian/rules (stamp-binary): Install upstream ChangeLog as "changelog"
+    instead of "ChangeLog".
+  
+ -- Thomas Bushnell, BSG <tb@debian.org>  Mon,  2 Oct 2006 23:46:34 -0700
+  
+miscfiles (1.4.2.dfsg.1-4) unstable; urgency=low
+
+  * debian/templates: Grr, comments are not allowed in this file.  So just
+    take out all the Swedish bits entirely.  (Closes: #369310)
+  
+ -- Thomas Bushnell, BSG <tb@debian.org>  Sun, 28 May 2006 17:35:48 -0700
+
+miscfiles (1.4.2.dfsg.1-3) unstable; urgency=low
+
+  * Grr, actually *make* the previous change.
+  
+ -- Thomas Bushnell, BSG <tb@debian.org>  Sat, 27 May 2006 17:40:03 -0700
+
+miscfiles (1.4.2.dfsg.1-2) unstable; urgency=low
+
+  * debian/templates: Comment out Swedish bits; dictionaries-common can't
+    deal with translations of the /languages template.  (Closes: #359865)
+
+ -- Thomas Bushnell, BSG <tb@debian.org>  Sat, 27 May 2006 16:01:29 -0700
+    
+miscfiles (1.4.2.dfsg.1-1) unstable; urgency=low
+
+  * New repackaged tarball, removing GNU-manifesto to satisfy DFSG.
+  * debian/README.Debian-source: New file, documenting source changes.
+  (Closes: #353515)
+
+ -- Thomas Bushnell, BSG <tb@debian.org>  Sun, 19 Feb 2006 14:16:47 -0800
+
+miscfiles (1.4.2-3) unstable; urgency=low
+
+  * debian/control: Allow debconf-2.0 as an alternative to
+    debconf. (Closes: #332026)
+
+ -- Thomas Bushnell, BSG <tb@debian.org>  Wed,  5 Oct 2005 00:12:40 -0700
+
+miscfiles (1.4.2-2) unstable; urgency=low
+
+  * debian/template: Include Swedish bits. (Closes: #331019)
+  
+  * debian/watch: New file.
+
+ -- Thomas Bushnell, BSG <tb@debian.org>  Fri, 30 Sep 2005 20:27:43 -0700
+
+miscfiles (1.4.2-1) unstable; urgency=low
+
+  * New upstream release.  (Closes: #280908)
+    
+  * debian/us-constitution, debian/us-declaration: New files (these were
+    removed from upstream).
+  * debian/rules: Install both files into usr/share/state where they used
+    to be.
+    
+  * debian/control (miscfile): Don't depend on coreutils. (Closes: #316426)
+    
+  * debian/copyright: Tell where to find the GPL on Debian.
+  
+ -- Thomas Bushnell, BSG <tb@debian.org>  Wed, 31 Aug 2005 23:28:03 -0700
+
+miscfiles (1.3-7) unstable; urgency=low
+
+  * debian/postinst: Remove fancy /usr/doc handling. (Closes: #322793)
+  * debian/prerm: Likewise.
+  
+ -- Thomas Bushnell, BSG <tb@debian.org>  Sun, 14 Aug 2005 22:37:49 -0700
+
+miscfiles (1.3-6) unstable; urgency=high
+
+  * This was supposed to be urgency=high.
+
+ -- Thomas Bushnell, BSG <tb@debian.org>  Fri, 20 Aug 2004 13:10:39 -0700
+
+miscfiles (1.3-5) unstable; urgency=low
+
+  * This release anticipates the upcoming GNU miscfiles 1.4 release, which
+    is not yet provided by upstream.  See the included ChangeLog for a
+    full description of the changes, as if they were upstream changes.
+    Changes from 1.3-3.1 and 1.3-3.2 are reverted as they were, but this
+    new release includes fixes of the relevant bugs.  Closes: 
+    Bug#147321, Bug#150264, Bug#167493, Bug#175700, Bug#180479,
+    Bug#190347, Bug#249867, Bug#249871, Bug#249879, Bug#249897,
+    Bug#250068, Bug#235817, Bug#232164, Bug#249882, Bug#264088.
+    
+  * debian/rules: Don't need to do anything with info files anymore.
+
+ -- Thomas Bushnell, BSG <tb@debian.org>  Thu, 19 Aug 2004 23:12:43 -0700
+
+miscfiles (1.3-4) unstable; urgency=low
+
+  * Don't depend on fileutils at all; it is now extra and we can't depend
+    on such packages.
+
+ -- Thomas Bushnell, BSG <tb@debian.org>  Tue, 10 Aug 2004 12:56:42 -0700
+
+miscfiles (1.3-3.2) unstable; urgency=high
+
+  * debian/control: Don't require specific version number of coreutils.
+  * NB: Bug reports closed by 1.3-3.1 NMU have been re-opened; that NMU
+  shouldn't have happened.  But there's no point in reverting it now; a
+  new upstream release is pending.
+
+ -- Thomas Bushnell, BSG <tb@debian.org>  Fri,  6 Aug 2004 17:08:56 -0700
+
+miscfiles (1.3-3.1) unstable; urgency=low
+
+  * NMU
+  * debian/control:
+    - depends on fileutils | coreutils (>= 5.2.1) instead
+      of fileutils; (Closes: #167493, #175700)
+    - Build-Depend-Indep on the patch package;
+    - removed ending dot from the description synopsis;
+  * fixed typos and missing info in na.phone.
+    (Closes: #249871, #249867, #150264)
+  * removed duplicate entries in na.phone and currency.
+    (Closes: #250068)
+  * fixed "Martinique", "Colombia" and "Philippines" in inter.phone.
+    (Closes: #249897, #249879, #249882)
+  * fixed typo for CDG entry in airport. (Closes: #249867)
+  * refreshed the text of the US constitution with the one found at:
+    http://www.archives.gov/national_archives_experience/charters/constitution_transcript.html
+    (Closes: #190347, #152791)
+  * fixed entries for Quebec and Saskatchewan in postal.codes.
+    (Closes: #147321)
+  * Patches for modification to upstream files are put in
+    $(topdir)/debian/patches/. Code added to debian/rules to handle them.
+
+ -- Wolfgang Sourdeau <was@debian.org>  Fri,  6 Aug 2004 01:21:52 -0400
+
+miscfiles (1.3-3) unstable; urgency=low
+
+  * Conform to new Debian wordlists policy.  Closes: Bug#164254,
+    Bug#166071. 
+
+ -- Thomas Bushnell, BSG <tb@becket.net>  Tue, 29 Oct 2002 20:54:12 -0800
+
+miscfiles (1.3-2) unstable; urgency=low
+
+  * Priority should be 'optional'.
+
+ -- Thomas Bushnell, BSG <tb@becket.net>  Sat, 29 Dec 2001 13:19:42 -0800
+
+miscfiles (1.3-1) unstable; urgency=high
+
+  * New public GNU version.  This closes: Bug#103026, Bug#116944, Bug#77252,
+    Bug#89119, Bug#110633, Bug#119976, Bug#114269.
+
+ -- Thomas Bushnell, BSG <tb@debian.org>  Fri, 21 Dec 2001 19:35:06 -0700
+
+miscfiles (1.2-2) unstable; urgency=low
+
+  * Whoops, restore the changes made in woody.  The 1.1-13 change is no
+    longer relevant to 1.2, but 1.1-14 is.
+
+ -- Thomas Bushnell, BSG <tb@becket.net>  Sat, 21 Oct 2000 07:48:19 -0700
+
+miscfiles (1.2-1) unstable; urgency=low
+
+  * New public GNU version.
+  * README.debian: match current reality.
+  * control: new maintainer, update description.
+  * rules (stamp-binary): jargon file has changed location in miscfiles.
+  
+ -- Thomas Bushnell, BSG <tb@debian.org>  Fri, 20 Oct 2000 22:19:25 -0700
+
+miscfiles (1.1-14) unstable; urgency=low
+
+  * rfc-index has gotten really out of date, and indeed, the doc-rfc
+    package provides everything needed. closes: Bug#72285
+
+ -- Manoj Srivastava <srivasta@debian.org>  Wed, 27 Sep 2000 12:51:49 -0500
+
+miscfiles (1.1-13) unstable; urgency=low
+
+  * Monterey, CA changed area codes some time ago.  The new area, 831, was
+    added to na.phones.gz, but the old area code, 408, has not been
+    removed. This closes: Bug#67131
+
+ -- Manoj Srivastava <srivasta@debian.org>  Wed, 26 Jul 2000 14:35:18 -0500
+
+miscfiles (1.1-12) frozen unstable; urgency=low
+
+  * Use absolute links when related links would not work, for the
+    /usr/doc/ symlink.
+  * Added a dependency on fileutiles >=4.0, since the package would fail
+    to install with older fileutils.
+
+ -- Manoj Srivastava <srivasta@debian.org>  Tue, 28 Mar 2000 02:08:47 -0600
+
+miscfiles (1.1-11) frozen unstable; urgency=low
+
+  * It is frozen, not froxen. This brings in the symlink fix back into
+    frozen. closes: Bug#58335, Bug#57809, Bug#57308
+  * Fixed an upgrade bug when /usr/doc happens to be a symlink, and does
+    not point to /usr/share/doc. A couple of people were bitten by this. 
+
+ -- Manoj Srivastava <srivasta@debian.org>  Mon, 28 Feb 2000 22:27:05 -0600
+
+miscfiles (1.1-10) froxen unstable; urgency=low
+
+  * fix a typo in the rules file that made an interesting symlink.
+    closes: Bug#58335, Bug#57809, Bug#57308
+
+ -- Manoj Srivastava <srivasta@debian.org>  Sat, 19 Feb 2000 13:15:06 -0600
+
+miscfiles (1.1-9) frozen unstable; urgency=low
+
+  * The postinst was vulnerable to being affected by symlinks (if, for
+    some reason, the prerm failed). This has happended for latex2html; and
+    created a grave bug. 
+  * There was a bug in the postinst in a case statement, that caused
+    installation to fail for certain situations.
+  * Also fixed an lintian warning
+
+ -- Manoj Srivastava <srivasta@debian.org>  Tue,  8 Feb 2000 15:35:11 -0600
+
+miscfiles (1.1-8) frozen unstable; urgency=low
+
+  * Added new abbreviations to the package. Hopefully, all this shall be
+    in the new upstream package due out in a month or so. closes: Bug#57021
+
+ -- Manoj Srivastava <srivasta@debian.org>  Mon,  7 Feb 2000 02:12:26 -0600
+
+miscfiles (1.1-7) unstable; urgency=low
+
+  * Refreshed the list of Area codes. This is upto date as of the NANP
+    updates of May 3, 1999. Paaed this upstream.
+    closes: Bug#36968, Bug#18216, Bug#25211
+  * Updated to Standards version 2.5.1. No changes were needed.
+  * Fixed a typo in the US constitution (Article III appeared twice, and
+    there was no Article II). Also, added the date when the XX amendment
+    was passed and when it was ratified.  closes: Bug#33833, Bug#25171
+  * Made this package provide wordlist, since web2 has lots more words
+    than wenglish. closes: Bug#29568
+  * Updated all maintainers scripts to my latest standards'
+
+ -- Manoj Srivastava <srivasta@debian.org>  Fri, 14 May 1999 15:54:08 -0500
+
+miscfiles (1.1-6) unstable; urgency=low
+
+  * Removed duplication of the GNU Manifesto. closes: BUG#29565
+
+ -- Manoj Srivastava <srivasta@debian.org>  Wed, 25 Nov 1998 02:18:23 -0600
+
+miscfiles (1.1-5) unstable; urgency=low
+
+  * Provided links for these files in /usr/doc/$(package). Closes:
+    Bug#18218 
+
+ -- Manoj Srivastava <srivasta@debian.org>  Thu, 19 Feb 1998 04:38:34 -0600
+
+miscfiles (1.1-4) unstable; urgency=low
+
+  * Updated to standards version 2.4.0.0
+  * This fixes a future lintian report. However, there is still a spurious
+    lintian warning.
+
+ -- Manoj Srivastava <srivasta@debian.org>  Mon,  9 Feb 1998 13:27:55 -0600
+
+miscfiles (1.1-3) unstable; urgency=low
+
+  * Make sure the copyright file is not compressed. closes:Bug#14495.
+  * Do not install INSTALL into /usr/doc, since this only has generic
+    installation instructions, and is irrelevant on Debian machines.
+  * Added information to a previously empty README.debian
+    file. closes:Bug#14130.
+
+ -- Manoj Srivastava <srivasta@debian.org>  Wed,  5 Nov 1997 13:31:34 -0600
+
+miscfiles (1.1-2) unstable; urgency=low
+
+  * Expanded description in the control file. This fixes Bug#8972
+
+ -- Manoj Srivastava <srivasta@debian.org>  Wed, 23 Apr 1997 13:58:50 -0500
+
+miscfiles (1.1-1) unstable; urgency=low
+
+  * Removed debstd from rules file
+  * new maintainer
+  * New upstream source
+
+ -- Manoj Srivastava <srivasta@debian.org>  Fri, 28 Mar 1997 09:44:05 -0600
+
+miscfiles (1.0-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Herbert Xu <herbert@debian.org>  Mon, 10 Feb 1997 21:44:40 +1100
+
+
--- miscfiles-1.4.2.dfsg.1.orig/debian/postrm
+++ miscfiles-1.4.2.dfsg.1/debian/postrm
@@ -0,0 +1,17 @@
+#!/bin/sh -e
+# Automatically added by installdeb-wordlist
+case "$1" in remove|deconfigure)
+  /usr/sbin/remove-default-wordlist miscfiles
+  if [ -e /usr/share/debconf/confmodule ] ; then
+    . /usr/share/debconf/confmodule
+    db_purge
+  fi
+esac
+
+# End automatically added section
+# Automatically added by dh_installdebconf
+if [ "$1" = purge -a -e /usr/share/debconf/confmodule ]; then
+	. /usr/share/debconf/confmodule
+	db_purge
+fi
+# End automatically added section
--- miscfiles-1.4.2.dfsg.1.orig/debian/postinst
+++ miscfiles-1.4.2.dfsg.1/debian/postinst
@@ -0,0 +1,92 @@
+#! /bin/sh
+# postinst.skeleton
+# Skeleton maintainer script showing all the possible cases.
+# Written by Charles Briscoe-Smith, March-June 1998.  Public Domain.
+
+# Abort if any command returns an error value
+set -e
+
+# This script is called as the last step of the installation of the
+# package.  All the package's files are in place, dpkg has already done
+# its automatic conffile handling, and all the packages we depend of
+# are already fully installed and configured.
+
+# The following idempotent stuff doesn't generally need protecting
+# against being run in the abort-* cases.
+
+# Install info files into the dir file
+install-info --section Miscellaneous Miscellaneous --menuentry=Tasks \
+   --description="The GNU Task List." \
+   --quiet /usr/info/tasks.info.gz
+
+
+package_name=miscfiles
+
+if [ -z "package_name" ]; then
+    print >&2 "Internal Error. Please report a bug."
+    exit 1;
+fi
+
+case "$1" in
+  configure)
+    # Configure this package.  If the package must prompt the user for
+    # information, do it here.
+
+    # Make our version of a program available
+    . /usr/share/debconf/confmodule
+    if [ "$1" = "configure" ] ; then 
+	/usr/sbin/update-default-wordlist --rebuild
+    fi
+
+    # There are three sub-cases:
+    if test "${2+set}" != set; then
+      # We're being installed by an ancient dpkg which doesn't remember
+      # which version was most recently configured, or even whether
+      # there is a most recently configured version.
+      :
+
+    elif test -z "$2" -o "$2" = "<unknown>"; then
+      # The package has not ever been configured on this system, or was
+      # purged since it was last configured.
+      :
+
+    else
+      # Version $2 is the most recently configured version of this
+      # package.
+      :
+
+    fi ;;
+  abort-upgrade)
+    # Back out of an attempt to upgrade this package FROM THIS VERSION
+    # to version $2.  Undo the effects of "prerm upgrade $2".
+    :
+
+    ;;
+  abort-remove)
+    if test "$2" != in-favour; then
+      echo "$0: undocumented call to \`postinst $*'" 1>&2
+      exit 0
+    fi
+    # Back out of an attempt to remove this package, which was due to
+    # a conflict with package $3 (version $4).  Undo the effects of
+    # "prerm remove in-favour $3 $4".
+    :
+
+    ;;
+  abort-deconfigure)
+    if test "$2" != in-favour -o "$5" != removing; then
+      echo "$0: undocumented call to \`postinst $*'" 1>&2
+      exit 0
+    fi
+    # Back out of an attempt to deconfigure this package, which was
+    # due to package $6 (version $7) which we depend on being removed
+    # to make way for package $3 (version $4).  Undo the effects of
+    # "prerm deconfigure in-favour $3 $4 removing $6 $7".
+    :
+
+    ;;
+  *) echo "$0: didn't understand being called with \`$1'" 1>&2
+     exit 0;;
+esac
+
+exit 0
--- miscfiles-1.4.2.dfsg.1.orig/debian/templates
+++ miscfiles-1.4.2.dfsg.1/debian/templates
@@ -0,0 +1,8 @@
+Template: shared/packages-wordlist
+Type: text
+Description:
+
+Template: miscfiles/languages
+Type: text
+Default: english (Webster's Second International English wordlist)
+Description:
--- miscfiles-1.4.2.dfsg.1.orig/debian/README.debian
+++ miscfiles-1.4.2.dfsg.1/debian/README.debian
@@ -0,0 +1,4 @@
+Because Debian distributes the Jargon file and rfc indexes in separate
+packages, we don't install them from this package.  Also, we don't
+directly install /usr/dict/words, though we provide web2 as an
+alternative for that.
--- miscfiles-1.4.2.dfsg.1.orig/debian/compat
+++ miscfiles-1.4.2.dfsg.1/debian/compat
@@ -0,0 +1 @@
+6
--- miscfiles-1.4.2.dfsg.1.orig/debian/us-constitution
+++ miscfiles-1.4.2.dfsg.1/debian/us-constitution
@@ -0,0 +1,1116 @@
+The Constitution of the United States of America
+
+
+
+Preamble
+
+We, the people of the United States, in order to form a more perfect
+union, establish justice, insure domestic tranquility, provide for the
+common defense, promote the general welfare, and secure the blessings
+of liberty to ourselves and our posterity, do ordain and establish
+this Constitution for the United States of America.
+
+
+
+Article I
+
+Section 1
+
+All legislative powers herein granted shall be vested in a Congress of
+the United States, which shall consist of a Senate and House of
+Representatives.
+
+
+Section 2 
+
+The House of Representatives shall be composed of members chosen every
+second year by the people of the several States, and the elector in
+each State shall have the qualifications requisite for electors of the
+most numerous branch of the State Legislature.
+
+No person shall be a Representative who shall not have attained the
+age of twenty-five years, and been seven years a citizen of the United
+States, and who shall not, when elected, be an inhabitant of that
+State in which he shall be chosen.
+
+Representatives and direct taxes shall be apportioned among the
+several States which may be included within this Union, according to
+their respective numbers, which shall be determined by adding the
+whole number of free persons, including those bound to service for a
+term of years, and excluding Indians not taxed, three-fifths of all
+other persons.  The actual enumeration shall be made within three
+years after the first meeting of the Congress of the United States,
+and within every subsequent term of ten years, in such manner as they
+shall by law direct.  The number of Representatives shall not exceed
+one for every thirty thousand, but each State shall have at least one
+Representative; and until such enumeration shall be made, the State of
+New Hampshire shall be entitled to choose three, Massachusetts eight,
+Rhode Island and Providence Plantations one, Connecticut five, New
+York six, New Jersey four, Pennsylvania eight, Delaware one, Maryland
+six, Virginia ten, North Carolina five, South Carolina five, and
+Georgia three.
+
+When vacancies happen in the representation from any State, the
+Executive Authority thereof shall issue writs of election to fill such
+vacancies.
+
+The House of Representatives shall choose their Speaker and other
+officers; and shall have the sole power of impeachment.
+
+
+Section 3
+
+The Senate of the United States shall be composed of two Senators from
+each State, chosen by the Legislature thereof, for six years; and each
+Senator shall have one vote.
+
+Immediately after they shall be assembled in consequence of the first
+election, they shall be divided as equally as may be into three
+classes.  The seats of the Senators of the first class shall be
+vacated at the expiration of the second year, of the second class at
+the expiration of the fourth year, and of the third class at the
+expiration of the sixth year, so that one-third may be chosen every
+second year; and if vacancies happen by resignation, or otherwise,
+during the recess of the Legislature of any State, the Executive
+thereof may make temporary appointments until the next meeting of the
+Legislature, which shall then fill such vacancies.
+
+No person shall be a Senator who shall not have attained to the age of
+thirty years, and been nine years a citizen of the United States, and
+who shall not, when elected, be an inhabitant of that State for which
+he shall be chosen.
+
+The Vice-President of the United States shall be President of the
+Senate, but shall have no vote, unless they be equally divided.
+
+The Senate shall choose their other officers, and also a President
+_pro_tempore_, in the absence of the Vice President, or when he shall
+exercise the office of the President of the United States.
+
+The Senate shall have the sole power to try all impeachments.  When
+sitting for that purpose, they shall be on oath or affirmation.  When
+the President of the United States is tried, the Chief Justice shall
+preside: and no person shall be convicted without the concurrence of
+two-thirds of the members present.
+
+Judgement in cases of impeachment shall not extend further than to
+removal from office, and disqualification to hold and enjoy any office
+of honor, trust, or profit under the United States: but the party
+convicted shall nevertheless be liable and subject to indictment,
+trial, judgement and punishment, according to law.
+
+
+Section 4
+
+The times, places and manner of holding elections for Senators and
+Representatives, shall be prescribed in each State by the Legislature
+thereof; but the Congress may at any time by law make or alter such
+regulations, except as to the places of choosing Senators.
+
+The Congress shall assemble at least once in every year, and such
+meeting shall be on the first Monday in December, unless they by law
+appoint a different day.
+
+
+Section 5
+
+Each House shall be the judge of the elections, returns and
+qualifications of its own members, and a majority of each shall
+constitute a quorum to do business; but a smaller number may adjourn
+from day to day, and may be authorized to compel the attendance of
+absent members, in such manner, and under such penalties as each House
+may provide.
+
+Each House may determine the rules of its proceedings, punish its
+members for disorderly behavior, and, with the concurrence of
+two-thirds, expel a member.
+
+Each House shall keep a journal of its proceedings, and from time to
+time publish the same, excepting such parts as may in their judgement
+require secrecy; and the yeas and nays of the members of either House
+on any question shall, at the desire of one-fifth of those present, be
+entered on the journal.
+
+Neither House, during the session of Congress, shall, without the
+consent of the other, adjourn for more than three days, nor to any
+other place than that in which the two Houses shall be sitting.
+
+
+Section 6
+
+The Senators and Representatives shall receive a compensation for
+their services, to be ascertained by law, and paid out of the Treasury
+of the United States.  They shall in all cases, except treason, felony
+and breach of the peace, be privileged from arrest during their
+attendance at the session of their respective Houses, and in going to
+and returning from the same; and for any speech or debate in either
+House, they shall not be questioned in any other place.
+
+No Senator or Representative shall, during the time for which he was
+elected, be appointed to any civil office under the authority of the
+United States, which shall have increased during such time; and no
+person holding any office under the United States, shall be a member
+of either House during his continuance in office.
+
+
+Section 7
+
+All bills for raising revenue shall originate in the House of
+Representatives; but the Senate may propose or concur with amendments
+as on other bills.
+
+Every bill which shall have passed the House of Representatives and
+the Senate, shall, before it become a law, be presented to the
+president of the United States; if he approve, he shall sign it, but
+if not, he shall return it, with his objections, to that house in
+which it shall have originated, who shall enter the objections at
+large on their journal, and proceed to reconsider it.  If after such
+reconsideration, two thirds of that house shall agree to pass the
+bill, it shall be sent, together with the objections, to the other
+house, by which it shall likewise be reconsidered, and if approved by
+two-thirds of that house, it shall become a law.  But in all such
+cases the votes of both houses shall be determined by yeas and nays,
+and the names of the persons voting for and against the bill shall be
+entered on the journal of each house respectively.  If any bill shall
+not be returned by the president within ten days (Sundays excepted)
+after it shall have been presented to him, the same shall be a law, in
+like manner as if he had signed it, unless the Congress by their
+adjournment prevent its return, in which case it shall not be a law.
+
+Every order, resolution, or vote to which the concurrence of the
+Senate and House of Representatives may be necessary (except on a
+question of adjournment) shall be presented to the president of the
+United States; and before the same shall take effect, shall be
+approved by him, or, being disapproved by him, shall be re-passed by
+two-thirds of the Senate and House of Representatives, according to
+the rules and limitations prescribed in the case of a bill.
+
+
+Section 8
+
+The Congress shall have the power
+
+to lay and collect taxes, duties, imposts and excises, to pay the
+debts and provide for the common defense and general welfare of the
+United States; but all duties, imposts and excises shall be uniform
+throughout the United States;
+
+To borrow money on the credit of the United States;
+
+To regulate commerce with foreign nations, and among the several
+states, and with the Indian tribes;
+
+To establish an uniform rule of naturalization, and uniform laws on
+the subject of bankruptcies throughout the United States;
+
+To coin money, regulate the value thereof, and of foreign coin, and
+fix the standard of weights and measures;
+
+To provide for the punishment of counterfeiting the securities and
+current coin of the United States;
+
+To establish post-offices and post-roads;
+
+To promote the progress of science and useful arts, by securing for
+limited times to authors and inventors the exclusive right to their
+respective writings and discoveries;
+
+To constitute tribunals inferior to the supreme court;
+
+To define and punish piracies and felonies committed on the high seas,
+and offenses against the law of nations;
+
+To declare war, grant letters of marque and reprisal, and make rules
+concerning captures on land and water;
+
+To raise and support armies, but no appropriation of money to that use
+shall be for a longer term than two years;
+
+To provide and maintain a navy;
+
+To make rules for the government and regulation of the land and naval
+forces;
+
+To provide for calling forth the militia to execute the laws of the
+union, suppress insurrections and repel invasions;
+
+To provide for organizing, arming and disciplining the militia, and
+for governing such part of them as may be employed in the service of
+the United States, reserving to the states respectively, the
+appointment of the officers, and the authority of training the militia
+according to the discipline prescribed by Congress;
+
+To exercise exclusive legislation in all cases whatsoever, over such
+district (not exceeding ten miles square) as may, by cession of
+particular states, and the acceptance of Congress, become the seat of
+the government of the United States, and to exercise like authority
+over all places purchased by the consent of the legislature of the
+state in which the same shall be, for the erection of forts,
+magazines, arsenals, dock-yards, and other needful buildings; And,
+
+To make all laws which shall be necessary and proper for carrying into
+execution the foregoing powers, and all other powers vested by this
+constitution in the government of the United States, or in any
+department or officer thereof.
+
+
+Section 9
+
+The migration or importation of such persons as any of the states now
+existing shall think proper to admit, shall not be prohibited by the
+Congress prior to the year 1808, but a tax or duty may be imposed on
+such importations, not exceeding 10 dollars for each person.
+
+The privilege of the writ of _habeas_corpus_ shall not be suspended,
+unless when in cases of rebellion or invasion the public safety may
+require it.
+
+No bill of attainder or _ex_post_facto_ law shall be passed.
+
+No capitation, or other direct tax shall be laid unless in proportion
+to the census or enumeration herein before directed to be taken.
+
+No tax or duty shall be laid on articles exported from any state.
+
+No preference shall be given by any regulation of commerce or revenue
+to the ports of one state over those of another; nor shall vessels
+bound to, or from one state, be obliged to enter, clear, or pay duties
+in another.
+
+No money shall be drawn from the treasury but in consequence of
+appropriations made by law; and a regular statement and account of the
+receipts and expenditures of all public money shall be published from
+time to time.
+
+No title of nobility shall be granted by the United States; And no
+person holding any office or profit or trust under them, shall,
+without the consent of the Congress, accept of any present, emolument,
+office, or title, of any kind whatever, from any king, prince, or
+foreign state.
+
+
+Section 10
+
+No state shall enter into any treaty, alliance, or confederation;
+grant letters of marque and reprisal; coin money; emit bills of
+credit; make any thing but gold and silver coin a tender in payment of
+debts; pass any bill of attainder, _ex_post_facto_ law, or law
+impairing the obligation of contracts, or grant any title of nobility.
+
+No state shall, without the consent of the Congress, lay any imposts
+or duties on imports or exports, except what may be absolutely
+necessary for executing its inspection laws; and the net produce of
+all duties and imposts, laid by any state on imports or exports, shall
+be for the use of the treasury of the United States; and all such laws
+shall be subject to the revision and control of the Congress.
+
+No state shall, without the consent of Congress, lay any duty of
+tonnage, keep troops, or ships of war in time of peace, enter into any
+agreement or compact with another state, or with a foreign power, or
+engage in a war, unless actually invaded, or in such imminent danger
+as will not admit of delay.
+
+
+
+Article II
+
+Section 1
+
+The Executive power shall be vested in a President of the United
+States of America. He shall hold office during the term of four years,
+and together with the Vice President, chosen for the same term, be
+elected as follows:
+
+Each State shall appoint, in such manner as the Legislature may
+direct, a number of electors, equal to the whole number of Senators
+and Representatives to which the State may be entitled in the
+Congress; but no Senator or Representative, or person holding an
+office of trust or profit under the United States, shall be appointed
+an elector.  The electors shall meet in their respective States, and
+vote by ballot for two persons, of whom one at least shall not be an
+inhabitant of the same State with themselves. And they shall make a
+list of all the persons voted for each; which list they shall sign and
+certify, and transmit sealed to the seat of Government of the United
+States, directed to the President of the Senate. The President of the
+Senate shall, in the presence of the Senate and House of
+Representatives, open all the certificates, and the votes shall then
+be counted. The person having the greatest number of votes shall be
+the President, if such number be a majority of the whole number of
+electors appointed; and if there be more than one who have such
+majority, and have an equal number of votes, then the House of
+Representatives shall immediately choose by ballot one of them for
+President; and if no person have a majority, then from the five
+highest on the list the said House shall in like manner choose the
+President. But in choosing the President, the votes shall be taken by
+States, the representation from each State having one vote; a quorum
+for this purpose shall consist of a member or members from two-thirds
+of the States, and a majority of all the States shall be necessary to
+a choice. In every case, after the choice of the President, the person
+having the greatest number of votes of the electors shall be the Vice
+President. But if there should remain two or more who have equal
+votes, the Senate shall choose from them by ballot the Vice President.
+
+The Congress may determine the time of choosing the electors, and the
+day on which they shall give their votes; which day shall be the same
+throughout the United States.
+
+No person except a natural born citizen, or a citizen of the United
+States, at the time of the adoption of this Constitution, shall be
+eligible to the office of President; neither shall any person be
+eligible to that office who shall not have attained to the age of
+thirty-five years, and been fourteen years a resident within the
+United States.
+
+In case of the removal of the President from office, or of his death,
+resignation, or inability to discharge the powers and duties of the
+said office, the same shall devolve on the Vice President, and the
+Congress may by law provide for the case of removal, death,
+resignation, or inability, both of the President and Vice President,
+declaring what officer shall then act as President, and such officer
+shall act accordingly, until the disability be removed, or a President
+shall be elected.
+
+The President shall, at stated times, receive for his services, a
+compensation, which shall neither be increased nor diminished during
+the period for which he shall have been elected, and he shall not
+receive within that period any other emolument from the United States,
+or any of them.
+
+Before he enter on the execution of his office, he shall take the
+following oath or affirmation: ``I do solemnly swear (or affirm) that
+I will faithfully execute the office of the President of the United
+States, and will to the best of my ability, preserve, protect and
+defend the Constitution of the United States.''
+
+
+Section 2
+
+The President shall be Commander-in-Chief of the Army and Navy of the
+United States, and of the militia of the several States, when called
+into the actual service of the United States; he may require the
+opinion, in writing, of the principal officer in each of the executive
+departments, upon any subject relating to the duties of their
+respective offices, and he shall have power to grant reprieves and
+pardons for offenses against against the United States, except in
+cases of impeachment.
+
+He shall have power, by and with the advice and consent of the Senate,
+to make treaties, provided two-thirds of the Senators present concur;
+and he shall nominate, and by and with the advice and consent of the
+Senate, shall appoint ambassadors, other public ministers and consuls,
+judges of the Supreme Court, and all other officers of the United
+States, whose appointments are not herein otherwise provided for, and
+which shall be established by law; but the Congress may by law vest
+the appointment of such inferior officers, as they think proper, in
+the President alone, in the courts of law, or in the heads of
+departments.
+
+The President shall have the power to fill up all vacancies that may
+happen during the recess of the Senate, by granting commissions, which
+shall expire at the end of their next session.
+
+
+Section 3
+
+He shall from time to time give to the Congress information of the
+state of the Union, and recommend to their consideration such measures
+as he shall judge necessary and expedient; he may, on extraordinary
+occasions, convene both Houses, or either of them, and in case of
+disagreement between them, with respect to the time of adjournment, he
+may adjourn them to such time as he shall think proper; he may receive
+ambassadors, and other public ministers; he shall take care that the
+laws be faithfully executed, and shall commission all the officers of
+the United States.
+
+
+Section 4
+
+The President, Vice President, and all civil officers of the United
+States, shall be removed from office on impeachment for, and
+conviction of, treason, bribery, or other high crimes and
+misdemeanors.
+
+
+
+Article III
+
+Section 1
+
+The judicial power of the United States, shall be vested in one
+supreme court, and in such inferior courts as the Congress may, from
+time to time, ordain and establish.  The judges, both of the supreme
+and inferior courts, shall hold their offices during good behaviour,
+and shall, at stated times, receive for their services a compensation,
+which shall not be diminished during their continuance in office.
+
+
+Section 2
+
+The judicial power shall extend to all cases, in law and equity,
+arising under this constitution, the laws of the United States, and
+treaties made, or which shall be made under their authority; to all
+cases affecting ambassadors, other public ministers and consuls; to
+all cases of admiralty and maritime jurisdiction; to controversies to
+which the United States shall be a party; to controversies between two
+or more states, between a state and citizens of another state, between
+citizens of different states, between citizens of the same state,
+claiming lands under grants of different states, and between a state,
+or the citizens thereof, and foreign states, citizens or subjects.
+
+In all cases affecting ambassadors, other public ministers and
+consuls, and those in which a state shall be a party, the supreme
+court shall have original jurisdiction.  In all the other cases
+before-mentioned, the supreme court shall have appellate jurisdiction,
+both as to law and fact, with such exceptions, and under such
+regulations as the Congress shall make.
+
+The trial of all crimes, except in cases of impeachment, shall be by
+jury; and such trial shall be held in the state where the said crimes
+shall have been committed; but when not committed within any state,
+the trial shall be at such place or places as the Congress may by law
+have directed.
+
+
+Section 3
+
+Treason against the United States shall consist only in levying war
+against them, or in adhering to their enemies, giving them aid and
+comfort.  No person shall be convicted of treason unless on the
+testimony of two witnesses to the same overt act, or on confession in
+open court.
+
+The Congress shall have power to declare the punishment of treason,
+but no attainder of treason shall work corruption of blood, or
+forfeiture, except during the life of the person attainted.
+
+
+
+Article IV
+
+Section 1
+
+Full faith and credit shall be given in each state to the public acts,
+records and judicial proceedings of every other state.  And the
+Congress may by general laws prescribe the manner in which such acts,
+records and proceedings shall be proved, and the effect thereof.
+
+
+Section 2
+
+The citizens of each state shall be entitled to all privileges and
+immunities of citizens in the several states.
+
+A person charged in any state with treason, felony, or other crime,
+who shall flee justice, and be found in another state, shall, on
+demand of the executive authority of the state from which he fled, be
+delivered up, to be removed to the state having jurisdiction of the
+crime.
+
+No person held to service or labour in one state, under the laws
+thereof, escaping into another, shall, in consequence of any law or
+regulation therein, be discharged from such service or labour, but
+shall be delivered up on claim of the party to whom such service or
+labour may be due.
+
+
+Section 3
+
+New states may be admitted by the Congress into this union; but no new
+state shall be formed or erected within the jurisdiction of any other
+state, nor any state be formed by the junction of two or more states,
+without the consent of the legislatures of the states concerned, as
+well as of the Congress.
+
+The Congress shall have power to dispose of and make all needful rules
+and regulations respecting the territory or other property belonging
+to the United States; and nothing in this constitution shall be so
+construed as to prejudice any claims of the United States, or of any
+particular state.
+
+
+Section 4
+
+The United States shall guarantee to every state in this union, a
+republican form of government, and shall protect each of them against
+invasion; and on application of the legislature, or of the executive
+(when the legislature cannot be convened), against domestic violence.
+
+
+
+Article V
+
+The Congress, whenever two-thirds of both houses shall deem it
+necessary, shall propose amendments to this constitution, or on the
+application of the legislatures of two-thirds of the several states,
+shall call a convention for proposing amendments, which, in either
+case, shall be valid to all intents and purposes, as part of this
+constitution, when ratified by the legislatures of three-fourths of
+the several states, or by conventions in three-fourths thereof, as the
+one or the other mode of ratification may be proposed by the Congress;
+Provided, that no amendment which may be made prior to the year 1808,
+shall in any manner affect the first and fourth clauses in the ninth
+section of the first article; and that no state, without its consent,
+shall be deprived of its equal suffrage in the Senate.
+
+
+Article VI
+
+All debts contracted and engagements entered into, before the adoption
+of this constitution, shall be as valid against the United States
+under this constitution, as under the confederation.
+
+This constitution, and the laws of the United States which shall be
+made in pursuance thereof; and all treaties made, or which shall be
+made, under the authority of the United States shall be the supreme
+law of the land; and the judges in every state shall be bound thereby,
+any thing in the constitution or laws of any state to the contrary
+notwithstanding.
+
+The senators and representatives before-mentioned, and the members of
+the several state legislatures, and all executive and judicial
+officers, both of the United States and of the several states, shall
+be bound by oath or affirmation, to support this constitution; but no
+religious test shall ever be required as a qualification to any office
+or public trust under the United States.
+
+
+Article VII
+
+The ratification of the conventions of nine states, shall be
+sufficient for the establishment of this constitution between the
+states so ratifying the same.
+
+
+
+
+Amendments
+
+
+
+The Ten Original Amendments: The Bill of Rights.
+Passed by Congress September 25, 1789.
+Ratified December 15, 1791.
+
+
+Amendment I
+
+Congress shall make no law respecting an establishment of religion, or
+prohibiting the free exercise thereof; or abridging the freedom of
+speech, or of the press; or the right of the people peaceably to
+assemble, and to petition the Government for a redress of grievances.
+
+
+Amendment II
+
+A well-regulated militia, being necessary to the security of a free
+State, the right of the people to keep and bear arms, shall not be
+infringed.
+
+
+Amendment III
+
+No soldier shall, in time of peace be quartered in any house, without
+the consent of the owner, nor in time of war, but in a manner to be
+prescribed by law.
+
+
+Amendment IV
+
+The right of the people to be secure in their persons, houses, papers,
+and effects, against unreasonable searches and seizures, shall not be
+violated, and no warrants shall issue, but upon probable cause,
+supported by oath or affirmation, and particularly describing the
+place to be searched, and the persons or things to be seized.
+
+
+Amendment V
+
+No person shall be held to answer for a capital, or otherwise infamous
+crime, unless on a presentment or indictment of a Grand Jury, except
+in cases arising in the land or naval forces, or in the militia, when
+in actual service in time of war or public danger; nor shall any
+person be subject for the same offense to be twice put in jeopardy of
+life or limb; nor shall be compelled in any criminal case to be a
+witness against himself, nor be deprived of life, liberty, or
+property, without due process of law; nor shall private property be
+taken for public use without just compensation.
+
+
+Amendment VI
+
+In all criminal prosecutions, the accused shall enjoy the right to a
+speedy and public trial, by an impartial jury of the State and
+district wherein the crime shall have been committed, which district
+shall have been previously ascertained by law, and to be informed of
+the nature and cause of the accusation; to be confronted with the
+witnesses against him; to have compulsory process for obtaining
+witnesses in his favor, and to have the assistance of counsel for his
+defense.
+
+
+Amendment VII
+
+In suits at common law, where the value in controversy shall exceed
+twenty dollars, the right of trial by jury shall be preserved, and no
+fact tried by a jury shall be otherwise reexamined in any court of the
+United States, than according to the rules of the common law.
+
+
+Amendment VIII
+
+Excessive bail shall not be required, nor excessive fines imposed, nor
+cruel and unusual punishments inflicted.
+
+
+Amendment IX
+
+The enumeration in the Constitution, of certain rights, shall not be
+construed to deny or disparage others retained by the people.
+
+
+Amendment X
+
+The powers not delegated to the United States by the Constitution, nor
+prohibited by it to the States, are reserved to the States
+respectively, or to the people.
+
+
+
+Amendment XI
+
+Passed by Congress March 4, 1794.  Ratified February 7, 1795.
+
+The judicial power of the United States shall not be construed to
+extend to any suit in law or equity, commenced or prosecuted against
+one of the United States by citizens of another State, or by citizens
+or subjects of any foreign state.
+
+
+
+Amendment XII
+
+Passed by Congress December 9, 1803.  Ratified July 27, 1804.
+
+The Electors shall meet in their respective States and vote by ballot
+for President and Vice-President, one of whom, at least, shall not be
+an inhabitant of the same State with themselves; they shall name in
+their ballots the person voted for as President, and in distinct
+ballots the person voted for as Vice-President, and of the number of
+votes for each, which lists they shall sign and certify, and transmit
+sealed to the seat of the Government of the United States, directed to
+the President of the Senate; the President of the Senate shall, in the
+presence of the Senate and House of Representatives, open all the
+certificates and the votes shall then be counted; - The person having
+the greatest number of votes for President, shall be the President, if
+such number be a majority of the whole number of Electors appointed;
+and if no person have such majority, then from the persons having the
+highest numbers not exceeding three on the list of those voted for as
+President, the House of Representatives shall choose immediately, by
+ballot, the President.  But in choosing the President, the votes shall
+be taken by States, the representation from each State having one
+vote; a quorum for this purpose shall consist of a member or members
+from two-thirds of the States, and a majority of all the States shall
+be necessary to a choice.  And if the House of Representatives shall
+not choose a President whenever the right of choice shall devolve upon
+them,before the fourth day of March next following, then the
+Vice-President shall act as President, as in case of the death or
+other constitutional disability of the President.  The person having
+the greatest number of votes as Vice-President, shall be the
+Vice-President, if such numbers be a majority of the whole number of
+electors appointed, and if no person have a majority, then from the
+two highest numbers on the list, the Senate shall choose the
+Vice-President; a quorum for the purpose shall consist of two-thirds
+of the whole number of Senators, and a majority of the whole number
+shall be necessary to a choice.  But no person constitutionally
+ineligible to the office of President shall be eligible to that of
+Vice-President of the United States.
+
+
+
+Amendment XIII
+
+Passed by Congress January 31, 1865.  Ratified December 6, 1865.
+
+Section 1
+
+Neither slavery nor involuntary servitude, except as a punishment for
+crime whereof the party shall have been duly convicted, shall exist
+within the United States, or any place subject to their jurisdiction.
+
+Section 2
+
+Congress shall have power to enforce this article by appropriate
+legislation.
+
+
+
+Amendment XIV
+
+Passed by Congress June 13, 1866.  Ratified July 9, 1868
+
+Section 1
+
+All persons born or naturalized in the United States, and subject to
+the jurisdiction thereof, are citizens of the United States and of the
+State wherein they reside.  No State shall make or enforce any law
+which shall abridge the privileges or immunities of citizens of the
+United States; nor shall any State deprive any person of life,
+liberty, or property, without due process of law; nor to deny to any
+person within its jurisdiction the equal protection of the laws.
+
+Section 2
+
+Representatives shall be apportioned among the several States
+according to their respective numbers, counting the whole number of
+persons in each State, excluding Indians not taxed.  But when the
+right to vote at any election for the choice of Electors for President
+and Vice-President of the United States, Representatives in Congress,
+the executive and judicial officers of a State, or the members of the
+Legislature thereof, is denied to any of the male inhabitants of such
+State, being twenty-one years of age, and citizens of the United
+States, or in any way abridged, except for participation in rebellion,
+or other crime, the basis of representation therein shall be reduced
+in the proportion which the number of such male citizens shall bear to
+the whole number of male citizens twenty-one years of age in such
+State.
+
+Section 3
+
+No person shall be a Senator or Representative in Congress, or Elector
+of President and Vice-President, or hold any office, civil or
+military, under the United States, or under any State, who, having
+previously taken an oath, as a member of Congress, or as an officer of
+the United States, or as a member of any State Legislature, or as an
+executive or judicial officer of any State, to support the
+Constitution of the United States, shall have engaged in insurrection
+or rebellion against the same, or given aid or comfort to the enemies
+thereof.  But Congress may by a vote of two-thirds of each House,
+remove such disability.
+
+Section 4
+
+The validity of the public debt of the United States, authorized by
+law, including debts incurred for payment of pensions and bounties for
+services in suppressing insurrection or rebellion, shall not be
+questioned.  But neither the United States nor any State shall assume
+or pay any debt or obligation incurred in aid of insurrection or
+rebellion against the United States, or any claim for the loss or
+emancipation of any slave; but all such debts, obligations and claims
+shall be held illegal and void.
+
+Section 5
+
+The Congress shall have the power to enforce, by appropriate
+legislation, the provisions of this article.
+
+
+
+Amendment XV
+
+Passed by Congress February 26, 1869.  Ratified February 3, 1870.
+
+Section 1
+
+The right of citizens of the United States to vote shall not be denied
+or abridged by the United States or by any State on account of race,
+color, or previous condition of servitude.
+
+Section 2
+
+The Congress shall have the power to enforce this article by
+appropriate legislation.
+
+
+
+Amendment XVI
+
+Passed by Congress July 2, 1909.  Ratified February 3, 1913.
+
+The Congress shall have power to lay and collect taxes on incomes,
+from whatever sources derived, without apportionment among the several
+States, and without regard to any census or enumeration.
+
+
+
+Amendment XVII
+
+Passed by Congress May 13, 1912.  Ratified April 8, 1913.
+
+The Senate of the United States shall be composed of two Senators from
+each State, elected by the people thereof, for six years; and each
+Senator shall have one vote.  The electors in each State shall have
+the qualifications requisite for electors of the most numerous branch
+of the State Legislatures.
+
+When vacancies happen in the representation of any State in the
+Senate, the executive authority of such State shall issue writs of
+election to fill such vacancies: Provided, That the Legislature of any
+State may empower the Executive thereof to make temporary appointments
+until the people fill the vacancies by election as the Legislature may
+direct.
+
+This amendment shall not be so construed as to affect the election or
+term of any Senator chosen before it becomes valid as part of the
+Constitution.
+
+
+
+Amendment XVIII
+
+Passed by Congress December 18, 1917.  Ratified January 16, 1919.
+
+After one year from the ratification of this article the manufacture,
+sale, or transportation of intoxicating liquors within, the
+importation thereof into, or the exportation thereof from the United
+States and all territory subject to the jurisdiction thereof for
+beverage purposes is hereby prohibited.
+
+The Congress and the several States shall have concurrent power to
+enforce this article by appropriate legislation.
+
+This article shall be inoperative unless it shall have been ratified
+as an amendment to the Constitution by the Legislatures of the several
+States, as provided in the Constitution, within seven years from the
+date of the submission hereof to the States by the Congress.
+
+
+
+Amendment XIX
+
+Passed by Congress June 4, 1919.  Ratified August 18, 1920.
+
+The right of citizens of the United States to vote shall not be denied
+or abridged by the United States or by any State on account of sex.
+
+Congress shall have power to enforce this article by appropriate
+legislation.
+
+
+
+Amendment XX
+
+Passed by Congress March 2, 1932.  Ratified February 6, 1933.
+
+Section 1
+
+The terms of the President and the Vice-President shall end at noon on
+the 20th day of January, and the terms of Senators and Representatives
+at noon on the 3rd day of January, of the years in which such terms
+would have ended if this article had not been ratified; and the terms
+of their successors shall then begin.
+
+Section 2
+
+The Congress shall assemble at least once in every year, and such
+meeting shall begin at noon on the 3rd day of January, unless they
+shall by law appoint a different day.
+
+Section 3
+
+If, at the time fixed for the beginning of the term of the President,
+the President elect shall have died, the Vice-President elect shall
+become President.  If a President shall not have been chosen before
+the time fixed for the beginning of his term, or if the President
+elect shall have failed to qualify, then the Vice-President elect
+shall act as President until a President shall have qualified; and the
+Congress may by law provide for the case wherein neither a President
+elect nor a Vice-President shall have qualified, declaring who shall
+then act as President, or the manner in which one who is to act shall
+be selected, and such person shall act accordingly until a President
+or Vice-President shall have qualified.
+
+Section 4
+
+The Congress may by law provide for the case of the death of any of
+the persons from whom the House of representatives may choose a
+President whenever the right of choice shall have devolved upon them,
+and for the case of the death of any of the persons from whom the
+Senate may choose a Vice-President whenever the right of choice shall
+have devolved upon them.
+
+Section 5
+
+Sections 1 and 2 shall take effect on the 15th day of October
+following the ratification of this article (October 1933).
+
+Section 6
+
+This article shall be inoperative unless it shall have been ratified
+as an amendment to the Constitution by the Legislatures of
+three-fourths of the several States within seven years from the date
+of its submission.
+
+
+
+Amendment XXI
+
+Passed by Congress February 20, 1933.  Ratified December 5, 1933.
+
+Section 1
+
+The Eighteenth article of amendment to the Constitution of the United
+States is hereby repealed.
+
+Section 2
+
+The transportation or importation into any State, Territory, or
+Possession of the United States for delivery or use therein of
+intoxicating liquors, in violation of the laws thereof, is hereby
+prohibited.
+
+Section 3
+
+This article shall be inoperative unless it shall have been ratified
+as an amendment to the Constitution by conventions in the several
+States, as provided in the Constitution, within seven years from the
+date of the submission hereof to the States by the Congress.
+
+
+
+Amendment XXII
+
+Passed by Congress March 21, 1947.  Ratified February 27, 1951.
+
+No person shall be elected to the office of the President more than
+twice, and no person who has held the office of President, or acted as
+President, for more that two years of a term to which some other
+person was elected President shall be elected to the office of
+President more that once.
+
+But this Article shall not apply to any person holding the office of
+President when this Article was proposed by Congress, and shall not
+prevent any person who may be holding the office of President, or
+acting as President, during the term within which this Article becomes
+operative from holding the office of President or acting as President
+during the remainder of such term.
+
+This article shall be inoperative unless it shall have been ratified
+as an amendment to the Constitution by the Legislatures of
+three-fourths of the several States within seven years from the date
+of its submission to the States by the Congress.
+
+
+
+Amendment XXIII
+
+Passed by Congress June 16, 1960.  Ratified March 29, 1961.
+
+Section 1
+
+The District constituting the seat of Government of the United States
+shall appoint in such manner as Congress may direct:
+
+A number of electors of President and Vice President equal to the
+whole number of Senators and Representatives in Congress to which the
+District would be entitled if it were a State, but in no event more
+than the least populous State; they shall be in addition to those
+appointed by the States, but they shall be considered, for the
+purposes of the election of President and Vice President, to be
+electors appointed by a State; and they shall meet in the District and
+perform such duties as provided by the twelfth article of amendment.
+
+Section 2
+
+The Congress shall have power to enforce this article by appropriate
+legislation.
+
+
+
+Amendment XXIV
+
+Passed by Congress August 27, 1962.  Ratified January 23, 1964.
+
+Section 1
+
+The right of citizens of the United States to vote in any primary or
+other election for President or Vice President, for electors for
+President or Vice President, or for Senator or Representative in
+Congress, shall not be denied or abridged by the United States or any
+State by reason of failure to pay poll tax or any other tax.
+
+Section 2
+
+Congress shall have power to enforce this article by appropriate
+legislation.
+
+
+
+Amendment XXV
+
+Passed by Congress July 6, 1965.  Ratified February 10, 1967.
+
+Section 1
+
+In case of the removal of the President from office or of his death or
+resignation, the Vice President shall become President.
+
+Section 2
+
+Whenever there is a vacancy in the office of the Vice President, the
+President shall nominate a Vice President who shall take the office
+upon confirmation by a majority vote of both houses of Congress.
+
+Section 3
+
+Whenever the President transmits to the President Pro tempore of the
+Senate and the Speaker of the House of Representatives his written
+declaration that he is unable to discharge the powers and duties of
+his office, and until he transmits to them a written declaration to
+the contrary, such powers and duties shall be discharged by the Vice
+President as Acting President.
+
+Section 4
+
+Whenever the Vice President and a majority of either the principal
+officers of the executive departments or of such other body as
+Congress may by law provide, transmits to the President Pro tempore of
+the Senate and the Speaker of the House of Representatives their
+written declaration that the President is unable to discharge the
+powers and duties of his office, the Vice President shall immediately
+assume the powers and duties of the office as Acting President.
+
+Thereafter, when the President transmits to the President Pro tempore
+of the Senate and the Speaker of the House of Representatives his
+written declaration that no inability exists, he shall resume the
+powers and duties of his office unless the Vice President and a
+majority of either the principal officers of the executive departments
+or of such other body as Congress may by law provide, transmits within
+four days to the President Pro tempore of the Senate and the Speaker
+of the House of Representatives their written declaration that the
+President is unable to discharge the powers and duties of his office.
+Thereupon Congress shall decide the issue, assembling within
+forty-eight hours for that purpose if not in session.  If the
+Congress, within twenty-one days after receipt of the latter written
+declaration, or, if Congress is not in session within twenty-one days
+after Congress is required to assemble, determines by two-thirds vote
+of both houses that the President is unable to discharge the powers
+and duties of his office, the Vice President shall continue to
+discharge the same as Acting President; otherwise, the President shall
+resume the powers and duties of his office.
+
+
+
+Amendment XXVI
+
+Passed by Congress March 23, 1971.  Ratified June 30, 1971.
+
+Section 1
+
+The right of citizens of the United States, who are 18 years of age or
+older, to vote shall not be denied or abridged by the United States or
+any state on account of age.
+
+Section 2
+
+The Congress shall have power to enforce this article by appropriate
+legislation.
+
+
+
+Amendment XXVII
+
+Passed by Congress September 25, 1789.  Ratified May 7, 1992
+
+No law varying the compensation for the services of the Senators and
+Representatives shall take effect, until an election of
+Representatives shall have intervened.
--- miscfiles-1.4.2.dfsg.1.orig/debian/us-declaration
+++ miscfiles-1.4.2.dfsg.1/debian/us-declaration
@@ -0,0 +1,237 @@
+The Declaration of Independence of the Thirteen Colonies
+
+
+In CONGRESS, July 4, 1776
+
+The unanimous Declaration of the thirteen united States of America,
+
+
+When in the Course of human events, it becomes necessary for one
+people to dissolve the political bands which have connected them with
+another, and to assume among the powers of the earth, the separate and
+equal station to which the Laws of Nature and of Nature's God entitle
+them, a decent respect to the opinions of mankind requires that they
+should declare the causes which impel them to the separation.
+
+We hold these truths to be self-evident, that all men are created
+equal, that they are endowed by their Creator with certain unalienable
+Rights, that among these are Life, Liberty, and the pursuit of
+Happiness.  That to secure these rights, Governments are instituted
+among Men, deriving their just powers from the consent of the
+governed.  That whenever any Form of Government becomes destructive of
+these ends, it is the Right of the People to alter or to abolish it,
+and to institute new Government, laying its foundation on such
+principles and organizing its powers in such form, as to them shall
+seem most likely to effect their Safety and Happiness.
+
+Prudence, indeed, will dictate that Governments long established
+should not be changed for light and transient causes; and accordingly
+all experience hath shewn, that mankind are more disposed to suffer,
+while evils are sufferable, than to right themselves by abolishing the
+forms to which they are accustomed.
+
+But when a long train of abuses and usurpations, pursuing invariably
+the same object evinces a design to reduce them under absolute
+Despotism, it is their right, it is their duty, to throw off such
+Government, and to provide new Guards for their future security.
+
+Such has been the patient sufferance of these Colonies; and such is
+now the necessity which constrains them to alter their former Systems
+of Government.  The history of the present King of Great Britain
+[George III] is a history of repeated injuries and usurpations, all
+having in direct object the establishment of an absolute Tyranny over
+these States.  To prove this, let Facts be submitted to a candid
+world.
+
+He has refused his Assent to Laws, the most wholesome and necessary
+for the public good.
+
+He has forbidden his Governors to pass Laws of immediate and pressing
+importance, unless suspended in their operation till his Assent should
+be obtained, and when so suspended, he has utterly neglected to attend
+to them.
+
+He has refused to pass other Laws for the accommodation of large
+districts of people, unless those people would relinquish the right of
+Representation in the Legislature, a right inestimable to them and
+formidable to tyrants only.
+
+He has called together legislative bodies at places unusual,
+uncomfortable, and distant from the depository of their public
+Records, for the sole purpose of fatiguing them into compliance with
+his measures.
+
+He has dissolved Representative Houses repeatedly, for opposing with
+manly firmness his invasions on the rights of the people.
+
+He has refused for a long time, after such dissolutions, to cause
+others to be elected; whereby the Legislative powers, incapable of
+Annihilation, have returned to the People at large for their exercise;
+the State remaining in the meantime exposed to all the dangers of
+invasion from without, and convulsions within.
+
+He has endeavoured to prevent the population of these States; for that
+purpose obstructing the Laws for Naturalization of Foreigners;
+refusing to pass others to encourage their migrations hither, and
+raising the conditions of new Appropriations of Lands.
+
+He has obstructed the Administration of Justice, by refusing his
+Assent to Laws for establishing Judiciary powers.
+
+He has made Judges dependent on his Will alone, for the tenure of
+their offices, and the amount and payment of their salaries.
+
+He has erected a multitude of New Offices, and sent hither swarms of
+Officers to harass our people, and eat out their substance.
+
+He has kept among us, in times of peace, Standing Armies, without the
+consent of our legislatures.
+
+He has affected to render the Military independent of and superior to
+the Civil power.
+
+He has combined with others to subject us to a jurisdiction foreign to
+our constitution and unacknowledged by our laws; giving his Assent to
+their Acts of pretended Legislation:
+
+For protecting them by a mock Trial from punishment for any Murders
+which they should commit on the Inhabitants of these States:
+
+For cutting off our Trade with all parts of the world:
+
+For imposing Taxes on us without our Consent:
+
+For depriving us in many cases of the benefits of Trial by Jury:
+
+For transporting us beyond Seas to be tried for pretended offences:
+
+For abolishing the free System of English Laws in a neighbouring
+Province, establishing therein an Arbitrary government, and enlarging
+its Boundaries so as to render it at once an example and fit
+instrument for introducing the same absolute rule into these Colonies:
+
+For taking away our Charters, abolishing our most valuable Laws and
+altering fundamentally the Forms of our Governments:
+
+For suspending our own Legislatures, and declaring themselves invested
+with power to legislate for us in all cases whatsoever.
+
+He has abdicated Government here by declaring us out of his Protection
+and waging War against us.
+
+He has plundered our seas, ravaged our Coasts, burnt our towns, and
+destroyed the lives of our people.
+
+He is at this time transporting large Armies of foreign Mercenaries to
+complete the works of death, desolation and tyranny, already begun
+with circumstances of cruelty and perfidy scarcely paralleled in the
+most barbarous ages, and totally unworthy the Head of a civilized
+nation.
+
+He has constrained our fellow Citizens taken Captive on the high Seas
+to bear Arms against their Country, to become the executioners of
+their friends and Brethren, or to fall themselves by their Hands.
+
+He has excited domestic insurrections amongst us, and has endeavoured
+to bring on the inhabitants of our frontiers, the merciless Indian
+Savages, whose known rule of warfare is an undistinguished destruction
+of all ages, sexes and conditions.
+
+In every stage of these Oppressions We have Petitioned for Redress in
+the most humble terms.  Our repeated Petitions have been answered only
+by repeated injury.  A Prince, whose character is thus marked by every
+act which may define a Tyrant, is unfit to be the ruler of a free
+people.
+
+Nor have We been wanting in attentions to our British brethren.
+
+We have warned them from time to time of attempts by their legislature
+to extend an unwarrantable jurisdiction over us.
+
+We have reminded them of the circumstances of our emigration and
+settlement here.
+
+We have appealed to their native justice and magnanimity, and we have
+conjured them by the ties of our common kindred to disavow these
+usurpations, which would inevitably interrupt our connections and
+correspondence.
+
+They too have been deaf to the voice of justice and of consanguinity.
+We must, therefore, acquiesce in the necessity, which denounces our
+Separation, and hold them, as we hold the rest of mankind, Enemies in
+War, in Peace Friends.
+
+We, therefore, the Representatives of the United States of America, in
+General Congress, Assembled, appealing to the Supreme Judge of the
+world for the rectitude of our intentions, do, in the Name, and by the
+authority of the good People of these Colonies, solemnly publish and
+declare.
+
+That these United Colonies are, and of Right ought to be Free and
+Independent States; that they are Absolved from all Allegiance to the
+British Crown,
+
+and that all political connection between them and the State of Great
+Britain is and ought to be totally dissolved;
+
+and that as Free and Independent States, they have full Power to levy
+War, conclude Peace, contract Alliances, establish Commerce,
+
+and to do all other Acts and Things which Independent States may of
+right do.
+
+And for the support of this Declaration, with a firm reliance on the
+protection of Divine Providence, we mutually pledge to each other our
+Lives, our Fortunes, and our sacred Honor.
+
+
+The signers of the Declaration represented the new States as follows:
+
+
+New Hampshire: 
+Josiah Bartlett, William Whipple, Matthew Thornton
+
+Massachusetts:
+John Hancock, Samuel Adams, John Adams, Robert Treat Paine, Elbridge
+Gerry
+
+Rhode Island:
+Stephen Hopkins, William Ellery
+
+Connecticut:
+Roger Sherman, Samuel Huntington, William Williams, Oliver Wolcott
+
+New York:
+William Floyd, Philip Livingston, Francis Lewis, Lewis Morris
+
+New Jersey:
+Richard Stockton, John Witherspoon, Francis Hopkinson, John Hart,
+Abraham Clark
+
+Pennsylvania:
+Robert Morris, Benjamin Rush, Benjamin Franklin, John Morton, George
+Clymer, James Smith, George Taylor, James Wilson, George Ross
+
+Delaware:
+Caesar Rodney, George Read, Thomas McKean
+
+Maryland:
+Samuel Chase, William Paca, Thomas Stone, Charles Carroll of
+Carrollton
+
+Virginia:
+George Wythe, Richard Henry Lee, Thomas Jefferson, Benjamin Harrison,
+Thomas Nelson, Jr., Francis Lightfoot Lee, Carter Braxton
+
+North Carolina:
+William Hooper, Joseph Hewes, John Penn
+
+South Carolina:
+Edward Rutledge, Thomas Heyward, Jr., Thomas Lynch, Jr., Arthur
+Middleton
+
+Georgia:
+Button Gwinnett, Lyman Hall, George Walton
+
+
+
--- miscfiles-1.4.2.dfsg.1.orig/debian/watch
+++ miscfiles-1.4.2.dfsg.1/debian/watch
@@ -0,0 +1,2 @@
+version=3
+ftp://ftp.gnu.org/gnu/miscfiles/miscfiles-(.*).tar.gz
