--- chimera2-2.0a19.orig/debian/postrm
+++ chimera2-2.0a19/debian/postrm
@@ -0,0 +1,5 @@
+#!/bin/sh -e
+
+if [ -x /usr/bin/update-menus ]; then
+    update-menus
+fi
--- chimera2-2.0a19.orig/debian/rules
+++ chimera2-2.0a19/debian/rules
@@ -0,0 +1,77 @@
+#!/usr/bin/make -f
+# debian.rules file - for xdemineur (2.4)
+# Based on sample debian.rules file (copyright 1994,1995 by Ian Jackson).
+#
+# I hereby give you perpetual unlimited permission to copy,
+# modify and relicense this file, provided that you do not remove
+# my name from the file itself.  (I assert my moral right of
+# paternity under the Copyright, Designs and Patents Act 1988.)
+
+package=chimera2
+
+build:
+	$(checkdir)
+	xmkmf -a
+	$(MAKE)
+	touch build
+
+clean:
+	$(checkdir)
+	-rm -f build
+	-$(MAKE) clean
+	-rm Makefile */Makefile
+	-rm -rf *~ debian/tmp debian/*~ debian/files*
+
+binary-indep:	checkroot build
+	$(checkdir)
+# There are no architecture-independent files to be uploaded
+# generated by this package.  If there were any they would be
+# made here.
+
+binary-arch:	checkroot build
+	$(checkdir)
+	-rm -rf debian/tmp
+	# First create directories
+	install -d debian/tmp debian/tmp/DEBIAN
+	install -d debian/tmp/usr/share/doc/$(package)
+	install -d debian/tmp/usr/bin
+	install -d debian/tmp/usr/share/man/man1
+	install -d debian/tmp/usr/share/menu
+	# Copy documentation
+	cp debian/copyright debian/tmp/usr/share/doc/$(package)/.
+	cp debian/changelog debian/tmp/usr/share/doc/$(package)/changelog.Debian
+	gzip -9v debian/tmp/usr/share/doc/$(package)/changelog.Debian
+	install -m 0644 doc/INFO debian/tmp/usr/share/doc/$(package)/INFO
+	install -m 0644 doc/HINTS debian/tmp/usr/share/doc/$(package)/HINTS
+	install -m 0644 debian/README.Debian debian/tmp/usr/share/doc/$(package)
+	# Copy other files
+	install -m 0644 chimera/chimera.man \
+				debian/tmp/usr/share/man/man1/chimera2.1
+	install -m 0644 debian/menu debian/tmp/usr/share/menu/chimera2
+	gzip -9v debian/tmp/usr/share/man/man1/chimera2.1
+	install -s chimera/chimera debian/tmp/usr/bin/chimera2
+	# Various bits and pieces needed to build package
+	cp debian/postinst debian/postrm debian/prerm debian/tmp/DEBIAN/.
+	chmod +x debian/tmp/DEBIAN/postinst debian/tmp/DEBIAN/postrm debian/tmp/DEBIAN/prerm
+	dpkg-shlibdeps chimera/chimera
+	dpkg-gencontrol -isp
+	chown -R root.root debian/tmp
+	chmod -R g-ws debian/tmp
+	dpkg --build debian/tmp ..
+
+define checkdir
+	test -f chimera/chimera.man -a -f debian/rules
+endef
+
+# Below here is fairly generic really
+
+binary:		binary-indep binary-arch
+
+source diff:
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+checkroot:
+	$(checkdir)
+	test root = "`whoami`"
+
+.PHONY: binary binary-arch binary-indep clean checkroot
--- chimera2-2.0a19.orig/debian/prerm
+++ chimera2-2.0a19/debian/prerm
@@ -0,0 +1,6 @@
+#!/bin/sh -e
+
+# Remove alternatives entry
+if [ "$1" = "remove" -o "$1" = "deconfigure" ]; then
+    update-alternatives --remove x-www-browser /usr/bin/chimera2
+fi
--- chimera2-2.0a19.orig/debian/README.Debian
+++ chimera2-2.0a19/debian/README.Debian
@@ -0,0 +1,8 @@
+As chimera 2 is still in alpha test, it may be useful to have both it and
+chimera 1.x on the system simulatenously. For that reason, I've renamed
+everything from "chimera" to "chimera2".
+
+In particular, the resource class is Chimera2; in earlier releases of this
+package I left it as it was, with the result that it found resources
+intended for the old version, and messed up many things, particularly the
+window size.
--- chimera2-2.0a19.orig/debian/menu
+++ chimera2-2.0a19/debian/menu
@@ -0,0 +1,5 @@
+?package(chimera2):needs="x11" \
+	title="Chimera" \
+	section="Apps/Net" \
+	hints="Web browsers" \
+	command="chimera2"
--- chimera2-2.0a19.orig/debian/copyright
+++ chimera2-2.0a19/debian/copyright
@@ -0,0 +1,196 @@
+This is Debian GNU/Linux's prepackaged version of chimera 2.
+
+This package was put together by me, Mark Baker <mbaker@iee.org> from
+the the original sources in ftp.cs.unlv.edu:/pub/chimera-alpha/
+chimera-2.0a19.tar.gz. The only changes were those necessary for debian
+packaging.
+
+The program is copyright 1997 John Kilburg and others.
+This debian package is copyright 1997 Mark Baker.
+
+[what follows is the file doc/COPYRIGHT from the original distribution]
+
+Most of the code was written by John and Erik and is GPL'd.  See
+/usr/share/common-licenses/GPL for details.  If I've left anything out below 
+please let me know.  Also, if you see GPL'd replacements for anything 
+not GPL'd please send it (or a pointer to it) to john@cs.unlv.edu.
+
+Other GPL'd code used:
+
+www/url_translate.c by Theodore Ts'o <tytso@ATHENA.MIT.EDU>
+common/snprintf.c by Patrick Powell <papowell@sdsu.edu>
+mxw/TextField* was written by Rob McMullen and is LGPL'd.
+
+====
+www/
+====
+
+WWW.c has some code from the Xaw Viewport widget and is
+
+Copyright (c) 1989, 1994  X Consortium
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS 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.  IN NO EVENT SHALL THE
+X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name of the X Consortium shall not
+be
+used in advertising or otherwise to promote the sale, use or other dealings
+in this Software without prior written authorization from the X Consortium.
+
+====
+mxw/
+====
+
+Also, the AuthDialog and MyDialog widgets are based on code from the
+Athena Dialog widget are
+
+Copyright (c) 1987, 1988, 1994  X Consortium
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS 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.  IN NO EVENT SHALL THE
+X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name of the X Consortium shall not
+be
+used in advertising or otherwise to promote the sale, use or other dealings
+in this Software without prior written authorization from the X Consortium.
+
+Copyright 1987, 1988 by Digital Equipment Corporation, Maynard,
+Massachusetts.
+
+                        All Rights Reserved
+
+Permission to use, copy, modify, and distribute this software and its 
+documentation for any purpose and without fee is hereby granted, 
+provided that the above copyright notice appear in all copies and that
+both that copyright notice and this permission notice appear in 
+supporting documentation, and that the name of Digital not be
+used in advertising or publicity pertaining to distribution of the
+software without specific, written prior permission.  
+
+DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
+ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
+DIGITAL BE LIABLE FOR 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 THIS
+SOFTWARE.
+
+=======
+common/
+=======
+
+Some string functions were grabbed from the BSD libraries and are
+
+Copyright (c) 1988-1993 The Regents of the University of California.
+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 advertising materials mentioning features or use of this software
+    must display the following acknowledgement:
+    This product includes software developed by the University of
+    California, Berkeley and its contributors.
+ 4. Neither the name of the University nor the names of its contributors
+    may be used to endorse or promote products derived from this software
+    without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS `AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS 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.
+
+memmove.c from the X folks:
+
+Copyright (c) 1987 X Consortium
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS 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.
+IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name of the X Consortium shall
+not be used in advertising or otherwise to promote the sale, use or
+other dealings in this Software without prior written authorization
+from the X Consortium.
+
+======
+image/
+======
+
+gif.c, new.c, imagep.h were derived from code from xloadimage and are
+
+Copyright 1989, 1991 Jim Frost
+Copyright 1989 Kirk L. Johnson
+
+Permission to use, copy, modify, distribute, and sell this software
+and its documentation for any purpose is hereby granted without fee,
+provided that the above copyright notice appear in all copies and
+that both that copyright notice and this permission notice appear
+in supporting documentation.  The author makes no representations
+about the suitability of this software for any purpose.  It is
+provided "as is" without express or implied warranty.
+
+THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
+NO EVENT SHALL THE AUTHOR BE LIABLE FOR 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 THIS SOFTWARE.
--- chimera2-2.0a19.orig/debian/postinst
+++ chimera2-2.0a19/debian/postinst
@@ -0,0 +1,13 @@
+#!/bin/sh
+set -e 
+
+# Register in menu
+if [ "$1" = "configure" ] && [ -x "$(which update-menus 2>/dev/null)" ]; then
+    update-menus
+fi
+
+# Install alternatives
+update-alternatives --install \
+    /usr/bin/x-www-browser x-www-browser /usr/bin/chimera2 30 \
+    --slave /usr/share/man/man1/x-www-browser.1.gz x-www-browser.1.gz \
+    /usr/share/man/man1/chimera2.1.gz
--- chimera2-2.0a19.orig/debian/control
+++ chimera2-2.0a19/debian/control
@@ -0,0 +1,15 @@
+Source: chimera2
+Section: web
+Priority: optional
+Maintainer: Mark Baker <mark@mnb.org.uk>
+Standards-Version: 3.6.2
+Build-Depends: libjpeg62-dev, libpng12-dev, xutils-dev, zlib1g-dev, libxaw7-dev, libxmu-dev, libxt-dev, libsm-dev, libice-dev, libxpm-dev, libxext-dev, libx11-dev
+
+Package: chimera2
+Architecture: any
+Depends: ${shlibs:Depends}
+Provides: www-browser
+Description: Web browser for X
+ Simple, fast, free web browser.
+ .
+ This is an alpha-test version; some of the rendering routines are buggy.
--- chimera2-2.0a19.orig/debian/substvars
+++ chimera2-2.0a19/debian/substvars
@@ -0,0 +1 @@
+shlibs:Depends=libc6 (>= 2.3.5-1), libice6, libjpeg62, libpng12-0 (>= 1.2.8rel), libsm6, libx11-6 | xlibs (>> 4.1.0), libxaw7 (>> 4.1.0), libxext6, libxmu6, libxpm4, libxt6, zlib1g (>= 1:1.2.1)
--- chimera2-2.0a19.orig/debian/#changelog#
+++ chimera2-2.0a19/debian/#changelog#
@@ -0,0 +1,205 @@
+chimera2 (2.0a19-4) unstable; urgency=low
+
+  * Includes patch so it doesn't crash when used with recent
+    libpng. (Closes: #130902). Thanks to Jeremie Koenig for the patch
+  * debian/postinst, debian/prerm: Largely rewritten
+  * debian/postinst, debian/prerm: Install x-www-browser alternatives
+    entry. I've gone for 30 as the priority, as it should be lower than
+    more fully-featured modern browsers. (Closes: #161762)
+  * chimera/chimera.man: refer to chimera2 instead of chimera
+  * debian/control: update my email address
+  * debian/rules: install manpage as chimera2.1, not .1x, to avoid lintian
+    warning
+  * debian/copyright: fix spelling of Debian GNU/Linux
+  * debian/rules: put menu file in /usr/share instead of /usr/lib
+
+ -- Mark Baker <mark@p4-7014.uk2net.com>  Wed, 11 Jan 2006 21:51:02 +0000
+
+chimera2 (2.0a19-3.3) unstable; urgency=low
+
+  * Bug Party quick NMU #3, fix xlib6g-dev dependency. (Closes: #170136)
+
+ -- Joshua Kwan <joshk@triplehelix.org>  Sat, 15 Mar 2003 01:05:04 -0800
+
+chimera2 (2.0a19-3.2) unstable; urgency=low
+
+  * NMU
+  * Put in some more general detection of endianess and
+    64-bitness.  This allows chimera2 to build on ia64 and hppa.
+    (closes: Bug#105040)
+
+ -- Doug Porter <dsp@debian.org>  Thu, 18 Oct 2001 13:44:52 -0500
+
+chimera2 (2.0a19-3.1) unstable; urgency=low
+
+  * Bug Party NMU!
+  * Added Build-Depends on libjpeg62-dev, libpng2-dev, xlib6g-dev,
+    xutils, zlib1g-dev (closes: #83833, #70271).
+  * Added menu hints (closes: #80074).
+  * Call dpkg-gencontrol with -isp now so that Section and Priority
+    are included in the .deb.
+  * Updated location of GPL in copyright file.
+  * Moved binary from /usr/X11R6/bin to /usr/bin.
+  * prerm was not copied to debian/tmp/DEBIAN/. Fixed.
+
+ -- Peter Palfrader <weasel@debian.org>  Sun, 25 Feb 2001 01:21:25 +0000
+
+chimera2 (2.0a19-3) unstable; urgency=low
+
+  * Recompiled so it doesn't segfault (believed to have been an
+    incompatibility with a new version of libjpeg?) (#50558)
+  * chimera/WWW.c: added translations so mouse wheel can be used
+  * debian/rules: put documentation and manpage in /usr/share
+  * debian/postinst,debian/prerm: handle /usr/doc/chimera2 symlink
+  * debian/control: policy version 3.1.0.0
+
+ -- Mark Baker <mbaker@iee.org>  Sat, 27 Nov 1999 20:59:53 +0000
+
+chimera2 (2.0a19-2) unstable; urgency=low
+
+  * Applied powerpc patch from Konstantinos Margaritis (#39051) - thanks
+
+ -- Mark Baker <mbaker@iee.org>  Sun,  4 Jul 1999 23:03:23 +0100
+
+chimera2 (2.0a19-1) unstable; urgency=low
+
+  * New upstream version
+  * Improved IPv6 support (support for incoming connections (for ftp))
+
+ -- Mark Baker <mbaker@iee.org>  Tue,  1 Jun 1999 23:56:53 +0100
+
+chimera2 (2.0a17-2) unstable; urgency=low
+
+  * Added IPv6 support
+
+ -- Mark Baker <mbaker@iee.org>  Mon, 24 May 1999 23:52:15 +0100
+
+chimera2 (2.0a17-1) unstable; urgency=low
+
+  * New upstream version (should fix #25912)
+  * Recompiled against libpng2 (#26922)
+  * debian/control: Provides www-browser (#27916)
+
+ -- Mark Baker <mbaker@iee.org>  Fri, 16 Apr 1999 23:37:26 +0100
+
+chimera2 (2.0a15-2) unstable; urgency=low
+
+  * Fix so cursor keys work when mouse over images
+  * Reimplemented accelerators fix in previous release more cleanly
+  * Changed resources so transparent GIFs don't have cream background
+
+ -- Mark Baker <mbaker@iee.org>  Mon, 08 Jun 1998 20:31:18 +0100
+
+chimera2 (2.0a15-1) unstable; urgency=low
+
+  * New upstream version
+  * Changes (compared to upstream version) so accelerators aren't installed
+    on text field. Having 's' mapped to view source etc on the URL input
+    line isn't very useful!
+  * debian/prerm: deleted
+  * debian/postrm: created (run update-menus in postrm, not prerm (#23004))
+  * debian/postinst: update-menus is in /usr/bin not /usr/sbin (#23006)
+  * debian/rules: minor changes
+
+ -- Mark Baker <mbaker@iee.org>  Sat, 30 May 1998 10:43:00 +0100
+
+chimera2 (2.0a14-2) unstable; urgency=low
+
+  * Updated to standards-versions 2.4.0.0
+  * Fixed copyright file (GPL is not compressed now)
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 10 Feb 1998 00:05:29 +0000
+
+chimera2 (2.0a14-1) unstable; urgency=low
+
+  * New upstream version
+  * Only run install-menus if it exists (#17275)
+  * Changed class to "chimera2" (#15035)
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 20 Jan 1998 22:18:27 +0000
+
+chimera2 (2.0a11-3) unstable; urgency=low
+
+  * Converted menu file to new format (#15036)
+
+ -- Mark Baker <mbaker@iee.org>  Thu, 20 Nov 1997 21:02:26 +0000
+
+chimera2 (2.0a11-2) unstable; urgency=low
+
+  * Run chimera2 instead of chimera from menu (#14230)
+
+ -- Mark Baker <mbaker@iee.org>  Thu, 30 Oct 1997 22:26:58 +0000
+
+chimera2 (2.0a11-1) unstable; urgency=low
+
+  * New upstream release (fixes memory bugs; unfortunately doesn't fix 
+    rendering bugs AFAICS)
+
+ -- Mark Baker <mbaker@iee.org>  Mon, 20 Oct 1997 00:14:15 +0100
+
+chimera2 (2.0a10-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 30 Sep 1997 20:50:31 +0100
+
+chimera2 (2.0a6-6) unstable; urgency=low
+
+  * Compiled with all libc6 libraries (I was waiting for libpng)
+
+ -- Mark Baker <mbaker@iee.org>  Sun, 28 Sep 1997 20:30:45 +0100
+
+chimera2 (2.0a6-5) unstable; urgency=low
+
+  * Patch to accept filenames on the command line [#13029]
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 16 Sep 1997 20:19:19 +0100
+
+chimera2 (2.0a6-4) unstable; urgency=low
+
+  * Only run install-menus if it exists [#13028]
+
+ -- Mark Baker <mbaker@iee.org>  Mon, 15 Sep 1997 20:33:09 +0100
+
+chimera2 (2.0a6-3) unstable; urgency=low
+
+  * Renamed man page from chimera to chimera2 to match binary filename
+  * And menu file similarly (though this isn't user visible so doesn't
+  matter so much) [both #12733]
+  * Ownerships were wrong in last version. I haven't done anything to fix
+  them, but they seem to be OK in this one!
+  * Move binary from /usr/bin to /usr/X11R6/bin
+
+ -- Mark Baker <mbaker@iee.org>  Wed, 10 Sep 1997 12:35:47 +0100
+
+chimera2 (2.0a6-2) unstable; urgency=low
+
+  * Compiled against xlib6g
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 09 Sep 1997 22:33:52 +0100
+
+chimera2 (2.0a6-1) unstable; urgency=low
+
+  * New upstream version
+  * Built from pristine sources
+
+ -- Mark Baker <mbaker@iee.org>  Sun, 07 Sep 1997 21:23:13 +0100
+
+chimera2 (2.0a2-3) unstable; urgency=low
+
+  * Absolutely no changes, just recompiled becuase of bogus dependency
+    in last release
+
+ -- Mark Baker <mbaker@iee.org>  Sun, 07 Sep 1997 00:22:59 +0100
+
+chimera2 (2.0a2-2) unstable; urgency=low
+
+  * Recompiled for libc6
+
+ -- Mark Baker <mbaker@iee.org>  Fri, 20 Jun 1997 12:38:46 +0100
+
+chimera2 (2.0a2-1) unstable; urgency=low
+
+  * First debian release
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 20 May 1997 21:06:00 +0100
--- chimera2-2.0a19.orig/debian/changelog
+++ chimera2-2.0a19/debian/changelog
@@ -0,0 +1,221 @@
+chimera2 (2.0a19-5.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTBFS by replacing obsolete xutils with xutils-dev in
+    Build-Depends (Closes: #485200).
+  * Set urgency to “medium”, bug is in testing too.
+
+ -- Cyril Brulebois <kibi@debian.org>  Sat, 18 Jul 2009 10:41:36 +0200
+
+chimera2 (2.0a19-5) unstable; urgency=low
+
+  * debian/control: Update build dependencies: xlibs-dev no longer exists
+    (Closes: #346637)
+
+ -- Mark Baker <mark@mnb.org.uk>  Wed, 11 Jan 2006 21:52:10 +0000
+
+chimera2 (2.0a19-4) unstable; urgency=low
+
+  * Includes patch so it doesn't crash when used with recent
+    libpng. (Closes: #130902). Thanks to Jeremie Koenig for the patch
+  * debian/postinst, debian/prerm: Largely rewritten
+  * debian/postinst, debian/prerm: Install x-www-browser alternatives
+    entry. I've gone for 30 as the priority, as it should be lower than
+    more fully-featured modern browsers. (Closes: #161762)
+  * chimera/chimera.man: refer to chimera2 instead of chimera
+  * debian/control: update my email address
+  * debian/rules: install manpage as chimera2.1, not .1x, to avoid lintian
+    warning
+  * debian/copyright: fix spelling of Debian GNU/Linux
+  * debian/rules: put menu file in /usr/share instead of /usr/lib
+
+ -- Mark Baker <mark@mnb.org.uk>  Sat, 20 Aug 2005 18:22:53 +0100
+
+chimera2 (2.0a19-3.3) unstable; urgency=low
+
+  * Bug Party quick NMU #3, fix xlib6g-dev dependency. (Closes: #170136)
+
+ -- Joshua Kwan <joshk@triplehelix.org>  Sat, 15 Mar 2003 01:05:04 -0800
+
+chimera2 (2.0a19-3.2) unstable; urgency=low
+
+  * NMU
+  * Put in some more general detection of endianess and
+    64-bitness.  This allows chimera2 to build on ia64 and hppa.
+    (closes: Bug#105040)
+
+ -- Doug Porter <dsp@debian.org>  Thu, 18 Oct 2001 13:44:52 -0500
+
+chimera2 (2.0a19-3.1) unstable; urgency=low
+
+  * Bug Party NMU!
+  * Added Build-Depends on libjpeg62-dev, libpng2-dev, xlib6g-dev,
+    xutils, zlib1g-dev (closes: #83833, #70271).
+  * Added menu hints (closes: #80074).
+  * Call dpkg-gencontrol with -isp now so that Section and Priority
+    are included in the .deb.
+  * Updated location of GPL in copyright file.
+  * Moved binary from /usr/X11R6/bin to /usr/bin.
+  * prerm was not copied to debian/tmp/DEBIAN/. Fixed.
+
+ -- Peter Palfrader <weasel@debian.org>  Sun, 25 Feb 2001 01:21:25 +0000
+
+chimera2 (2.0a19-3) unstable; urgency=low
+
+  * Recompiled so it doesn't segfault (believed to have been an
+    incompatibility with a new version of libjpeg?) (#50558)
+  * chimera/WWW.c: added translations so mouse wheel can be used
+  * debian/rules: put documentation and manpage in /usr/share
+  * debian/postinst,debian/prerm: handle /usr/doc/chimera2 symlink
+  * debian/control: policy version 3.1.0.0
+
+ -- Mark Baker <mbaker@iee.org>  Sat, 27 Nov 1999 20:59:53 +0000
+
+chimera2 (2.0a19-2) unstable; urgency=low
+
+  * Applied powerpc patch from Konstantinos Margaritis (#39051) - thanks
+
+ -- Mark Baker <mbaker@iee.org>  Sun,  4 Jul 1999 23:03:23 +0100
+
+chimera2 (2.0a19-1) unstable; urgency=low
+
+  * New upstream version
+  * Improved IPv6 support (support for incoming connections (for ftp))
+
+ -- Mark Baker <mbaker@iee.org>  Tue,  1 Jun 1999 23:56:53 +0100
+
+chimera2 (2.0a17-2) unstable; urgency=low
+
+  * Added IPv6 support
+
+ -- Mark Baker <mbaker@iee.org>  Mon, 24 May 1999 23:52:15 +0100
+
+chimera2 (2.0a17-1) unstable; urgency=low
+
+  * New upstream version (should fix #25912)
+  * Recompiled against libpng2 (#26922)
+  * debian/control: Provides www-browser (#27916)
+
+ -- Mark Baker <mbaker@iee.org>  Fri, 16 Apr 1999 23:37:26 +0100
+
+chimera2 (2.0a15-2) unstable; urgency=low
+
+  * Fix so cursor keys work when mouse over images
+  * Reimplemented accelerators fix in previous release more cleanly
+  * Changed resources so transparent GIFs don't have cream background
+
+ -- Mark Baker <mbaker@iee.org>  Mon, 08 Jun 1998 20:31:18 +0100
+
+chimera2 (2.0a15-1) unstable; urgency=low
+
+  * New upstream version
+  * Changes (compared to upstream version) so accelerators aren't installed
+    on text field. Having 's' mapped to view source etc on the URL input
+    line isn't very useful!
+  * debian/prerm: deleted
+  * debian/postrm: created (run update-menus in postrm, not prerm (#23004))
+  * debian/postinst: update-menus is in /usr/bin not /usr/sbin (#23006)
+  * debian/rules: minor changes
+
+ -- Mark Baker <mbaker@iee.org>  Sat, 30 May 1998 10:43:00 +0100
+
+chimera2 (2.0a14-2) unstable; urgency=low
+
+  * Updated to standards-versions 2.4.0.0
+  * Fixed copyright file (GPL is not compressed now)
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 10 Feb 1998 00:05:29 +0000
+
+chimera2 (2.0a14-1) unstable; urgency=low
+
+  * New upstream version
+  * Only run install-menus if it exists (#17275)
+  * Changed class to "chimera2" (#15035)
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 20 Jan 1998 22:18:27 +0000
+
+chimera2 (2.0a11-3) unstable; urgency=low
+
+  * Converted menu file to new format (#15036)
+
+ -- Mark Baker <mbaker@iee.org>  Thu, 20 Nov 1997 21:02:26 +0000
+
+chimera2 (2.0a11-2) unstable; urgency=low
+
+  * Run chimera2 instead of chimera from menu (#14230)
+
+ -- Mark Baker <mbaker@iee.org>  Thu, 30 Oct 1997 22:26:58 +0000
+
+chimera2 (2.0a11-1) unstable; urgency=low
+
+  * New upstream release (fixes memory bugs; unfortunately doesn't fix 
+    rendering bugs AFAICS)
+
+ -- Mark Baker <mbaker@iee.org>  Mon, 20 Oct 1997 00:14:15 +0100
+
+chimera2 (2.0a10-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 30 Sep 1997 20:50:31 +0100
+
+chimera2 (2.0a6-6) unstable; urgency=low
+
+  * Compiled with all libc6 libraries (I was waiting for libpng)
+
+ -- Mark Baker <mbaker@iee.org>  Sun, 28 Sep 1997 20:30:45 +0100
+
+chimera2 (2.0a6-5) unstable; urgency=low
+
+  * Patch to accept filenames on the command line [#13029]
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 16 Sep 1997 20:19:19 +0100
+
+chimera2 (2.0a6-4) unstable; urgency=low
+
+  * Only run install-menus if it exists [#13028]
+
+ -- Mark Baker <mbaker@iee.org>  Mon, 15 Sep 1997 20:33:09 +0100
+
+chimera2 (2.0a6-3) unstable; urgency=low
+
+  * Renamed man page from chimera to chimera2 to match binary filename
+  * And menu file similarly (though this isn't user visible so doesn't
+  matter so much) [both #12733]
+  * Ownerships were wrong in last version. I haven't done anything to fix
+  them, but they seem to be OK in this one!
+  * Move binary from /usr/bin to /usr/X11R6/bin
+
+ -- Mark Baker <mbaker@iee.org>  Wed, 10 Sep 1997 12:35:47 +0100
+
+chimera2 (2.0a6-2) unstable; urgency=low
+
+  * Compiled against xlib6g
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 09 Sep 1997 22:33:52 +0100
+
+chimera2 (2.0a6-1) unstable; urgency=low
+
+  * New upstream version
+  * Built from pristine sources
+
+ -- Mark Baker <mbaker@iee.org>  Sun, 07 Sep 1997 21:23:13 +0100
+
+chimera2 (2.0a2-3) unstable; urgency=low
+
+  * Absolutely no changes, just recompiled becuase of bogus dependency
+    in last release
+
+ -- Mark Baker <mbaker@iee.org>  Sun, 07 Sep 1997 00:22:59 +0100
+
+chimera2 (2.0a2-2) unstable; urgency=low
+
+  * Recompiled for libc6
+
+ -- Mark Baker <mbaker@iee.org>  Fri, 20 Jun 1997 12:38:46 +0100
+
+chimera2 (2.0a2-1) unstable; urgency=low
+
+  * First debian release
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 20 May 1997 21:06:00 +0100
