--- wesnoth-1.6.5.orig/debian/wesnoth-ei.install
+++ wesnoth-1.6.5/debian/wesnoth-ei.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/share/games/wesnoth/data/campaigns/Eastern_Invasion
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-ei.mo
--- wesnoth-1.6.5.orig/debian/rules
+++ wesnoth-1.6.5/debian/rules
@@ -0,0 +1,179 @@
+#!/usr/bin/make -f
+# debian/rules for wesnoth
+# copyright 2007++ by Gerfried Fuchs <rhonda@debian.at>
+# Licenced the same way as wesnoth itself
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This has to be exported to make some magic below work.
+export DH_OPTIONS
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+CFLAGS = -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+CONFIGURE_SWITCHES = --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --disable-rpath --prefix=/usr --mandir=\$${prefix}/share/man --bindir=\$${prefix}/games --with-datadir-name=wesnoth --with-localedir=\$${prefix}/share/locale --with-fifodir=/var/run/wesnothd --datadir=\$${prefix}/share/games --enable-server --with-fribidi --enable-python-install CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
+
+
+# calculate the version strings
+MAJOR_VERSION = $(shell dpkg-parsechangelog | grep "^Version:" | cut -d" " -f2 | cut -d. -f1)
+MINOR_VERSION = $(shell dpkg-parsechangelog | grep "^Version:" | cut -d" " -f2 | cut -d. -f2 | cut -d- -f1 | sed -e 's/[^0-9]//g')
+UPSTREAM_VERSION =  $(shell dpkg-parsechangelog | grep "^Version:" | cut -d" " -f2 | rev | cut -d- -f2 | rev)
+
+## if we are in a stable release we use this
+STABLE_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION)
+NEXT_VERSION = $(MAJOR_VERSION).$(shell echo $$(( $(MINOR_VERSION) + 1 )) )
+
+## for development releases, we use this so we won't have to change the
+## control file
+#STABLE_VERSION = $(UPSTREAM_VERSION)
+#NEXT_VERSION = $(UPSTREAM_VERSION).~
+
+
+include /usr/share/quilt/quilt.make
+
+clean: unpatch
+	dh_testdir
+	dh_testroot
+	rm -f build-arch-stamp build-indep-stamp
+	# Add here commands to clean up after the build process.
+	[ ! -f Makefile ] || $(MAKE) distclean
+	find po -name "*.gmo" -exec rm -f {} \;
+	find po -name "stamp-po" -exec rm -f {} \;
+	rm -f config.sub config.guess
+	dh_clean
+
+
+
+#Architecture
+build: build-arch build-indep
+
+build-arch: build-arch-stamp
+build-arch-stamp: patch
+	./configure $(CONFIGURE_SWITCHES)
+	$(MAKE)
+	touch $@
+
+
+build-indep: build-indep-stamp
+build-indep-stamp:
+	# Add here commands to compile the indep part of the package.
+	touch $@
+
+
+install: install-indep install-arch
+
+install-indep:
+	dh_testdir
+	dh_testroot
+	dh_prep -i
+	dh_installdirs -i
+
+	# Add here commands to install the indep part of the package into
+	# debian/<package>-doc.
+	DESTDIR=$(CURDIR)/debian/tmp/ \
+		$(MAKE) install-data-local \
+			datadir=/usr/share \
+			pkgdatadir=/usr/share/games/wesnoth
+
+	cd $(CURDIR)/debian/tmp/usr/share/games/wesnoth/data/tools && chmod +x \
+		extractbindings unit_tree/TeamColorizer \
+		wesnoth/wescamp.py wesnoth/wmldata.py wesnoth/wmlparser.py \
+		wmlindent wmlflip wmllint wmlscope wesnoth_addon_manager wmltest
+
+	DESTDIR=$(CURDIR)/debian/tmp/ \
+		$(MAKE) -C po install \
+			localedir=/usr/share/locale
+
+	dh_install -i
+
+
+install-arch:
+	dh_testdir
+	dh_testroot
+	dh_prep -s
+	dh_installdirs -s
+
+	# Add here commands to install the arch part of the package into
+	# debian/tmp.
+	$(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
+	DESTDIR=$(CURDIR)/debian/tmp \
+		$(MAKE) install-exec
+	DESTDIR=$(CURDIR)/debian/tmp \
+		$(MAKE) -C doc/man install
+
+	dh_install -s
+
+
+# Must not depend on anything. This is to be called by
+# binary-arch/binary-indep
+# in another 'make' thread.
+binary-common:
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs changelog
+	dh_installdocs
+	dh_installexamples
+	dh_installmenu
+	dh_lintian
+	dh_pysupport
+	dh_installinit
+	dh_installman
+	dh_strip --dbg-package=wesnoth-dbg
+	dh_compress
+	dh_fixperms
+	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol -- -Vwesnoth:Stable-Version=$(STABLE_VERSION) -Vwesnoth:Next-Version=$(NEXT_VERSION)
+	dh_md5sums
+	dh_builddeb
+
+
+# Build architecture independant packages using the common target.
+binary-indep: build-indep install-indep
+	# workaround for dh_link (mis)behavior, see BTS#445550
+	for i in ttf-dejavu/DejaVuSans.ttf; \
+		do ln -s /usr/share/fonts/truetype/$$i \
+	       	debian/wesnoth-data/usr/share/games/wesnoth/fonts/`basename $$i`; \
+		done
+	ln -s /usr/share/fonts/truetype/wqy/wqy-zenhei.ttc \
+	       	debian/wesnoth-data/usr/share/games/wesnoth/fonts/wqy-zenhei.ttc
+
+	for i in wesnoth wesnoth-all wesnoth-editor; do \
+		install -p -d -m755 debian/$$i/usr/share/doc; \
+		ln -s wesnoth-data debian/$$i/usr/share/doc/$$i; \
+		done
+
+	$(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
+
+# Build architecture dependant packages using the common target.
+binary-arch: build-arch install-arch
+	for i in debian/wesnoth-core/usr/share/man/*/man6/wesnoth.6; do \
+		ln -s wesnoth.6.gz `dirname $$i`/wesnoth-nolog.6.gz; \
+		ln -s wesnoth.6.gz `dirname $$i`/wesnoth-smallgui.6.gz; \
+		ln -s wesnoth.6.gz `dirname $$i`/wesnoth_editor.6.gz; \
+		done
+	ln -s wesnoth.6.gz debian/wesnoth-core/usr/share/man/man6/wesnoth-nolog.6.gz
+	ln -s wesnoth.6.gz debian/wesnoth-core/usr/share/man/man6/wesnoth-smallgui.6.gz
+	ln -s wesnoth.6.gz debian/wesnoth-core/usr/share/man/man6/wesnoth_editor.6.gz
+
+	for i in wesnoth-core wesnoth-dbg; do \
+		install -p -d -m755 debian/$$i/usr/share/doc; \
+		ln -s wesnoth-data debian/$$i/usr/share/doc/$$i; \
+		done
+
+	$(MAKE) -f debian/rules DH_OPTIONS=-s binary-common
+
+
+binary: binary-arch binary-indep
+.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch
--- wesnoth-1.6.5.orig/debian/changelog
+++ wesnoth-1.6.5/debian/changelog
@@ -0,0 +1,1156 @@
+wesnoth (1:1.6.5-1~bpo50+1) lenny-backports; urgency=low
+
+  * Rebuild for lenny-backports.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Sat, 03 Oct 2009 22:03:21 +0200
+
+wesnoth (1:1.6.5-1) unstable; urgency=low
+
+  * New upstream stable release.
+  * Updated copyright informations for upstream.
+  * Changed debianization licensing to BSD style.
+  * Removed outdated and obsolete README.Debian file.
+  * Use dh_prep instead of dh_clean -k.
+  * Bumped to Standards-Version 3.8.3.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 07 Sep 2009 21:31:20 +0200
+
+wesnoth (1:1.6.4-1) unstable; urgency=low
+
+  * New upstream release.
+  * Switch to debhelper compat 7 because that's what is in stable anyway.
+  * Bump to Standards-Version 3.8.2.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 06 Jul 2009 14:46:25 +0200
+
+wesnoth (1:1.6.3-1) unstable; urgency=low
+
+  * New upstream release.
+  * Raised debhelper dependency to >= 6.0.7~ because of use of dh_lintian.
+  * Switch back to unversioned boost Build-Depends (closes: #531122)
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Sun, 21 Jun 2009 21:44:53 +0200
+
+wesnoth (1:1.6.2-1) unstable; urgency=low
+
+  * New upstream release.
+  * Patch refreshed.
+  * Updated wqy-zenhei overrides entry.
+  * Added wesnoth-sof overrides entry for I in description.
+  * Actually get the overrides file installed through dh_lintian, naming the
+    files accordingly.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Tue, 12 May 2009 13:29:16 +0200
+
+wesnoth (1:1.6.1-1) unstable; urgency=low
+
+  * New upstream release.
+  * Incorporated no-music-endless-loop, patch removed.
+  * Fixed wqy-zenhei to point to proper target and added versioning to
+    Recommends on ttf-wqy-zenhei for that change
+    (closes: #522501, LP: #358590)
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Wed, 15 Apr 2009 16:11:52 +0200
+
+wesnoth (1:1.6a-3) unstable; urgency=medium
+
+  * Pull fix for endless loop consuming 100% CPU when no music is installed
+    from upstream r34257.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Thu, 02 Apr 2009 12:06:45 +0200
+
+wesnoth (1:1.6a-2) unstable; urgency=medium
+
+  * Install the menu icons from the icons subdirectory instead of symlinking
+    into the void. Thanks to Ori Avtalion for noticing it!
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Tue, 31 Mar 2009 15:30:18 +0200
+
+wesnoth (1:1.6a-1) unstable; urgency=low
+
+  * New upstream hotfix release fixing several AI related problems in
+    multiplayer mode.
+  * Fix NEXT_VERSION magic to work with letters in the minor number.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Fri, 20 Mar 2009 09:24:25 +0100
+
+wesnoth (1:1.6-1) unstable; urgency=low
+
+  * The "new stable version 1.6" release hit the street!
+  * Adjusted VCS-* fields in debian/control for stable.
+  * Adjust STABLE_VERSION + NEXT_VERSION calculation in debian/rules for
+    stable.
+  * Adjust debian/watch for stable.
+  * Copy debian/NEWS entry from 1.4 about save game incompatibility to former
+    stable releases and adjust it slightly.
+  * Adjust wesnoth-data overrides with respect to font changes.
+  * Bump to Standards-Version 3.8.1.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Thu, 19 Mar 2009 10:52:51 +0100
+
+wesnoth (1:1.5.14-1) experimental; urgency=low
+
+  * New upstream RC3 for 1.6 release.
+  * Font ttf-sazanami-gothic got removed, ttf-wqy-zenhei got renamed.
+  * Change Section of wesnoth-dbg to debug.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 16 Mar 2009 09:45:22 +0100
+
+wesnoth (1:1.5.13-1) experimental; urgency=low
+
+  * New upstream RC2 for 1.6 release (closes: #519195)
+  * Fix VCS entries in control file for experimental branch.
+  * Add overrides for manpage-locale-dir-country-specific in wesnoth-core and
+    wesnoth-server, there actually _are_ en_GB translations of the manpages.
+  * Use wesnoth-nolog for editor menu entry, too.
+  * Make wmlflip executable.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Wed, 11 Mar 2009 10:16:54 +0100
+
+wesnoth (1:1.5.12-1) experimental; urgency=low
+
+  * First RC for upcoming 1.6 release! Contains fix for:
+    - save game cached informations didn't update (closes: #483782)
+    - fixed reproducible pathfinder crash (closes: #510403)
+    - removed patch fix-server-dos as it is part of the release.
+  * Install new wmlflip tool into wesnoth-tools package.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 02 Mar 2009 14:39:20 +0100
+
+wesnoth (1:1.5.11-1) experimental; urgency=high
+
+  * New upstream release, which addresses several severe bugs:
+    - Removed python AI support which allowed to break out of sandbox and
+      allowed execution of abitrary code (CVE-2009-0367, Upstream Bug #13048).
+      Remove python-dev from Build-Dependencies and related compile option
+      from debian/rules.
+    - Limiting map size to 200x200 to avoid hanging of wesnoth/exhausting
+      system memory (Upstream Bug #13031)
+  * Pulled patch fix-server-dos from upstream svn r33069 which fixes a DoS
+    pattern in the server, which came in a bit too late for the release
+    (CVE-2009-0366, Upstream Bug #13037)
+  * Don't chmod +x on wesnoth/wmlgrammar.py tools file anymore.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Tue, 24 Feb 2009 16:10:36 +0100
+
+wesnoth (1:1.5.10-1) experimental; urgency=low
+
+  * Second beta for upcoming 1.6 release.
+  * Removed the --disable-strict-compilation configure switch again.
+  * Switch libboost Build-Depends from unversioned packages to 1.37.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Tue, 17 Feb 2009 16:50:28 +0100
+
+wesnoth (1:1.5.9-1) experimental; urgency=low
+
+  * First beta for upcoming 1.6 release! Wooh. Fixes:
+    - Local Game offers to switch a player into a Network Player
+      (closes: #505402)
+  * configure with --disable-strict-compilation, upstream will work on it.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 02 Feb 2009 15:53:44 +0100
+
+wesnoth (1:1.5.8-1) experimental; urgency=low
+
+  * New upstream development release.
+  * Fix typo in wesnoth-tools package description noticed by Soliton, thanks.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Sun, 18 Jan 2009 19:10:02 +0100
+
+wesnoth (1:1.5.7-2) experimental; urgency=low
+
+  * Missed the new directory data/core/editor/ for installation, making
+    starting the editor quitting the game through an assertion.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Fri, 02 Jan 2009 13:03:05 +0100
+
+wesnoth (1:1.5.7-1) experimental; urgency=low
+
+  * The "happy new year" devel release, containing:
+    - support for playlist in editor (closes: #458847)
+  * Add Legend of Wesmere campaign to depends of wesnoth.
+  * Add jQuery and tablesorter copyright to debian/copyright.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Thu, 01 Jan 2009 18:08:14 +0100
+
+wesnoth (1:1.5.6-1) experimental; urgency=low
+
+  * New upstream release.
+  * New campaign Legend of Wesmere.
+  * Lower wesnoth-music from Recommends to Suggests in wesnoth-data
+    (LP: #281791)
+  * "official" is not part of the campaign name, don't quote it in the package
+    descriptions.
+  * Add Replaces & Conflicts on versioned wesnoth to wesnoth-core for the
+    switch.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 24 Nov 2008 10:41:59 +0100
+
+wesnoth (1:1.5.5-1) experimental; urgency=low
+
+  * New upstream release, containing fixes for:
+    - wesnoth-editor: please add Time of Day view posibility (closes: #458305)
+    - Northern Rebirth scenario: AI problem (closes: #499895, #501136)
+  * Install data/tools/wmltest and data/tools/addon_manager into wesnoth-tools
+    package, too. Change executable chmods accordingly.
+  * Rename wesnoth to wesnoth-core and wesnoth-all to wesnoth. Document the
+    switch in the NEWS file (closes: #500935)
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 06 Oct 2008 14:25:32 +0200
+
+wesnoth (1:1.5.4-1) experimental; urgency=low
+
+  * New upstream release, containing fixes for:
+    - quit to desktop did just quit editor (closes: #497659)
+    - terrain images properly referenced (closes: #497795)
+    - unavailable languages are greyed out (closes: #452727)
+  * Don't build smallgui anymore, replace it with a wrapper script for calling
+    wesnoth --smallgui, and echo a message stating so.
+  * Don't build wesnoth_editor anymore, replace it with a wrapper script for
+    calling wesnoth --editor, and echo a message stating so.
+  * Remove wesnoth-editor package completely, incorporate the files installed
+    there into the appropriate packages (mostly wesnoth-data). Adding
+    appropriate Replaces and Provides entries.
+  * Allow to hand over arguments to wesnoth-nolog.
+  * Quote campaign names in package descriptions.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Thu, 11 Sep 2008 19:23:55 +0200
+
+wesnoth (1:1.5.3-1) experimental; urgency=low
+
+  * New upstream release containing fix for:
+    - unit/terrain graphic mistace (closes: #473377)
+  * debian/wesnoth-data.install:
+    - there is no data/*.fai anymore
+    - data/ais is now called data/ai
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Fri, 22 Aug 2008 13:19:29 +0200
+
+wesnoth (1:1.5.2-2) experimental; urgency=low
+
+  * Make wesnoth-dbg explicitly depend on wesnoth-data instead of implicitly
+    through the wesnoth dependency so that lintian is able to catch it ...
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Thu, 24 Jul 2008 09:44:53 +0200
+
+wesnoth (1:1.5.2-1) experimental; urgency=low
+
+  * New upstream release, new Build-Dependency: libpango1.0-dev
+  * Add following new paths/files to install files:
+    - data/*.fai, data/gui (wesnoth-data)
+    - data/themes/editor2.cfg (wesnoth-editor)
+  * Add -dbg package as suggested by Patrick Matthäi
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 14 Jul 2008 16:11:44 +0200
+
+wesnoth (1:1.5.1-1) experimental; urgency=low
+
+  * New upstream release
+  * Finally switched Maintainer to Games Team.
+  * Updated to Standards-Version 3.8.0:
+    - Added README.source to package.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Sat, 21 Jun 2008 02:28:46 +0200
+
+wesnoth (1:1.5.0a-1) experimental; urgency=low
+
+  * New upstream release (closes: #478793), includes fix for:
+    - 100% evasion on some terrain acts as 50% (closes: #467253)
+    - The Court of Karrag: no TC for Karrag as Dwarf (closes: #473218)
+    - Patches not needed anymore: no-campaign-fix, address-align-for-sparc.
+  * Doesn't use included libsdl-ttf anymore, build-depend on
+    libsdl-ttf2.0-dev (>= 2.0.8) Requires libboost-regex-dev, also.
+  * Switched version information in debian/rules and debian/watch to
+    development release dependencies.
+  * Do postinst hooks only on upgrades from older versions than 1:1.4.1-2,
+    also check wether it might be a symlink already and ignore rmdir error
+    message.
+  * Switch ttf-sazanami-gothic and ttf-wqy-zenhei to recommends instead of
+    only suggests.
+  * Rename debian/NEWS.Debian to debian/NEWS which dh_installchangelogs likes
+    to pick up and install as NEWS.Debian...
+  * New gettext domain wesnoth-anl for a muliplayer scenario, installing it
+    into wesnoth-data mainpackage.
+  * Updated wesnoth-tools install file and chmods in rules.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Sat, 10 May 2008 19:42:55 +0200
+
+wesnoth (1:1.4.1-2) unstable; urgency=low
+
+  * Create postinst hooks to change the (hopefully) empty doc dirs of wesnoth,
+    wesnoth-editor and wesnoth-all to symlinks to wesnoth-data.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Fri, 18 Apr 2008 11:53:02 +0200
+
+wesnoth (1:1.4.1-1) unstable; urgency=low
+
+  * New upstream release:
+    - sample.py-fix made it into the 1.4 branch, removed.
+    - disable-rpath patch not needed anymore, configure fixed upstream.
+  * New patch: address-align-for-sparc which fixes an alignment issue which
+    caused a SIGBUGS on sparc (closes: #426318)
+  * Update debian/copyright with respect to that wesnoth is GPLv2 or later,
+    not GPLv2 only.
+  * Also symlink the english manpage for wesnoth-smallgui properly.
+  * Call dh_pysupport for the python parts in the wesnoth-tools package and
+    make it Depend on ${python:Depends}. Build-Depend on python-support.
+  * Switch wesnoth-tools package to Arch: all what it actually is.
+  * Only do the doc symlink in wesnoth, wesnoth-editor and wesnoth-all
+    packages which directly versioned depend on wesnoth-data, not from the
+    campaign packages.
+  * Fix a typo in wesnoth-tools package description.
+  * Make the included scripts in the tools package executable.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Thu, 17 Apr 2008 13:52:03 +0200
+
+wesnoth (1:1.4-2) experimental; urgency=low
+
+  * Upload to experimental due to new wesnoth-tools package which isn't
+    fully tested yet and may work against python policy.
+  * Add wesnoth-tools package including the most useful tools for campaign
+    developers.
+  * Build a wesnoth-smallgui binary (closes: #469234)
+  * Patch wesnoth-nolog-desktop-file for calling wesnoth-nolog instead of
+    wesnoth from desktop file (triggered by #469800) 
+  * Switch from ttf-arphic-gkai00mp (gkai00mp.ttf) to ttf-wqy-zenhei
+    (wqy-zenhei.ttf) package (font) which the game really uses. Thanks to
+    Ying-Chun Liu for noticing it (closes: #470292)
+  * Made it more clear in the wesnoth-all package description where to get the
+    server from.
+  * Update README.Debian with informations about the (planned) setup and
+    server support through wesnoth.debian.net (closes: #470224)
+  * Added the short description from the campaigns to the package description
+    of the according package (closes: #469467).
+    Package description translators, pretty please fetch the already translated
+    descriptions from the package instead of redoing them from scratch, thanks.
+  * Remove ttf-dejavu dependency from editor, it's in dependent package
+    wesnoth-data anyway.
+  * Install documentation only into wesnoth-data package and make the
+    depending packages have symlinks to the doc dir.
+  * Make use of the http://sf.net/$project/ hack in debian/watch instead of
+    chosing a mirror on our own.
+  * Recommend the three introduction campaigns from the wesnoth package and
+    add informations about it to the package description (closes: #471912)
+  * Improve other package descriptions a little, too.
+  * Pull sample.py-fix patch from upstream svn r25432 (closes: #472416)
+  * Pull no-campaign-fix from upstream svn r25532 (closes: #471851)
+  * Add NEWS.Debian file explaining the save game incompatibility to the
+    former stable release.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Fri, 04 Apr 2008 15:39:47 +0200
+
+wesnoth (1:1.4-1) unstable; urgency=low
+
+  * New stable upstream release:
+    - debian/rules: switch to stable release dependency chain
+    - debian/watch: switch to stable release matching only
+  * Fixed version magic in debian/rules with respect to no patch level digit
+    in it.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Sun, 02 Mar 2008 23:51:27 +0100
+
+wesnoth (1:1.3.19-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 25 Feb 2008 08:06:02 +0100
+
+wesnoth (1:1.3.18-1) unstable; urgency=low
+
+  * New upstream release (aka 1.4-rc1).
+  * Update watchfile to match everything, not only development releases, for
+    the time being until the next stable release.
+  * Use fixed control file substitute strings and switch in debian/rules
+    appropriately.
+  * Build with --disable-rpath, also add patch disable-rpath because the boost
+    macro doesn't check for the configure switch.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 18 Feb 2008 23:27:31 +0100
+
+wesnoth (1:1.3.16-1) unstable; urgency=low
+
+  * New upstream release, upload to unstable now. Update Vcs-* fields in
+    debian/control appropriately.
+  * Removed both remaining patches, got applied upstream.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Tue, 12 Feb 2008 17:43:36 +0100
+
+wesnoth (1:1.3.15-1) experimental; urgency=low
+
+  * New upstream release (closes: #463521)
+  * Move -music and -editor in -all package from Depends to Recommends as
+    discussed with Cyril Brulebois.
+  * Add patch gcc-4.3-fix which contains an uncaught missing include in the
+    patch from #462708 which already got applied upstream (closes: #462708)
+  * Add TODO file about wesnoth-tools for now, don't create the package yet.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Fri, 01 Feb 2008 12:07:07 +0100
+
+wesnoth (1:1.3.14-1) experimental; urgency=low
+
+  * New upstream release.
+  * configure with --enable-python-install from now on as upstream suggests.
+  * Add Suggests on ttf-arphic-gkai00mp for Chinese support, and the font
+    symlink in wesnoth-data.
+  * Add images/footsteps to wesnoth-data.install, noticed by Andreas Tille,
+    thanks!
+  * Compile with -g and support DEB_BUILD_OPTIONS=noopt (closes: #459755)
+  * Create the links on our own instead of relying on dh_link which is removed
+    now completely (closes: #445550). dh_link is severily braindead enforcing
+    a should policy entry here on links it doesn't even create itself.
+  * Add lintian overrides for that.
+  * Also create wesnoth-nolog.6.gz -> wesnoth.6.gz symlinks for translated
+    manpages.
+  * Bump Replaces version on wesnoth-data to an epoched version
+    (closes: #456530)
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Fri, 18 Jan 2008 16:29:25 +0100
+
+wesnoth (1:1.3.13-1) experimental; urgency=low
+
+  * The "happy new year" new upstream release.
+  * Requires additional Build-Depends on libboost-test-dev and
+    libboost-iostreams-dev.
+  * New campain package wesnoth-thot: The Hammer of Thursagan.
+  * Bumped Standards-Version to 3.7.3, no further changes needed.
+  * Remove fix-manpage from patch series, applied upstream.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 31 Dec 2007 15:00:17 +0100
+
+wesnoth (1:1.3.12-1) experimental; urgency=medium
+
+  * New upstream release with a fix for a directory traversal problem in the
+    WML engine which could lead to sending arbitrary files [CVE-2007-5742].
+  * Server now supports reloading of config on SIGHUP, adding support for that
+    to the init.d script.
+  * Fixed a grammar issue in the package descriptions, closes: #446545
+  * (Re)work the dependency handling with respect to campaigns and
+    incompatibility in between different wesnoth versions: make the campaigns
+    depend on wesnoth with same Upstream-Version. This change was both
+    inspired by #447151 and Andreas Tille, thanks.
+  * Add wesnoth-all meta package which depends on all but the server packages
+    produced, closes: #449132
+  * Removed cruft package relationship handling from before the etch release.
+  * Removed cdbs dependency for easier maintenanceability of debian/rules, use
+    quilt as patch management.
+  * Removed XS- prefix from Vcs control fields.
+  * Bumped debhelper to compat 5.
+  * Add explicit Build-Depends on libsdl1.2-dev instead of depending on the
+    implicit pullin through the other libsdl Build-Dependencies.
+  * Added patches:
+    - fix-manpage: fix the wesnoth_editor manpage NAME syntax
+    - fix-desktop-files: remove obsoleted entries from .desktop files
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Sat, 01 Dec 2007 21:03:22 +0100
+
+wesnoth (1:1.3.9-3) experimental; urgency=low
+
+  * Reupload to experimental with epoch to work around an upload fumble
+    mentioned in #446505.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Sat, 13 Oct 2007 17:45:38 +0200
+
+wesnoth (1.3.9-2) unstable; urgency=high
+
+  * Remove wesnoth-icon.xpm from wesnoth-data package, closes: #446295
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Fri, 12 Oct 2007 11:03:00 +0200
+
+wesnoth (1.3.9-1) experimental; urgency=high
+
+  * New upstream release which fixes an insecure truncate of a multibyte chat
+    message that can lead to invalid utf-8 and throw an uncaught exception.
+    Both wesnoth client and server are affected [CVE-2007-3917].
+  * New campaign package: wesnoth-aoi
+  * manual.txt now shipped with upstream tarball directly.
+  * MANUAL* not shipped anymore.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Thu, 11 Oct 2007 11:52:45 +0200
+
+wesnoth (1.3.8-1) experimental; urgency=low
+
+  * New upstream release.
+  * Moved wesnoth-icon.xpm to wesnoth package itself, removed overrides and
+    added versioned Replaces on wesnoth-data for that.
+  * Install doc/manual/ stuff into doc directory, too.
+  * Added debian/wesnoth.doc-base file for registering the manual.
+  * Pulled debian/manual.txt source for manual.en.html file from upstream
+    repository.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 01 Oct 2007 15:56:26 +0200
+
+wesnoth (1.3.7-1) experimental; urgency=low
+
+  * New upstream release which includes fix for:
+    - crash in last Scepter of Fire scenario, closes: #438173
+  * Fixed the menu xpm files--somehow they were displayed b0rked while the
+    content was proper xpm, closes: #435874
+  * Added XS-Vcs-{Svn,Browser} lines to control file.
+  * Added Homepage: to control file, removed it from Package descriptions,
+    closes: #439574
+  * New campaign package: wesnoth-l
+  * Install the wesnoth_editor desktop file, closes: #423439
+  * Added LSB section to init.d script of wesnothd.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 27 Aug 2007 11:02:08 +0200
+
+wesnoth (1.3.6-1) experimental; urgency=low
+
+  * New upstream release, closes: #434346
+  * Added myself to Co-Maintainers. :)
+  * Added watch file tracking development releases.
+  * Updated config.{guess,sub}.
+  * wmlxgettext got removed from bin_SCRIPTS with good reasoning so we won't
+    install it anymore.
+  * New campaign packages: wesnoth-did, wesnoth-nr, wesnoth-sof, wesnoth-sotbe.
+  * Added binNMU patch from Lior Kaplan, closes: #432974
+  * Moved wesnoth-editor in the menu to Games/Tools.
+  * Generated wesnoth_editor-icon.xpm for the menu entry and reduced
+    wesnoth-icon.xpm to 32x32 as per menu policy recommended.
+  * Updated copyright informations.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 30 Jul 2007 20:59:58 +0200
+
+wesnoth (1.3.2-1) experimental; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Fri, 27 Apr 2007 13:49:26 +0200
+
+wesnoth (1.3.1-1) experimental; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Sun, 25 Feb 2007 20:54:24 +0100
+
+wesnoth (1.2.2-1) experimental; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Wed, 21 Feb 2007 13:59:26 +0100
+
+wesnoth (1.2.1-1) experimental; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Thu, 18 Jan 2007 08:31:34 +0100
+
+wesnoth (1.2-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Sun, 24 Dec 2006 11:42:08 +0100
+
+wesnoth (1.1.14-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Sun, 17 Dec 2006 16:12:33 +0100
+
+wesnoth (1.1.13-1) experimental; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Mon,  4 Dec 2006 08:11:18 +0100
+
+wesnoth (1.1.12-1) unstable; urgency=high
+
+  * Urgency high as it fixes a grave (crash) bug and a bunch of other
+    bugs reported to upstream (it's mainly a bugfix release)
+    In addition, it will be compatible to play multiplayer with
+    the upcoming 1.2 stable version, while 1.1.11 isn't
+  * New upstream release
+    * Fixes crash when opening contributors page, closes: #393563
+    * Adds a (hidden, as we are in string freeze) option to set the
+      frequency for music, closes: #357786
+
+ -- Isaac Clerencia <isaac@debian.org>  Thu,  9 Nov 2006 13:28:37 +0100
+
+wesnoth (1.1.11-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Wed,  4 Oct 2006 09:38:25 +0200
+
+wesnoth (1.1.10-1) unstable; urgency=low
+
+  * New upstream release,
+     closes: #385564 , segfault in Bay of Pearls when grabbing trident
+  * Move Depends: ttf-dejavu to wesnoth-data, closes: #386461
+  * Add symlink for Japanese font, closes: #385347
+
+ -- Isaac Clerencia <isaac@debian.org>  Thu, 21 Sep 2006 08:05:06 +0200
+
+wesnoth (1.1.9-1) unstable; urgency=low
+
+  * New upstream release
+  * Link wesnoth-icon.png from /usr/share/icons/, closes: #327822
+  * Use -f when removing pidfile in init.d script, so wesnothd stop doesn't
+    fail when wesnothd is stopped, closes: #369673, #381601
+
+ -- Isaac Clerencia <isaac@debian.org>  Sat, 26 Aug 2006 10:21:12 +0200
+
+wesnoth (1.1.8-1) unstable; urgency=low
+
+  * New upstream release,
+      closes: #374830: wesnoth crash when selecting 'Campaign' and no campaign
+      package is installed 
+  * Install all files in images/maps/ into wesnoth-data package,
+    closes: #377290
+
+ -- Isaac Clerencia <isaac@debian.org>  Wed, 26 Jul 2006 08:54:02 +0200
+
+wesnoth (1.1.7-1) unstable; urgency=low
+
+  * New upstream release (1.1.6 was skipped upstream)
+  * Bump Standard-Versions to 3.7.2, no changes required
+  * Keep wesnoth-data campaign recommendations up to date
+
+ -- Isaac Clerencia <isaac@debian.org>  Wed, 21 Jun 2006 14:45:22 +0200
+
+wesnoth (1.1.5-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Fri,  9 Jun 2006 18:33:49 +0200
+
+wesnoth (1.1.4-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Tue, 30 May 2006 11:48:11 +0200
+
+wesnoth (1.1.3-1) unstable; urgency=low
+
+  * New upstream release:
+    * fixes crash when opening Menu -> Help -> Contributors, closes: #366433
+
+ -- Isaac Clerencia <isaac@debian.org>  Wed, 24 May 2006 13:28:34 +0200
+
+wesnoth (1.1.2-1) unstable; urgency=low
+
+  * New upstream release, including two new campaigns (and thus, two new
+    packages)
+  * Include a copy of the GPL in a "Wesnoth help" format, to display it
+    correctly in game.
+
+ -- Isaac Clerencia <isaac@debian.org>  Wed, 22 Mar 2006 08:02:24 +0100
+
+wesnoth (1.1.1-3) unstable; urgency=low
+
+  * Include factions/ dir and other missing stuff in wesnoth-data, fixes
+    several problems
+
+ -- Isaac Clerencia <isaac@debian.org>  Thu,  9 Feb 2006 09:48:33 +0100
+
+wesnoth (1.1.1-2) unstable; urgency=low
+
+  * Revert wesnoth init.d --background change, as it breaks more things
+    than it fixes
+
+ -- Isaac Clerencia <isaac@debian.org>  Wed,  8 Feb 2006 09:02:12 +0100
+
+wesnoth (1.1.1-1) unstable; urgency=low
+
+  * New upstream release
+     * new campaigns: "Two Brothers" and recovered "The Dark Hordes"
+     * turn limit clock displayed correctly now, closes: #349143
+  * Use --daemon wesnoth option instead of --background start-stop-daemon
+    option to get wesnothd in the background
+  * Change campaign install files to follow the much nicer directory
+    structure
+  * Removed amd64 patch already applied upstream
+
+ -- Isaac Clerencia <isaac@debian.org>  Tue,  7 Feb 2006 09:34:07 +0100
+
+wesnoth (1.1-2) unstable; urgency=low
+
+  * Install missing .cfg files which caused a problem with team colors and
+    also closes: #337834 (missing test scenario file)
+  * Apply patch from upstream to fix build in amd64, according to patch
+    submitter the game might segfault later but it's an improvement anyway,
+    closes: #345960
+  * Enable fribidi support (--with-fribidi flag and libfribidi-dev b-d)
+
+ -- Isaac Clerencia <isaac@debian.org>  Fri,  6 Jan 2006 13:52:33 +0100
+
+wesnoth (1.1-1) unstable; urgency=low
+
+  * New upstream release
+  * Add python-dev to Build-Depends to enable Python API
+
+ -- Isaac Clerencia <isaac@debian.org>  Mon,  2 Jan 2006 18:38:45 +0100
+
+wesnoth (1.0.2-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Sun, 20 Nov 2005 14:11:03 +0100
+
+wesnoth (1.0.1-1) unstable; urgency=low
+
+  * New upstream release
+  * Disable libzipios++ support, fixes the "user campaigns appear twice" bug,
+    closes: #329378
+
+ -- Isaac Clerencia <isaac@debian.org>  Wed, 19 Oct 2005 22:29:57 +0200
+
+wesnoth (1.0-1) unstable; urgency=low
+
+  * New upstream release (1.0)
+
+ -- Isaac Clerencia <isaac@debian.org>  Sun,  2 Oct 2005 14:09:27 +0200
+
+wesnoth (0.99+1.0rc1-1) unstable; urgency=low
+
+  * New upstream release. Please note that:
+     * 1.0 versions have stripped uncomplete translations,
+       they will be restored in the 1.1 series
+     * The Dark Hordes campaign has been removed from the official tarball,
+       but it can still be found on the campaign server
+  * Suggest: ttf-sazanami-gothic, as it's required to play in Japanese
+  * Remove Suggests: ttf-arphic-gkai00mp, as Chinese translation has been
+    dropped upstream temporarily (see above)
+  * Drop the wesnoth-tdh package, as it's no longer supplied upstream
+    (see above)
+
+ -- Isaac Clerencia <isaac@debian.org>  Tue, 20 Sep 2005 00:23:24 +0200
+
+wesnoth (0.9.7-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Thu,  8 Sep 2005 09:42:08 +0200
+
+wesnoth (0.9.6-1) unstable; urgency=low
+
+  * New upstream release
+  * Switched packaging to CDBS
+  * Replace the old link for ttf-bitstream-vera with one to ttf-dejavu in
+    wesnoth-data.links
+  * Fix icon not being included in the package
+
+ -- Isaac Clerencia <isaac@debian.org>  Sun, 14 Aug 2005 12:21:07 +0200
+
+wesnoth (0.9.5-1) unstable; urgency=low
+
+  * New upstream release
+  * Update to policy 3.6.2, no changes required
+  * Adapt wesnoth-server init-script to LSB and depend on lsb-base
+  * Depend on ttf-dejavu font instead of ttf-bitstream-vera
+  * Don't force users to have a campaign installed, closes: #312568
+
+ -- Isaac Clerencia <isaac@debian.org>  Tue,  9 Aug 2005 10:59:47 +0200
+
+wesnoth (0.9.4-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Sat, 23 Jul 2005 13:04:46 +0200
+
+wesnoth (0.9.3-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Wed, 29 Jun 2005 23:01:04 +0200
+
+wesnoth (0.9.2-1) unstable; urgency=low
+
+  * New upstream release,
+       closes: #303799: wesnoth may lock when connecting to server 
+       closes: #306932: glitches in the french translation 
+  * Added replaces to campaigns packages, closes: #308358
+
+ -- Isaac Clerencia <isaac@debian.org>  Mon,  6 Jun 2005 00:14:37 +0200
+
+wesnoth (0.9.1-1) unstable; urgency=low
+
+  * New upstream release, 
+  	closes: #303796, no help for silver mage 
+        closes: #297500, resizing wesnoth doesn't work well
+  * Moved campaign translations to the right package
+  * Make campaigns provide wesnoth-campaign-<version>
+
+ -- Isaac Clerencia <isaac@debian.org>  Mon, 25 Apr 2005 10:42:12 +0200
+
+wesnoth (0.9.0-4) unstable; urgency=low
+
+  * Add a patch for an important upstream bug involving the Dark Adept unit
+  and other units
+  * Add dpatch as build-depends
+
+ -- Isaac Clerencia <isaac@debian.org>  Tue, 12 Apr 2005 08:17:54 +0200
+
+wesnoth (0.9.0-3) unstable; urgency=low
+
+  * Fix wesnoth-editor, wesnoth-data lacked wesnoth-editor.zip after switching
+  to zipios
+
+ -- Isaac Clerencia <isaac@debian.org>  Mon, 11 Apr 2005 22:30:08 +0200
+
+wesnoth (0.9.0-2) unstable; urgency=low
+
+  * Re-add translations to the packages, they were forgotten when moving
+  from dh_movefiles to dh_install
+
+ -- Isaac Clerencia <isaac@debian.org>  Mon, 11 Apr 2005 19:53:27 +0200
+
+wesnoth (0.9.0-1) unstable; urgency=low
+
+  * New upstream release:
+  	closes: #303801: wesnoth: in-game help GUI isn't very responsive 
+        
+  * Enable zipios support again
+  * Use dh_install instead of dh_movefiles
+  * Split campaigns in different packages
+
+ -- Isaac Clerencia <isaac@debian.org>  Sun, 10 Apr 2005 15:21:57 +0200
+
+wesnoth (0.8.11-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@debian.org>  Sun, 20 Feb 2005 11:30:20 +0100
+
+wesnoth (0.8.10-1) unstable; urgency=low
+
+  * New upstream release
+  * Removed zipios support (it's still buggy)
+
+ -- Isaac Clerencia <isaac@debian.org>  Sun,  6 Feb 2005 17:00:30 +0100
+
+wesnoth (0.8.9-1) unstable; urgency=low
+
+  * New upstream release
+  * Add zipios and zip Build-Depends
+  * Add README.Debian about wesnoth.debian.net
+
+ -- Isaac Clerencia <isaac@debian.org>  Wed, 26 Jan 2005 10:08:20 +0100
+
+wesnoth (0.8.8-1) unstable; urgency=low
+
+  * New upstream release, closes: #287058
+  * Improved init.d DESCription
+  * Moved /usr/games/wmlxgettext to /usr/bin/wesnothml-xgettext
+  * Added man page for wesnoth-nolog (link to wesnoth man page)
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Sun,  5 Dec 2004 13:06:03 +0100
+
+wesnoth (0.8.7-1) unstable; urgency=low
+
+  * New upstream release
+  * Changed Depend: on libsdl-ttf2.0-0 to libfreetype6 as now Wesnoth provides
+  a patched libsdl-ttf2 version in the tarball
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Mon,  1 Nov 2004 15:10:23 +0100
+
+wesnoth (0.8.5-1) unstable; urgency=high
+
+  * New upstream release.
+  * Added a wesnoth-nolog commands that just calls wesnoth with
+    output and error redirected to /dev/null, this is now the command called
+    from the menu, closes: #274802.
+  * Changed official server to wesnoth.debian.net. It will become the Sarge
+    server, running the Sarge version. Priority high because this is the
+    version targeted for Sarge (cross your fingers, please).
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Tue,  5 Oct 2004 21:51:12 +0200
+
+wesnoth (0.8.4-1) unstable; urgency=low
+
+  * New upstream release 
+  * Modified call to configure in debian/rules to follow some new
+    parameters in upstream configure
+  * Added a line in clean target to remove .mo files created during configure
+  * Use DESTDIR to make sure that it doesn't touch anything in the root
+    filesystem when the package is built, closes: #271356
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Sat, 11 Sep 2004 21:28:26 +0200
+
+wesnoth (0.8.3-1) unstable; urgency=low
+
+  * New upstream release, closes: #269078
+  * Modified debian/rules to add po files to wesnoth-data, as Wesnoth has
+  switched from ITS (Incompatible Translation System) to gettext
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Fri, 27 Aug 2004 20:11:06 +0200
+
+wesnoth (0.8.2-1) unstable; urgency=low
+
+  * New upstream release, including fixes for several DoS vulnerabilities
+    in wesnothd
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Sun, 15 Aug 2004 22:36:28 +0200
+
+wesnoth (0.8.1-2) unstable; urgency=low
+
+  * Fix FTBFS bug caused by an autoconf test which relied on
+    SDL_mixer private symbols (stripped in last SDL_mixer upload)
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Fri,  6 Aug 2004 13:05:41 +0200
+
+wesnoth (0.8.1-1) unstable; urgency=low
+
+  * New upstream release
+  * Upstream unit selection bug fixed, closes: #234998
+  * Patched with a CVS code snippet to fix a "packet of death" bug in
+    wesnothd
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Tue,  3 Aug 2004 12:51:16 +0200
+
+wesnoth (0.8-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Fri,  2 Jul 2004 15:43:29 +0200
+
+wesnoth (0.7.11-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Mon, 28 Jun 2004 20:59:04 +0200
+
+wesnoth (0.7.10-1) unstable; urgency=low
+
+  * New upstream release, closes: #254237
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Mon, 21 Jun 2004 02:23:15 +0200
+
+wesnoth (0.7.9-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Sat, 12 Jun 2004 00:51:26 +0200
+
+wesnoth (0.7.8-1) unstable; urgency=low
+
+  * New upstream release
+  * Removed --enable-gnome and copied the .desktop file by hand
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Fri, 28 May 2004 01:13:00 +0200
+
+wesnoth (0.7.7-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Thu, 20 May 2004 01:08:16 +0200
+
+wesnoth (0.7.6-2) unstable; urgency=low
+
+  * Fixed FTBFS bug in alpha, ia64 and s390
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Tue, 11 May 2004 23:29:51 +0200
+
+wesnoth (0.7.6-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Tue,  4 May 2004 10:32:47 +0200
+
+wesnoth (0.7.5-1) unstable; urgency=low
+
+  * New upstream release
+  * Upstream packed without --posix, closes: #245079
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Sat, 24 Apr 2004 22:28:53 +0200
+
+wesnoth (0.7.3-2) unstable; urgency=low
+
+  * Changed some descriptions
+  * wesnoth-data split into wesnoth-data and wesnoth-music
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Sat, 24 Apr 2004 20:28:38 +0200
+
+wesnoth (0.7.3-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Sun, 18 Apr 2004 15:45:57 +0200
+
+wesnoth (0.7.2-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Thu,  8 Apr 2004 21:31:52 +0200
+
+wesnoth (0.7.1-2) unstable; urgency=low
+
+  * Changed short and long descriptions
+  * Use dh_install and dh_movefiles instead of directly copying/moving
+    files from rules
+  * Added support for noopt and nostrip for DEB_BUILD_OPTIONS
+  * Removed clean from "make clean distclean" in rules clean target because 
+    distclean already calls clean target in Makefile
+  * Added support for cross compilation
+  * Wrapped some lines in debian/rules to 80 chars
+  * Changed several MANUAL entries in wesnoth.docs to MANUAL*
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Mon,  5 Apr 2004 20:19:27 +0200
+
+wesnoth (0.7.1-1) unstable; urgency=low
+
+  * New upstream release
+  * Added --enable-gnome in configuration to install .desktop files correctly
+  * Changed Priority from extra to optional, closes: #239155
+  * Now wesnoth-data is built in binary-indep, closes: #241063
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Sun,  4 Apr 2004 00:49:52 +0200
+
+wesnoth (0.7-1) unstable; urgency=low
+
+  * New upstream release
+  * Switched Maintainer and Co-maintainer roles
+  * Added .desktop file
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Fri, 19 Mar 2004 21:39:52 +0100
+
+wesnoth (0.6.99.5-1) unstable; urgency=low
+
+  * New upstream release
+       Units no longer get healed when saving, closes: #234974
+  * Moved data from /usr/share/games/wesnoth-data to /usr/share/games/wesnoth
+  * Added lintian override for menu icon in wesnoth-data for wesnoth package
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Mon, 15 Mar 2004 21:16:24 +0100
+
+wesnoth (0.6.99.4-1) unstable; urgency=low
+
+  * New upstream release
+  * Added menu icon to wesnoth-data, closes: #232913
+  * Updated Standards-Version to 3.6.1
+
+ -- Isaac Clerencia <isaac@sindominio.net>  Sat, 21 Feb 2004 21:08:18 +0100
+
+wesnoth (0.6.99.3-3) unstable; urgency=low
+
+  * Added Isaac Clerencia <isaac@sindominio.net> in the Uploaders field in
+    debian/control
+
+  * Added menu entry for wesnoth-editor on Ben Armstrong (SynrG) advice.
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Wed, 18 Feb 2004 21:56:37 +0100
+
+wesnoth (0.6.99.3-2) unstable; urgency=low
+
+  * Moved Vera.ttf symlink from wesnoth to wesnoth-data; bug reported from
+    Gerfried Fuchs (Rhonda).
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Sat, 14 Feb 2004 12:14:17 +0100
+
+wesnoth (0.6.99.3-1) unstable; urgency=low
+
+  * New upstream release (closes: #232571).
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Fri, 13 Feb 2004 21:46:11 +0100
+
+wesnoth (0.6.99.2-3) unstable; urgency=low
+
+  * wesnoth-editor: typo (closes: #226769).
+
+  * wesnoth: fixed lintian error.
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Thu, 12 Feb 2004 00:58:55 +0100
+
+wesnoth (0.6.99.2-2) unstable; urgency=low
+
+  * wesnoth-data: replaced Vera.ttf by a symlink. Added dependency to
+    ttf-bitstream-vera (closes: #231757).
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Sun,  8 Feb 2004 21:15:17 +0100
+
+wesnoth (0.6.99.2-1) unstable; urgency=low
+
+  * New upstream release (closes: #230547).
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Thu,  5 Feb 2004 12:07:21 +0100
+
+wesnoth (0.6.99.1-1) unstable; urgency=low
+
+  * New upstream release (closes: #224460).
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Thu, 29 Jan 2004 02:24:00 +0100
+
+wesnoth (0.6.1-3) unstable; urgency=low
+
+  * Added wesnoth_editor (closes: #224810).
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Thu, 25 Dec 2003 16:41:16 +0100
+
+wesnoth (0.6.1-2) unstable; urgency=low
+
+  * wesnoth-data: moved files from /usr/share/wesnoth-data to
+    /usr/share/games/wesnoth-data (closes: #224289).
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Wed, 17 Dec 2003 18:43:18 +0100
+
+wesnoth (0.6.1-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Tue, 16 Dec 2003 14:49:13 +0100
+
+wesnoth (0.6-2) unstable; urgency=low
+
+  * The red wine release.
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Sat, 13 Dec 2003 00:02:10 +0100
+
+wesnoth (0.6-1) unstable; urgency=low
+
+  * New upstream release
+  * Run wesnothd as nobody
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Fri, 12 Dec 2003 14:24:51 +0100
+
+wesnoth (0.5.1-3) unstable; urgency=low
+
+  * Fixed dependency (closes: #220862, #217508, #217526).
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Sat, 29 Nov 2003 03:43:42 +0100
+
+wesnoth (0.5.1-2) unstable; urgency=low
+
+  * Added dependency to wesnoth-data with explicit version number.
+  * Better description thanks to Benjamin Drieur, our cosmetic assistant ;-)
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Fri, 14 Nov 2003 03:31:48 +0100
+
+wesnoth (0.5.1-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Mon, 10 Nov 2003 02:20:16 +0100
+
+wesnoth (0.5-2) unstable; urgency=low
+
+  * Fixed init.d for wesnoth-server
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Mon, 10 Nov 2003 02:03:37 +0100
+
+wesnoth (0.5-1) unstable; urgency=low
+
+  * New upstream release (closes: #217561).
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Mon,  3 Nov 2003 13:25:49 +0100
+
+wesnoth (0.4.8-3) unstable; urgency=low
+
+  * Added Debian menu entry so it appears in everybody's window managers
+    under the Games menu (closes: #217606).
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Sun, 26 Oct 2003 11:27:11 +0100
+
+wesnoth (0.4.8-2) unstable; urgency=low
+
+  * Added dependency to wesnoth-data (closes: #217212).
+
+  * Removed README (closes: #217213).
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Sat, 25 Oct 2003 16:14:21 +0200
+
+wesnoth (0.4.8-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Cyril Bouthors <cyril@bouthors.org>  Tue, 14 Oct 2003 14:10:24 +0200
+
--- wesnoth-1.6.5.orig/debian/wesnoth-data.install
+++ wesnoth-1.6.5/debian/wesnoth-data.install
@@ -0,0 +1,28 @@
+icons/wesnoth-icon.png /usr/share/icons
+icons/wesnoth_editor-icon.png /usr/share/icons
+debian/tmp/usr/share/games/wesnoth/data/*.cfg
+debian/tmp/usr/share/games/wesnoth/data/COPYING.txt
+debian/tmp/usr/share/games/wesnoth/data/ai
+debian/tmp/usr/share/games/wesnoth/data/campaigns/tutorial
+debian/tmp/usr/share/games/wesnoth/data/core/*.cfg
+debian/tmp/usr/share/games/wesnoth/data/core/README
+debian/tmp/usr/share/games/wesnoth/data/core/editor
+debian/tmp/usr/share/games/wesnoth/data/core/images
+debian/tmp/usr/share/games/wesnoth/data/core/macros
+debian/tmp/usr/share/games/wesnoth/data/core/sounds
+debian/tmp/usr/share/games/wesnoth/data/core/terrain-graphics
+debian/tmp/usr/share/games/wesnoth/data/core/units
+debian/tmp/usr/share/games/wesnoth/data/gui
+debian/tmp/usr/share/games/wesnoth/data/hardwired
+debian/tmp/usr/share/games/wesnoth/data/languages
+debian/tmp/usr/share/games/wesnoth/data/multiplayer
+debian/tmp/usr/share/games/wesnoth/data/themes
+debian/tmp/usr/share/games/wesnoth/images
+debian/tmp/usr/share/games/wesnoth/sounds
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-editor.mo
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-lib.mo
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-multiplayer.mo
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-tutorial.mo
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-units.mo
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth.mo
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-anl.mo
--- wesnoth-1.6.5.orig/debian/control
+++ wesnoth-1.6.5/debian/control
@@ -0,0 +1,377 @@
+Source: wesnoth
+Section: games
+Priority: optional
+Maintainer: Debian Games Team <pkg-games-devel@lists.alioth.debian.org>
+Build-Depends: debhelper (>= 7), quilt, libsdl-image1.2-dev, libfreetype6-dev,
+  libsdl-mixer1.2-dev, libsdl-net1.2-dev, libfribidi-dev, libsdl1.2-dev,
+  libsdl-ttf2.0-dev (>= 2.0.8), python-support,
+  libboost-iostreams-dev, libboost-test-dev, libboost-regex-dev,
+  libpango1.0-dev
+Standards-Version: 3.8.3
+Uploaders: Isaac Clerencia <isaac@debian.org>, Cyril Bouthors <cyril@bouthors.org>, Gerfried Fuchs <rhonda@debian.at>
+Homepage: http://wesnoth.org/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/wesnoth/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/wesnoth/?op=log
+
+Package: wesnoth-data
+Architecture: all
+Depends: ttf-dejavu
+Replaces: wesnoth-editor (<< 1:1.5.4-1)
+Recommends: ttf-wqy-zenhei (>= 0.8.38-1)
+Suggests: wesnoth-music
+Description: data files for Wesnoth
+ This package contains the sound files and graphics for Wesnoth. It is required
+ for being able to play wesnoth or create maps with the editor.
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-core
+Architecture: any
+Depends: ${shlibs:Depends}, wesnoth-data (= ${source:Version})
+Replaces: wesnoth-data (<< 1:1.3.9-3), wesnoth-editor (<< 1:1.5.4-1), wesnoth (<< 1:1.5.5-1)
+Provides: wesnoth-editor
+Conflicts: wesnoth-editor (<< 1:1.5.4-1), wesnoth (<< 1:1.5.5-1)
+Recommends: wesnoth-ttb, wesnoth-httt, wesnoth-tsg
+Suggests: wesnoth
+Description: fantasy turn-based strategy game
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+ .
+ Please note that this package recommends only three of the official campaigns,
+ those that are considered to be an introduction to the game. They are just
+ recommended but not depended on - quite some people enjoy the multiplayer mode
+ for which they aren't needed. If you want to have all the official campaigns
+ installed you are encouraged to install wesnoth.
+
+Package: wesnoth-editor
+Architecture: all
+Depends: wesnoth-core (>= ${source:Version}), wesnoth-data (= ${source:Version})
+Description: map editor for Wesnoth - transitional package
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+ .
+ This package used to contain the map editor for Wesnoth. It was incorporated
+ into the main program so this package has become useless. Please use the
+ integrated editor in the main wesnoth binary. You can savely remove this
+ package after the upgrade.
+
+Package: wesnoth-dbg
+Section: debug
+Architecture: any
+Priority: extra
+Depends: wesnoth-core (= ${binary:Version}), wesnoth-data (= ${source:Version})
+Description: fantasy turn-based strategy game (debugging symbols)
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+ .
+ This package contains the debugging symbols for the wesnoth binaries.
+
+Package: wesnoth
+Architecture: all
+Depends: wesnoth-core (>= ${binary:Version}), wesnoth-core (<< ${binary:Version}.~),
+  wesnoth-data (= ${source:Version}),
+  wesnoth-httt (= ${source:Version}), wesnoth-tsg (= ${source:Version}),
+  wesnoth-trow (= ${source:Version}), wesnoth-ttb (= ${source:Version}),
+  wesnoth-ei (= ${source:Version}), wesnoth-utbs (= ${source:Version}),
+  wesnoth-did (= ${source:Version}), wesnoth-nr (= ${source:Version}),
+  wesnoth-sof (= ${source:Version}), wesnoth-sotbe (= ${source:Version}),
+  wesnoth-l (= ${source:Version}), wesnoth-aoi (= ${source:Version}),
+  wesnoth-thot (= ${source:Version}), wesnoth-low (= ${source:Version}) 
+Replaces: wesnoth-all (<< 1:1.5.5-1)
+Provides: wesnoth-all
+Conflicts: wesnoth-all (<< 1:1.5.5-1)
+Recommends: wesnoth-music (= ${source:Version})
+Description: fantasy turn-based strategy game - complete suite
+ This package depends on the complete set of packages built from the wesnoth
+ source package but the server (which can be found in the wesnoth-server
+ package), most helpful if you always want to have all the official campaigns
+ installed. If you only want to play over the network with other players or
+ want to play only a few campaigns you just need to install the wesnoth-core
+ package and the corresponding campaign packages.
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-all
+Architecture: all
+Depends: wesnoth (= ${source:Version}), wesnoth-data (= ${source:Version})
+Description: complete campaign suite for Wesnoth - transitional package
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+ .
+ This package used to contain the depending package for all the official
+ campaigns for Wesnoth. It was renamed to wesnoth to reduce the confusion on
+ users expecting to get all the official campaigns on installing the wesnoth
+ package. You can savely remove this package after the upgrade.
+
+Package: wesnoth-music
+Architecture: all
+Description: music files for Wesnoth
+ This package contains the music files for Wesnoth. It is not required but
+ gives nice background music and encouraged.
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-server
+Architecture: any
+Depends: ${shlibs:Depends}, lsb-base
+Description: multiplayer network server for Wesnoth
+ This package contains the multiplayer network server for Wesnoth. You need it
+ if you want to host multiplayer games on your computer and don't want to use
+ the official servers.
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-tools
+Architecture: all
+Depends: ${shlibs:Depends}, ${python:Depends}, wesnoth-data (= ${source:Version})
+Description: tools for campaign developers for Wesnoth
+ This package contains various tools for Wesnoth that are especially useful for
+ campaign developers, including but not limited to scripts supporting the
+ generation and checking of WML (Wesnoth Markup Language). You can find them in
+ the directory /usr/share/games/wesnoth/data/tools after installation of the
+ package.
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-httt
+Depends: wesnoth-core (>= ${wesnoth:Stable-Version}), wesnoth-core (<< ${wesnoth:Next-Version})
+Architecture: all
+Description: "Heir to the Throne" official campaign for Wesnoth
+ This package contains the "Heir to the Throne" campaign for Wesnoth:
+ "Fight to regain the throne of Wesnoth, of which you are the legitimate
+ heir."
+ (Novice level, 25 scenarios.)
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-tsg
+Depends: wesnoth-core (>= ${wesnoth:Stable-Version}), wesnoth-core (<< ${wesnoth:Next-Version})
+Architecture: all
+Description: "The South Guard" official campaign for Wesnoth
+ This package contains the "The South Guard" campaign for Wesnoth:
+ "A young Knight, Deoran, is dispatched to take command of the South Guard...
+ Note: This campaign is designed as an introduction to Wesnoth. The 'Civilian'
+ difficulty level is aimed at first-time players."
+ (Novice level, 9 or 10 scenarios depending on the branch you take.)
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-trow
+Depends: wesnoth-core (>= ${wesnoth:Stable-Version}), wesnoth-core (<< ${wesnoth:Next-Version})
+Architecture: all
+Description: "The Rise of Wesnoth" official campaign for Wesnoth
+ This package contains the "The Rise of Wesnoth" campaign for Wesnoth:
+ "Lead Prince Haldric through the destruction of the Green Isle and across the
+ Ocean to establish the very kingdom of Wesnoth itself. The confrontation with
+ Lich-Lord Jevyan awaits..."
+ (Intermediate level, 25 scenarios.)
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-ttb
+Depends: wesnoth-core (>= ${wesnoth:Stable-Version}), wesnoth-core (<< ${wesnoth:Next-Version})
+Architecture: all
+Description: "A Tale of Two Brothers" official campaign for Wesnoth
+ This package contains the "A Tale of Two Brothers" campaign for Wesnoth:
+ "An evil mage is threatening the local village and its inhabitants. When their
+ leader Bjarn sends for aid from his brother Arne, he is victorious, but Bjarn
+ himself is kidnapped. Can you rescue him?"
+ (Novice level, 4 scenarios; the 'Hard' version may challenge more experienced
+ players.)
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-ei
+Depends: wesnoth-core (>= ${wesnoth:Stable-Version}), wesnoth-core (<< ${wesnoth:Next-Version})
+Architecture: all
+Description: "The Eastern Invasion" official campaign for Wesnoth
+ This package contains the "The Eastern Invasion" campaign for Wesnoth:
+ "There are rumors of undead attacks on the eastern border of Wesnoth. You, an
+ officer in the Royal Army, have been sent to the eastern front to protect the
+ villagers and find out what is happening."
+ (Intermediate level, 18 scenarios.)"
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-utbs
+Depends: wesnoth-core (>= ${wesnoth:Stable-Version}), wesnoth-core (<< ${wesnoth:Next-Version})
+Architecture: all
+Description: "Under the Burning Suns" official campaign for Wesnoth
+ This package contains the "Under the Burning Suns" campaign for Wesnoth:
+ "In the distant future a small band of elves struggles to survive amidst the
+ ruins of fallen empires. Lead your people out of the desert on an epic journey
+ to find a new home."
+ (Expert level, 11 scenarios, some under reconstruction)
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-did
+Depends: wesnoth-core (>= ${wesnoth:Stable-Version}), wesnoth-core (<< ${wesnoth:Next-Version})
+Architecture: all
+Description: "Descent Into Darkness" official campaign for Wesnoth
+ This package contains the "Descent Into Darkness" campaign for Wesnoth:
+ "Learn the dark arts of necromancy in order to save your people from an orcish
+ incursion."
+ (Expert level, 11 scenarios.)
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-nr
+Depends: wesnoth-core (>= ${wesnoth:Stable-Version}), wesnoth-core (<< ${wesnoth:Next-Version})
+Architecture: all
+Description: "Northern Rebirth" official campaign for Wesnoth
+ This package contains the "Northern Rebirth" campaign for Wesnoth:
+ "For the people of Dwarven Doors the choice was stark: either drudge as
+ downtrodden slaves for the orcs until the end of their brief and miserable
+ lives, or risk all for freedom and rise up against their cruel overlords.
+ Little did they suspect that their struggle would be the hinge of great events
+ that might restore the Northlands to the glory they had once known."
+ (Expert level, 14 scenarios.)
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-sof
+Depends: wesnoth-core (>= ${wesnoth:Stable-Version}), wesnoth-core (<< ${wesnoth:Next-Version})
+Architecture: all
+Description: "The Sceptre of Fire" official campaign for Wesnoth
+ This package contains the "The Sceptre of Fire" campaign for Wesnoth:
+  "The land of Wesnoth's banner bold
+  Comes not from its own land;
+  It comes from Dwarfdom, grim and old
+  Made by a runesmith's hand.
+  So now I tell from whence it came -
+  The Fire-sceptre great -
+  And of the makers of the same,
+  Their tale I now relate..."
+ (Expert level, 9 scenarios.)
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-sotbe
+Depends: wesnoth-core (>= ${wesnoth:Stable-Version}), wesnoth-core (<< ${wesnoth:Next-Version})
+Architecture: all
+Description: "Son of the Black-Eye" official campaign for Wesnoth
+ This package contains the "Son of the Black-Eye" campaign for Wesnoth:
+ "Your father Karun Black-Eye was the greatest orcish leader that ever lived.
+ Now, as his son, it's up to you to thwart the selfish designs of the humans
+ who have broken the old agreements with the orcs and are bent upon taking your
+ lands. Unite the warring orcish tribes, bring together the Orcish Council and
+ call up the Great Horde to send the human-worms and their tree-shagger allies
+ to the land of the dead!"
+ (Expert level, 18 scenarios.)
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-l
+Depends: wesnoth-core (>= ${wesnoth:Stable-Version}), wesnoth-core (<< ${wesnoth:Next-Version})
+Architecture: all
+Description: "Liberty" official campaign for Wesnoth
+ This package contains the "Liberty" campaign for Wesnoth:
+ "As the shadow of civil war lengthens across Wesnoth, a band of hardy
+ marchlanders revolts against the tyranny of Queen Asheviere. To win their way
+ to freedom, they must defeat not just the trained blades of Wesnothian troops
+ but darker foes including orcs and undead."
+ (Intermediate level, 9 scenarios)
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-aoi
+Depends: wesnoth-core (>= ${wesnoth:Stable-Version}), wesnoth-core (<< ${wesnoth:Next-Version})
+Architecture: all
+Description: "An Orcish Incursion" official campaign for Wesnoth
+ This package contains the "An Orcish Incursion" campaign for Wesnoth:
+ "Defend the forests of the elves against the first orcs to reach the Great
+ Continent, learning valuable tactics as you do so."
+ (Novice level, 7 scenarios.)
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-thot
+Depends: wesnoth-core (>= ${wesnoth:Stable-Version}), wesnoth-core (<< ${wesnoth:Next-Version})
+Architecture: all
+Description: "The Hammer of Thursagan" official campaign for Wesnoth
+ This package contains the "The Hammer of Thursagan" campaign for Wesnoth:
+ "In the first years of the Northern Alliance, an expedition from Knalga seeks
+ out their kin at Kal Kartha and to learn the fate of the legendary Hammer of
+ Thursagan. The perils of their journey through the wild Northern Lands, though
+ great, pale beside the evil they will face at its end."
+ (Intermediate level, 13 scenarios.)
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
+
+Package: wesnoth-low
+Depends: wesnoth-core (>= ${wesnoth:Stable-Version}), wesnoth-core (<< ${wesnoth:Next-Version})
+Architecture: all
+Description: "Legend of Wesmere" official campaign for Wesnoth
+ This package contains the "Legend of Wesmere" campaign for Wesnoth:
+ "The tale of Kalenz, the High Lord who rallied his people after the second
+ orcish invasion of the Great Continent and became the most renowned hero in
+ the recorded history of the Elves."
+ (Intermediate level, 17 playable scenarios.)
+ .
+ Battle for control of villages, using variety of units which have advantages
+ and disadvantages in different types of terrains and against different types
+ of attacks.  Units gain experience and advance levels, and are carried over
+ from one scenario to the next in a campaign.
--- wesnoth-1.6.5.orig/debian/copyright
+++ wesnoth-1.6.5/debian/copyright
@@ -0,0 +1,179 @@
+This package was originally debianized by Cyril Bouthors <cyril@bouthors.org>
+on Tue, 14 Oct 2003 14:10:24 +0200.  It got maintained in the meantime also by
+Isaac Clerencia <isaac@sindominio.net> and is now looked after by
+Gerfried Fuchs <rhonda@debian.at>. The debianization is licensed under
+BSD style, see /usr/share/common-licenses/BSD.
+
+It was downloaded from http://www.wesnoth.org/
+
+Upstream Author: David White <davidnwhite@comcast.net>
+
+Note that there are far more contributors in Wesnoth that the ones listed here:
+
+Copyright (C) 2003 - 2009 by David White <dave@whitevine.net>
+Copyright (C) 2004 - 2009 by Guillaume Melquiond <guillaume.melquiond@gmail.com>
+Copyright (C) 2004 - 2009 by Philippe Plantier <ayin@anathas.org>
+Copyright (C) 2005 - 2009 by Yann Dirson <ydirson@altern.org>
+Copyright (C) 2005 - 2007 by Isaac Clerencia <isaac@sindominio.net>
+Copyright (C) 2005 - 2009 by Joerg Hinrichs <joerg.hinrichs@alice-dsl.de>
+Copyright (C) 2005 - 2009 by Joeri Melis <joeri_melis@hotmail.com>
+Copyright (C) 2005 - 2009 by Rusty Russell <rusty@rustcorp.com.au>
+Copyright (C) 2006 - 2009 by Dominic Bolin <dominic.bolin@exong.net>
+Copyright (C) 2006 - 2009 by Jeremy Rosen <jeremy.rosen@enst-bretagne.fr>
+Copyright (C) 2006 - 2009 by Karol Nowak <grzywacz@sul.uni.lodz.pl>
+Copyright (C) 2006 - 2009 by Mark de Wever <koraq@xs4all.nl>
+Copyright (C) 2006 - 2009 by Patrick Parker <patrick_x99@hotmail.com>
+Copyright (C) 2007 - 2009 by Benoit Timbert <benoit.timbert@free.fr>
+Copyright (C) 2008 - 2009 by Ignacio R. Morelle <shadowm2006@gmail.com>
+Copyright (C) 2008 - 2009 by Pauli Nieminen <paniemin@cc.hut.fi>
+Copyright (C) 2008 - 2009 by Thomas Baumhauer <thomas.baumhauer@NOSPAMgmail.com>
+Copyright (C) 2008 - 2009 by Tomasz Sniatowski <kailoran@gmail.com>
+Copyright (C) 2009 by Bartosz Waresiak <dragonking@o2.pl>
+Copyright (C) 2009 by Chris Hopman <cjhopman@gmail.com>
+Copyright (C) 2009 by Daniel Franke.
+Copyright (C) 2009 by Eugen Jiresch
+Copyright (C) 2009 by Greg Shikhman <cornmander@cornmander.com>
+Copyright (C) 2009 by Yurii Chernyi <terraninfo@terraninfo.net>
+
+
+License:
+        Copyright (C) 2003 - 2007 by David White <dave@whitevine.net>
+
+        This program is free software; you can redistribute it and/or modify
+        it under the terms of the GNU General Public License version 2
+        or at your option any later version.
+        This program is distributed in the hope that it will be useful,
+        but WITHOUT ANY WARRANTY.
+
+On Debian systems, the complete text of the GNU General Public
+License can be found in /usr/share/common-licenses/GPL-2 file,
+later versions can be found in the same directory.
+
+        -----
+
+        src/sdl_ttf/ is Copyright (C) 1997-2004 by Sam Lantinga
+
+        This library is free software; you can redistribute it and/or
+        modify it under the terms of the GNU Library General Public
+        License as published by the Free Software Foundation; either
+        version 2 of the License, or (at your option) any later version.
+        
+        This library is distributed in the hope that it will be useful,
+        but WITHOUT ANY WARRANTY; without even the implied warranty of
+        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+        Library General Public License for more details.
+
+On Debian systems, the complete text of the GNU Library General
+Public License can be found in /usr/share/common-licenses/LGPL-2 file,
+later versions can be found in the same directory.
+
+        -----
+        
+        fonts/ is Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.
+        Bitstream Vera is a trademark of Bitstream, Inc.
+        
+        Permission is hereby granted, free of charge, to any person obtaining a
+        copy of the fonts accompanying this license ("Fonts") and associated
+        documentation files (the "Font Software"), to reproduce and distribute
+        the Font Software, including without limitation the rights to use,
+        copy, merge, publish, distribute, and/or sell copies of the Font
+        Software, and to permit persons to whom the Font Software is furnished
+        to do so, subject to the following conditions:
+        
+        The above copyright and trademark notices and this permission notice
+        shall be included in all copies of one or more of the Font Software
+        typefaces.
+        
+        The Font Software may be modified, altered, or added to, and in
+        particular the designs of glyphs or characters in the Fonts may be
+        modified and additional glyphs or characters may be added to the Fonts,
+        only if the fonts are renamed to names not containing either the words
+        "Bitstream" or the word "Vera".
+        
+        This License becomes null and void to the extent applicable to Fonts or
+        Font Software that has been modified and is distributed under the
+        "Bitstream Vera" names.
+        
+        The Font Software may be sold as part of a larger software package but
+        no copy of one or more of the Font Software typefaces may be sold by
+        itself.
+        
+        THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+        EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+        MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+        OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL
+        BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR
+        OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL,
+        OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+        OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT
+        SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
+        
+        Except as contained in this notice, the names of Gnome, the Gnome
+        Foundation, and Bitstream Inc., shall not be used in advertising or
+        otherwise to promote the sale, use or other dealings in this Font
+        Software without prior written authorization from the Gnome Foundation
+        or Bitstream Inc., respectively. For further information, contact:
+        fonts at gnome dot org.
+
+        -----
+
+        data/tools/addon_manager/jquery.js
+
+        * Copyright (c) 2008 John Resig (jquery.com)
+        * Dual licensed under the MIT (MIT-LICENSE.txt)
+        * and GPL (GPL-LICENSE.txt) licenses.
+
+        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 AUTHORS OR COPYRIGHT HOLDERS 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.
+
+On Debian systems, the complete text of the GNU Library General
+Public License can be found in /usr/share/common-licenses/LGPL-2 file,
+later versions can be found in the same directory.
+
+        -----
+
+        data/tools/addon_manager/tablesorter.js
+
+        * Copyright (c) 2007 Christian Bach
+        * Dual licensed under the MIT and GPL licenses:
+        * http://www.opensource.org/licenses/mit-license.php
+        * http://www.gnu.org/licenses/gpl.html
+
+        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 AUTHORS OR COPYRIGHT HOLDERS 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.
+
+On Debian systems, the complete text of the GNU Library General
+Public License can be found in /usr/share/common-licenses/LGPL-2 file,
+later versions can be found in the same directory.
--- wesnoth-1.6.5.orig/debian/wesnoth.postinst
+++ wesnoth-1.6.5/debian/wesnoth.postinst
@@ -0,0 +1,15 @@
+#!/bin/sh -e
+# postinst script for wesnoth
+# copyright 2008 by Gerfried Fuchs <rhonda@debian.at>
+# Licenced the same way as wesnoth itself
+
+if dpkg --compare-versions "$version" lt-nl 1:1.4.1-2 \
+	&& [ "$1" = configure ] \
+	&& [ ! -L /usr/share/doc/wesnoth ] \
+	&& [ -d /usr/share/doc/wesnoth ] \
+	&& rmdir /usr/share/doc/wesnoth 2>/dev/null ; then
+
+	ln -s wesnoth-data /usr/share/doc/wesnoth
+fi
+
+#DEBHELPER#
--- wesnoth-1.6.5.orig/debian/wesnoth_editor-icon.xpm
+++ wesnoth-1.6.5/debian/wesnoth_editor-icon.xpm
@@ -0,0 +1,225 @@
+/* XPM */
+static char *wesnoth_editor-icon[] = {
+/* columns rows colors chars-per-pixel */
+"32 32 187 2",
+"   c black",
+".  c #080706",
+"X  c #0A0907",
+"o  c #0D0C0B",
+"O  c #110C06",
+"+  c #110F0C",
+"@  c #13110E",
+"#  c #18140D",
+"$  c #141311",
+"%  c #181713",
+"&  c #1D1A15",
+"*  c #1C1C1B",
+"=  c #1F201F",
+"-  c #251D14",
+";  c #25221C",
+":  c #2B2214",
+">  c #29241C",
+",  c #342D1E",
+"<  c #392F1F",
+"1  c #232221",
+"2  c #292725",
+"3  c #2C2821",
+"4  c #2F2E2B",
+"5  c #312B22",
+"6  c #302F2D",
+"7  c #34302A",
+"8  c #3F3625",
+"9  c #3A342B",
+"0  c #3F392E",
+"q  c #333330",
+"w  c #3C3A34",
+"e  c #47371F",
+"r  c #433623",
+"t  c #41362A",
+"y  c #423924",
+"u  c #433B2A",
+"i  c #423F36",
+"p  c #45423C",
+"a  c #4C4435",
+"s  c #48443C",
+"d  c #4C483D",
+"f  c #5B472E",
+"g  c #524B39",
+"h  c #5D4E33",
+"j  c #5F533F",
+"k  c #665339",
+"l  c #69543B",
+"z  c #705D3A",
+"x  c #4C4B44",
+"c  c #524D43",
+"v  c #545047",
+"b  c #575349",
+"n  c #5E5544",
+"m  c #5A564B",
+"M  c #615744",
+"N  c #655C44",
+"B  c #60594C",
+"V  c #625E53",
+"C  c #775F4A",
+"Z  c #6A614E",
+"A  c #656155",
+"S  c #6B6454",
+"D  c #6A655A",
+"F  c #6F695D",
+"G  c #73654D",
+"H  c #7B6643",
+"J  c #716750",
+"K  c #756C56",
+"L  c #716B5D",
+"P  c #7A6D5C",
+"I  c #7B7254",
+"U  c #736D61",
+"Y  c #767062",
+"T  c #77736C",
+"R  c #7B7364",
+"E  c #7F7869",
+"W  c #8A6C4C",
+"Q  c #816750",
+"!  c #81755E",
+"~  c #86795F",
+"^  c #887356",
+"/  c #8B7953",
+"(  c #967358",
+")  c #947B56",
+"_  c #937A5B",
+"`  c #9A7F56",
+"'  c #9F7D5D",
+"]  c #847662",
+"[  c #827B64",
+"{  c #847D6D",
+"}  c #8E7F63",
+"|  c #897F6C",
+" . c #877F71",
+".. c #927C61",
+"X. c #9B865C",
+"o. c #8F8267",
+"O. c #89816F",
+"+. c #878171",
+"@. c #8C8474",
+"#. c #8F8977",
+"$. c #928264",
+"%. c #908569",
+"&. c #9C8462",
+"*. c #9E8A63",
+"=. c #9C8C6C",
+"-. c #938B7B",
+";. c #9A8D71",
+":. c #988E7D",
+">. c #97907E",
+",. c #9A927D",
+"<. c #A28A5E",
+"1. c #A78E6B",
+"2. c #A79267",
+"3. c #AF9763",
+"4. c #AB956B",
+"5. c #A69677",
+"6. c #A0977E",
+"7. c #AB9773",
+"8. c #AA9975",
+"9. c #B18F6D",
+"0. c #B0916C",
+"q. c #B69B67",
+"w. c #B59C6E",
+"e. c #BA9E6E",
+"r. c #B59573",
+"t. c #B09E73",
+"y. c #B29E79",
+"u. c #B99772",
+"i. c #BB9C74",
+"p. c #BDA26C",
+"a. c #B1A175",
+"s. c #B6A47B",
+"d. c #BFA477",
+"f. c #BCA47C",
+"g. c #C1A66E",
+"h. c #C2A86F",
+"j. c #C0A570",
+"k. c #C0A37B",
+"l. c #C5AC74",
+"z. c #C5AB7C",
+"x. c #C8AD7A",
+"c. c #C7B074",
+"v. c #C8B075",
+"b. c #CCB47D",
+"n. c #CEB87D",
+"m. c #D0B97E",
+"M. c #9C9483",
+"N. c #A09787",
+"B. c #A19884",
+"V. c #A49C8B",
+"C. c #A89F8D",
+"Z. c #A9A18F",
+"A. c #ACA392",
+"S. c #B9A786",
+"D. c #BDAD86",
+"F. c #BCAD8C",
+"G. c #B1A796",
+"H. c #B1A897",
+"J. c #B5AC9B",
+"K. c #C4AB82",
+"L. c #C7B181",
+"P. c #C2B38D",
+"I. c #CCB580",
+"U. c #CBB68B",
+"Y. c #CFB983",
+"T. c #CEBB93",
+"R. c #D0B583",
+"E. c #D2BC85",
+"W. c #D4BD8B",
+"Q. c #D3BD91",
+"!. c #D6C18C",
+"~. c #D9C38E",
+"^. c #DBC692",
+"/. c #DAC599",
+"(. c #DDC996",
+"). c #DFCA99",
+"_. c #DFCCA5",
+"`. c #E0CB97",
+"'. c #E2CD9C",
+"]. c #E5D09D",
+"[. c #E0CCA2",
+"{. c #E6D2A3",
+"}. c #E7D3A8",
+"|. c #E9D5A5",
+" X c #EAD6AA",
+".X c #EEDAAB",
+"XX c None",
+/* pixels */
+"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX. O # n i XXXXXXXXXXXXXX",
+"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX. + # i ..1.k.^ . XXXXXXXXXXXX",
+"XXXXXXXXXXXXXXXXXXXXXXXX  # > @ 3 ] y.7.r.r.K.9.W # XXXXXXXXXXXX",
+"XXXXXXXXXXXXXXXXXX  . @ g 8.K.s.T. X XW.u.u.W.K.u.r XXXXXXXXXXXX",
+"XXXXXXXXXX. o 5 g M %.8.!.'.^.~.'..X}.K.i.i.K.u.z.l   XXXXXXXXXX",
+"XXXXX o 3 ! 7.U./.^.'.^.!.!.E.W.^.|.'.d.0.K.W.k.Q.` : XXXXXXXXXX",
+"$ p U -.:.K.Y.~.~.~.^.E.E.W.E.W.W.^.^.' ( k.Q.^.'.w.r XX  . XXXX",
+"p V.H.A.M.5.x.x.!.!.^.(.~.!.~.W.E.E.E.r.i.K.Q.{.{.f.< XX& i O XX",
+"$  .G.V.-.O.=.x.b.b.b.Y.E.E.^.!.E.E.E.^.).'.].].^.[.X.5 6 - - . ",
+"X U Z.M.-.-.#.=.4.X.*.e.b.E.~.^.!.m.n.W.`.^.~.^.(.}.U.J M # * . ",
+". D M.C.-.M.V.:.{ P R $.d.n.~.E.b.l.v.E.E.W.~.(.'.Q.F.v > - o XX",
+"XXp M.A.M.V.M.M.-.-.M.#.1.g.E.E.m.E.v.v.E.!.~.(.{.L.R 2 X %   XX",
+"XX2 -.V.C.C.M.-.-.>.V.M.! <.b.E.E.W.x.v.Y.!.(.'.|.S.i + @ X   XX",
+"XXX V -.M.M.>.-.#.>.M.M.@.~ z.2.Q l.b.g.b.!.'.{.{.{ 1 + &   XXXX",
+"XXXX7 E R { +.@.#.@.{ @.M.@.$.G _ I.b.l.Y.!.'.|.P.x o ; 8 O XXXX",
+"XXXX% F @.{ U L Y { +.O.-.#.! 4.b.Y.l.l.b.^.^.'.[ * + 0 k : XXXX",
+"XXXXXX4 M.M.-.@.@.-.M.>.#.#.@.o.w.p.j.l.b.~.'.P.s o ; n &.f   XX",
+"XXXXXX+ >.A.M.-.-.-.M.M.+.@.>.#.| } 2.x.g.m.^.! ; @ 0 o./.X.o XX",
+"XXXXXX+ #.Z.M.-.#.+.{ Y R >.M.M.M.:.{ *.p.j.a.p + ; Z P. XL.: XX",
+"XXXXXX+ #.V.-.+.U b b d A >.M.V.C.V.B.{ X.q.J * + w ;._.{.a.y   ",
+"XXXXXXo E A.M.A d Y M.R v -.M.N.V.M.-.@.R G w o ; N D.{.[.] 5 . ",
+"XXXXXXXXw M.V.E x O.Z.@.v +.O.M.M.:. .R L i * # u $.Q.{.T.P 9 . ",
+"XXXXXXXX$ +.A.M.V A M.#.v { [ M.M.N.M.R B 6 + > M t.U./.f.G t   ",
+"XXXXXXXX  m H.H.E b U U b L D M.M.V.M.-.V * % u / 3.` ) H r #   ",
+"XXXXXXXXXX$ { J.M.F m p D m > m +.C.C.@.w $ > h z e - + .   XXXX",
+"XXXXXXXXXXX K Z.M.@.#.D E 9   X 8 o.M.D = $ - , #     XXXXXXXXXX",
+"XXXXXXXXXX  g ,.M.V.>.:.D o XX    u n p * X .     XXXXXXXXXXXXXX",
+"XXXXXXXXXXXX% Y M.M.M.O.3 XXXXXXXX  w V $ .   XXXXXXXXXXXXXXXXXX",
+"XXXXXXXXXXXX. B ,.6.,.S X XXXXXXXXX U c X   XXXXXXXXXXXXXXXXXXXX",
+"XXXXXXXXXXXX  a [ I g &   XXXXXXXXq T 2   XXXXXXXXXXXXXXXXXXXXXX",
+"XXXXXXXXXXXXXXX - o   XXXXXXXXXXXXo + .   XXXXXXXXXXXXXXXXXXXXXX",
+"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
+};
--- wesnoth-1.6.5.orig/debian/wesnoth-tools.install
+++ wesnoth-1.6.5/debian/wesnoth-tools.install
@@ -0,0 +1,13 @@
+debian/tmp/usr/share/games/wesnoth/data/tools/extractbindings
+debian/tmp/usr/share/games/wesnoth/data/tools/helpheader.xhtml
+debian/tmp/usr/share/games/wesnoth/data/tools/helptrailer.xhtml
+debian/tmp/usr/share/games/wesnoth/data/tools/unit_tree/
+debian/tmp/usr/share/games/wesnoth/data/tools/wmlflip
+debian/tmp/usr/share/games/wesnoth/data/tools/wmlindent
+debian/tmp/usr/share/games/wesnoth/data/tools/wmllint
+debian/tmp/usr/share/games/wesnoth/data/tools/wmlscope
+debian/tmp/usr/share/games/wesnoth/data/tools/wmltest
+debian/tmp/usr/share/games/wesnoth/data/tools/wesnoth_addon_manager
+debian/tmp/usr/share/games/wesnoth/data/tools/addon_manager/
+debian/tmp/usr/share/games/wesnoth/data/tools/README
+debian/tmp/usr/share/games/wesnoth/data/tools/wesnoth/
--- wesnoth-1.6.5.orig/debian/wesnoth-icon.xpm
+++ wesnoth-1.6.5/debian/wesnoth-icon.xpm
@@ -0,0 +1,294 @@
+/* XPM */
+static char *wesnoth-icon[] = {
+/* columns rows colors chars-per-pixel */
+"32 32 256 2",
+"   c black",
+".  c #060708",
+"X  c #070808",
+"o  c #080705",
+"O  c #0B0807",
+"+  c #0C0B0B",
+"@  c #090E16",
+"#  c #061016",
+"$  c #0A1217",
+"%  c #0B141B",
+"&  c #0E181D",
+"*  c #120D06",
+"=  c #120E0A",
+"-  c #14110C",
+";  c #1B140C",
+":  c gray8",
+">  c #13171C",
+",  c #15191C",
+"<  c #181717",
+"1  c #191817",
+"2  c gray11",
+"3  c #0E1521",
+"4  c #111526",
+"5  c #11142A",
+"6  c #121B24",
+"7  c #151B2B",
+"8  c #191B2D",
+"9  c #1B1D32",
+"0  c #152024",
+"q  c #16212A",
+"w  c #1C2323",
+"e  c #1A242A",
+"r  c #1C2031",
+"t  c #24180E",
+"y  c #201B13",
+"u  c #201E1E",
+"i  c #25221A",
+"p  c #2C2215",
+"a  c #2C2519",
+"s  c #352A1E",
+"d  c #3C2A1A",
+"f  c #33261B",
+"g  c gray14",
+"h  c #20252C",
+"j  c #282624",
+"k  c #2C2A26",
+"l  c #2D2B2A",
+"z  c #222435",
+"x  c #2A2B33",
+"c  c #2B2C3C",
+"v  c #242936",
+"b  c #2B302E",
+"n  c #273037",
+"m  c #2D3535",
+"M  c #2D353B",
+"N  c #2E3A39",
+"B  c #2D3B31",
+"V  c #302F2F",
+"C  c #3C2F20",
+"Z  c #302B31",
+"A  c #34332E",
+"S  c #3B3121",
+"D  c #3B362C",
+"F  c #343534",
+"G  c #33363D",
+"H  c #343D36",
+"J  c #323A3B",
+"K  c #3D3B35",
+"L  c #3B3B3C",
+"P  c #2E2D42",
+"I  c #2D3841",
+"U  c #313445",
+"Y  c #333B43",
+"T  c #363C49",
+"R  c #3E3F40",
+"E  c #3A423D",
+"W  c #354047",
+"Q  c #374148",
+"!  c #3C4347",
+"~  c #3B444B",
+"^  c #403727",
+"/  c #403728",
+"(  c #4E3E26",
+")  c #433D2B",
+"_  c #403E3C",
+"`  c #483C33",
+"'  c #503A21",
+"]  c #413E41",
+"[  c #44413D",
+"{  c #484538",
+"}  c #434135",
+"|  c #5E4C2F",
+" . c #53442C",
+".. c #514834",
+"X. c #504A3F",
+"o. c #624C2E",
+"O. c #634931",
+"+. c #615136",
+"@. c #62573A",
+"#. c #62583B",
+"$. c #6B5435",
+"%. c #705B3A",
+"&. c #7C5E39",
+"*. c #464544",
+"=. c #474748",
+"-. c #434944",
+";. c #434A4D",
+":. c #4D4745",
+">. c gray30",
+",. c #4B4C53",
+"<. c #4F4F58",
+"1. c #434854",
+"2. c #4C5458",
+"3. c #514A43",
+"4. c #53524D",
+"5. c #5A554B",
+"6. c #5B5846",
+"7. c #5D594B",
+"8. c #535354",
+"9. c #53575A",
+"0. c #575957",
+"q. c #545958",
+"w. c #5A5651",
+"e. c #58565C",
+"r. c #5B5A53",
+"t. c #5C5A5A",
+"y. c #5E615A",
+"u. c #615640",
+"i. c #615945",
+"p. c #635D4D",
+"a. c #6A5C41",
+"s. c #625D56",
+"d. c #6D634A",
+"f. c #676553",
+"g. c #65635A",
+"h. c #6A6357",
+"j. c #6A645C",
+"k. c #6A695C",
+"l. c #736343",
+"z. c #73664E",
+"x. c #746C4B",
+"c. c #7E6B46",
+"v. c #736C5C",
+"b. c #786F59",
+"n. c #756555",
+"m. c #636362",
+"M. c #6C6C6C",
+"N. c #716C65",
+"B. c #716F72",
+"V. c #77776F",
+"C. c #797261",
+"Z. c #7E7B6C",
+"A. c #747375",
+"S. c #797771",
+"D. c #78777A",
+"F. c #7B7B7C",
+"G. c #816F4F",
+"H. c #857651",
+"J. c #81745C",
+"K. c #917652",
+"L. c #867E6E",
+"P. c #8E7E60",
+"I. c #817D72",
+"U. c #907C60",
+"Y. c #90855E",
+"T. c #998158",
+"R. c #8A8560",
+"E. c #8C836C",
+"W. c #848072",
+"Q. c #958A64",
+"!. c #938D6E",
+"~. c #928C78",
+"^. c #96906D",
+"/. c #9C9173",
+"(. c #A79567",
+"). c #AD9267",
+"_. c #A49971",
+"`. c #A09978",
+"'. c #AD9D77",
+"]. c #B69C6F",
+"[. c #BA9A65",
+"{. c #ABA57C",
+"}. c #BAA678",
+"|. c #C79E64",
+" X c #CDA45E",
+".X c #D0A55F",
+"XX c #C2A26A",
+"oX c #CCA462",
+"OX c #CEA966",
+"+X c #CEAB6B",
+"@X c #C2AF7F",
+"#X c #CBAD70",
+"$X c #CAAF7A",
+"%X c #D1A766",
+"&X c #D2AA67",
+"*X c #D1AC69",
+"=X c #DCAD6D",
+"-X c #D2AF75",
+";X c #D9AF71",
+":X c #D1B273",
+">X c #D2B179",
+",X c #D6BB7F",
+"<X c #D9B878",
+"1X c #DCB774",
+"2X c #E4B66B",
+"3X c #E1B674",
+"4X c #EFBB71",
+"5X c #E9C479",
+"6X c #F2C478",
+"7X c #F4C175",
+"8X c gray52",
+"9X c #88868A",
+"0X c #8B8984",
+"qX c #8E8D8E",
+"wX c #928D85",
+"eX c #949385",
+"rX c #919092",
+"tX c #969599",
+"yX c #9E9D9E",
+"uX c #A1A19F",
+"iX c #BBA882",
+"pX c #A2A2A2",
+"aX c #ACACAC",
+"sX c #BABAB9",
+"dX c #CCB680",
+"fX c #D1B781",
+"gX c #D5BC83",
+"hX c #D6C086",
+"jX c #D6C08C",
+"kX c #DBC283",
+"lX c #DBC58B",
+"zX c #DEC88C",
+"xX c #D7CC9E",
+"cX c #DDCB94",
+"vX c #DFCF98",
+"bX c #DED1A0",
+"nX c #DAD1AD",
+"mX c #E0C785",
+"MX c #E0C689",
+"NX c #E7CA83",
+"BX c #E5CB8C",
+"VX c #E8CE89",
+"CX c #E2CD93",
+"ZX c #ECD38E",
+"AX c #E3D098",
+"SX c #EDD797",
+"DX c #EBD79A",
+"FX c #E7D8A4",
+"GX c #EBDAA4",
+"HX c #EBDEAE",
+"JX c #E5DDB6",
+"KX c #EBDEB1",
+"LX c #EEE3B8",
+"PX c #CACACA",
+"IX c #DADADA",
+"UX c None",
+/* pixels */
+"UXo <   UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX+ + UXUX",
+"UX*.uX2 UXUXUXUXUXUXUXUXUXUX. X .   UXUXUXUXUXUXUXUXUX  L 0X< UX",
+"UX=.j.A o UXUXUXUXUXUXUX+ *.t.k 2 F 2 + UXUXUXUXUXUXUXX K j.k UX",
+"UX1 g k 1   UX: g.F : F 0.=.A 6.p.k L >.k 2 m.*.+ UXo g j X   UX",
+"UXUXg 1 u < o g.wX3.L A D m.eXZ.N.W.k.K k _ s.0X8X2 2 2     UXUX",
+"UXUXUX  o k j.w.1 D 7.L.eXA.1.P v c <.S.I.g.` i j.I.l o   UXUXUX",
+"UXUXUX  . 4.j.d z.~.S.9.T U U P P 9 5 5 c e.C.a.d j.4.o UXUXUXUX",
+"UXUXUXX _ [ - / H J M G G T U c z 5 5 5 4 7 6 , f t *.:.o UXUXUX",
+"UXUXUX_ N.+ o ^ F H J M J ,.m.I.E.g.G 6 3 6 6 & s ; + j.y UXUXUX",
+"UXUXUXl k + * ..m H L g./.iX$X-X+XXX]./.f.x 6 & f ; X i O UXUXUX",
+"UXUXUXo     1 x.B N 4.,XZXlXcXkX1X&X X*XmXr.6 & f ; o o UXUXUXUX",
+"UXUXUXUX    ; @.E E r.,XSXLXJXFXBX,X:XOXoX5.q 6 s t X   UXUXUXUX",
+"UXUXUXUX    ; +.E E r.hXGXLXnXbXcXhX:X*X|.3.7 6 s t X o UXUXUXUX",
+"UXUXUXUX    ; %.E ! q.$XDXHXbXvXkX,X#XOXoX[ q 0 C y X   UXUXUXUX",
+"UXUXUXUX    - l.E ;.q.@XSXGXvXlXgX,XOX X#XR e 6  .p .   UXUXUXUX",
+"UXUXUXUX    * %.-.;.2.{.VXGXFXAXjXgX+X XXXx e w +.y   UXUXUXUXUX",
+"UXUXUXUX  < - $.-.;.1.E.BXDXFXvXfXgX*XoXT.e e w $.;   UXUXUXUXUX",
+"UXUXUXUXUXL < O.4.Q ~ g.gXVXVXzXfX>XoX%X6.6 e l $.O X UXUXUXUXUX",
+"UXUXUXUXUX>.2 ( d.~ Q ;.}.5X5XlXfX%XoX|.A 6 q { |     UXUXUXUXUX",
+"UXUXUXUXUX< j a c.~ Y Y C.3X5XNX<XoX&XK.> 6 e b.S     UXUXUXUXUX",
+"UXUXUXUXUX+ A - ^.y.T I ! ).3X6X2XoX[.D $ 6 m E.: . UXUXUXUXUXUX",
+"UXUXUXUXUXUXH : 6.^.Q W Y r.-X7X4X1Xd.@ $ > 5.i.    UXUXUXUXUXUX",
+"UXUXUXUXUXUXg ! l _.0.I Y Y J.:X=XU.8 # $ g c.A +   UXUXUXUXUXUX",
+"UXUXUXUXUX+ m.yXA.b./.! Y I G n.U.x % $ $ p.l.M.8Xl UXUXUXUXUXUX",
+"UXUXUXUXUXm.aXPXqX] ^.Z.T Y M n c 8 6 % A Q.[ F.PXyXl UXUXUXUXUX",
+"UXUXUXUXE pXIXtXt., i {.m.I M v z 8 3 w Y.) : 8.9XIXyX@ UXUXUXUX",
+"UXUXUXg pXPXrX,.< < X D {.r.n v z 7 e R.@.  : 2 =.8XPXM.o UXUXUX",
+"UXUX+ 8XsX8XL O   + u . } (.3.v r l H.x.X   + < + F D.aXL UXUXUX",
+"UXUXG rXB.g +   UXUXo : o s &.` Z O.' o     UXUX+ 1 2 m.D.+ UXUX",
+"UXX 8.L - .     UXUXUXo 2 O ; d d y       UXUXUX  < < < F 2 UXUX",
+"UXX , o     UXUXUXUXUXUX+ F @ o X o +   UXUXUXUXUXUX+ 2 @     UX",
+"UXUX    UXUXUXUXUXUXUXUXUX. - 2 :     UXUXUXUXUXUXUXUX  o   UXUX"
+};
--- wesnoth-1.6.5.orig/debian/watch
+++ wesnoth-1.6.5/debian/watch
@@ -0,0 +1,8 @@
+version=2
+# Site/Directory        Pattern                                                       Version Script
+
+## stable branch
+http://sf.net/wesnoth/  wesnoth-([\d]+\.[\d]*[02468](?:\.[\d\.]*)?)\.tar\.(?:bz2|gz)  debian uupdate
+
+## everything (like, useful for development branch :))
+#http://sf.net/wesnoth/  wesnoth-([\d.a]+)\.tar\.(?:bz2|gz)  debian uupdate
--- wesnoth-1.6.5.orig/debian/wesnoth-data.dirs
+++ wesnoth-1.6.5/debian/wesnoth-data.dirs
@@ -0,0 +1,2 @@
+/usr/share/games/wesnoth/fonts
+/usr/share/icons
--- wesnoth-1.6.5.orig/debian/wesnoth-nolog
+++ wesnoth-1.6.5/debian/wesnoth-nolog
@@ -0,0 +1,2 @@
+#!/bin/sh
+wesnoth $* > /dev/null 2> /dev/null
--- wesnoth-1.6.5.orig/debian/compat
+++ wesnoth-1.6.5/debian/compat
@@ -0,0 +1 @@
+7
--- wesnoth-1.6.5.orig/debian/wesnoth-server.init.d
+++ wesnoth-1.6.5/debian/wesnoth-server.init.d
@@ -0,0 +1,90 @@
+#! /bin/sh
+### BEGIN INIT INFO
+# Provides:          wesnothd
+# Required-Start:    $local_fs
+# Required-Stop:     $local_fs
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: Starts Wesnoth server
+# Description:       Starts the Wesnoth server used for multiplayer games.
+### END INIT INFO
+
+PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
+DAEMON=/usr/games/wesnothd
+DAEMON_OPTS=
+NAME=wesnothd
+DESC="Wesnoth server"
+PIDFILE=/var/run/$NAME.pid
+
+test -x $DAEMON || exit 5
+
+. /lib/lsb/init-functions
+
+# Include wesnothd defaults if available
+if [ -f /etc/default/$NAME ] ; then
+	. /etc/default/$NAME
+fi
+
+set -e
+
+wesnoth_start() {
+	start-stop-daemon --start --quiet --pidfile $PIDFILE --oknodo \
+		--background --exec $DAEMON --make-pidfile --chuid nobody \
+		-- $DAEMON_OPTS > /dev/null 2> /dev/null || return 1
+	return 0
+}
+
+wesnoth_stop() {
+	start-stop-daemon --stop --quiet --pidfile $PIDFILE \
+		--oknodo --exec $DAEMON || return 1
+	rm -f $PIDFILE
+	return 0
+}
+
+wesnoth_reload() {
+	start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE
+}
+
+case "$1" in
+  start)
+	log_daemon_msg "Starting $DESC" "$NAME"
+	wesnoth_start
+	log_end_msg $?
+	;;
+  stop)
+	log_daemon_msg "Stopping $DESC" "$NAME"
+	wesnoth_stop
+	log_end_msg $?
+	;;
+  reload)
+  	log_daemon_msg "Reloading $DESC" "$NAME"
+  	wesnoth_reload
+	log_end_msg $?
+  	;;
+
+  restart|force-reload)
+	log_daemon_msg "Restarting $DESC" "$NAME"
+	wesnoth_stop && sleep 1 && wesnoth_start
+	log_end_msg $?
+	;;
+  status)
+	if [ -s "$PIDFILE" ]; then
+		if kill -0 `cat $PIDFILE` 2> /dev/null; then
+			log_success_msg "Wesnoth server is running"
+			exit 0
+		else
+			log_failure_msg "$PIDFILE exists but Wesnoth server is not running"
+			exit 1
+		fi
+	else
+		log_success_msg "Wesnoth server is not running."
+		exit 3
+	fi
+	;;
+  *)
+	log_success_msg "Usage: $0 {start|stop|status|restart|force-reload}" >&2
+	exit 2
+	;;
+esac
+
+exit 0
--- wesnoth-1.6.5.orig/debian/wesnoth-sotbe.install
+++ wesnoth-1.6.5/debian/wesnoth-sotbe.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/share/games/wesnoth/data/campaigns/Son_Of_The_Black_Eye
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-sotbe.mo
--- wesnoth-1.6.5.orig/debian/wesnoth-nr.install
+++ wesnoth-1.6.5/debian/wesnoth-nr.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/share/games/wesnoth/data/campaigns/Northern_Rebirth
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-nr.mo
--- wesnoth-1.6.5.orig/debian/wesnoth-music.install
+++ wesnoth-1.6.5/debian/wesnoth-music.install
@@ -0,0 +1 @@
+debian/tmp/usr/share/games/wesnoth/data/core/music
--- wesnoth-1.6.5.orig/debian/wesnoth-ttb.install
+++ wesnoth-1.6.5/debian/wesnoth-ttb.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/share/games/wesnoth/data/campaigns/Two_Brothers
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-tb.mo
--- wesnoth-1.6.5.orig/debian/wesnoth-utbs.install
+++ wesnoth-1.6.5/debian/wesnoth-utbs.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/share/games/wesnoth/data/campaigns/Under_the_Burning_Suns
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-utbs.mo
--- wesnoth-1.6.5.orig/debian/wesnoth-httt.install
+++ wesnoth-1.6.5/debian/wesnoth-httt.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/share/games/wesnoth/data/campaigns/Heir_To_The_Throne
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-httt.mo
--- wesnoth-1.6.5.orig/debian/wesnoth-sof.install
+++ wesnoth-1.6.5/debian/wesnoth-sof.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/share/games/wesnoth/data/campaigns/Sceptre_of_Fire
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-sof.mo
--- wesnoth-1.6.5.orig/debian/wesnoth-trow.install
+++ wesnoth-1.6.5/debian/wesnoth-trow.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/share/games/wesnoth/data/campaigns/The_Rise_Of_Wesnoth
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-trow.mo
--- wesnoth-1.6.5.orig/debian/wesnoth-tsg.install
+++ wesnoth-1.6.5/debian/wesnoth-tsg.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/share/games/wesnoth/data/campaigns/The_South_Guard
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-tsg.mo
--- wesnoth-1.6.5.orig/debian/wesnoth-server.install
+++ wesnoth-1.6.5/debian/wesnoth-server.install
@@ -0,0 +1,3 @@
+debian/tmp/usr/games/wesnothd
+debian/tmp/usr/share/man/man6/wesnothd.6
+debian/tmp/usr/share/man/*/man6/wesnothd.6
--- wesnoth-1.6.5.orig/debian/wesnoth-did.install
+++ wesnoth-1.6.5/debian/wesnoth-did.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/share/games/wesnoth/data/campaigns/Descent_Into_Darkness
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-did.mo
--- wesnoth-1.6.5.orig/debian/wesnoth-l.install
+++ wesnoth-1.6.5/debian/wesnoth-l.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/share/games/wesnoth/data/campaigns/Liberty
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-l.mo
--- wesnoth-1.6.5.orig/debian/wesnoth-aoi.install
+++ wesnoth-1.6.5/debian/wesnoth-aoi.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/share/games/wesnoth/data/campaigns/An_Orcish_Incursion
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-aoi.mo
--- wesnoth-1.6.5.orig/debian/wesnoth-thot.install
+++ wesnoth-1.6.5/debian/wesnoth-thot.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/share/games/wesnoth/data/campaigns/The_Hammer_of_Thursagan
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-thot.mo
--- wesnoth-1.6.5.orig/debian/TODO
+++ wesnoth-1.6.5/debian/TODO
@@ -0,0 +1,2 @@
+create wesnoth-tools package containing:
+ - byte-compile .py modules?
--- wesnoth-1.6.5.orig/debian/wesnoth-data.doc-base
+++ wesnoth-1.6.5/debian/wesnoth-data.doc-base
@@ -0,0 +1,9 @@
+Document: wesnoth-user-manual
+Title: Battle for Wesnoth User's Manual
+Abstract: This document helps you getting started with the Battle for Wesnoth,
+ a turnbased strategy game.
+Section: Games/Strategy
+
+Format: HTML
+Index: /usr/share/doc/wesnoth-data/manual.en.html
+Files: /usr/share/doc/wesnoth-data/manual.en.html
--- wesnoth-1.6.5.orig/debian/wesnoth-data.docs
+++ wesnoth-1.6.5/debian/wesnoth-data.docs
@@ -0,0 +1,4 @@
+README
+doc/manual/manual*.html
+doc/manual/images
+doc/manual/styles
--- wesnoth-1.6.5.orig/debian/NEWS
+++ wesnoth-1.6.5/debian/NEWS
@@ -0,0 +1,44 @@
+wesnoth (1:1.6-1) unstable; urgency=low
+
+  * Please be aware what a new stable upstream release of wesnoth means for
+    your save games: You won't be able to continue playing from them. The
+    reasons for those are several, not limited to these two bigger points:
+    - Most of all, balancing changes: Units might have different
+      characteristics and thus fights would end differently, or your units
+      could move to places they have never seen before (and weren't meant to).
+    - Most obvious, changes in the campaigns themself. A unit you kept from a
+      former scenario might not be in the campaign anymore, or a whole
+      scenario might have been added or removed somewhere in between. Map
+      changes also affect multiplayer games.
+    Again: You won't be able to continue playing your old save games from
+    older stable releases (e.g. 1.4.x). Further updates to 1.6.x will though
+    be compatible with this version.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Wed, 18 Mar 2009 17:27:36 +0100
+
+wesnoth (1:1.5.5-1) experimental; urgency=low
+
+  * The meaning of the wesnoth package has changed: It is now the old
+    wesnoth-all package that pulls in all the campaigns. If you don't want
+    that and didn't use wesnoth-all before please switch to using the
+    wesnoth-core package. The switch was done to reduce the confusion of users
+    who wonder about where the campaigns are.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Mon, 06 Oct 2008 00:17:43 +0200
+
+wesnoth (1:1.4-1) unstable; urgency=low
+
+  * Please be aware what a new stable upstream release of wesnoth means for
+    your save games: You won't be able to continue playing from them. The
+    reasons for those are several, not limited to these two bigger points:
+    - Most of all, balancing changes: Units might have different
+      characteristics and thus fights would end differently.
+    - Most obvious, changes in the campaigns themself. A unit you kept from a
+      former scenario might not be in the campaign anymore, or a whole
+      scenario might have been added or removed somewhere in between. Map
+      changes also affect multiplayer games.
+    Again: You won't be able to continue from your old save games with a new
+    stable upstream release like it happened with this update from the former
+    stable release 1.2 to this new one 1.4.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Wed, 02 Apr 2008 16:14:20 +0200
--- wesnoth-1.6.5.orig/debian/README.source
+++ wesnoth-1.6.5/debian/README.source
@@ -0,0 +1,7 @@
+This package uses quilt for its patch management, see
+/usr/share/doc/quilt/README.source if you are unfamiliar with it.
+
+Upstream ships their tarballs as .tar.bz2 files - which the Debian pool
+unfortunately doesn't like (yet). All I do with them is piping them
+through bzcat and gzip, like this for e.g. the 1.4.3 release:
+bzcat wesnoth-1.4.3.tar.bz2 | gzip --best -c > wesnoth_1.4.3.orig.tar.gz
--- wesnoth-1.6.5.orig/debian/wesnoth-smallgui
+++ wesnoth-1.6.5/debian/wesnoth-smallgui
@@ -0,0 +1,3 @@
+#!/bin/sh
+echo "wesnoth-smallgui is deprecated -- please use wesnoth --smallgui directly!"
+wesnoth --smallgui $*
--- wesnoth-1.6.5.orig/debian/wesnoth_editor
+++ wesnoth-1.6.5/debian/wesnoth_editor
@@ -0,0 +1,3 @@
+#!/bin/sh
+echo "wesnoth_editor is deprecated -- please use wesnoth --editor directly!"
+wesnoth --editor $*
--- wesnoth-1.6.5.orig/debian/wesnoth-core.install
+++ wesnoth-1.6.5/debian/wesnoth-core.install
@@ -0,0 +1,10 @@
+debian/tmp/usr/games/wesnoth
+debian/wesnoth-smallgui /usr/games
+debian/wesnoth-nolog /usr/games
+debian/wesnoth_editor /usr/games
+debian/tmp/usr/share/man/man6/wesnoth.6
+debian/tmp/usr/share/man/*/man6/wesnoth.6
+icons/wesnoth.desktop /usr/share/applications
+icons/wesnoth_editor.desktop /usr/share/applications
+debian/wesnoth-icon.xpm /usr/share/pixmaps
+debian/wesnoth_editor-icon.xpm /usr/share/pixmaps
--- wesnoth-1.6.5.orig/debian/wesnoth-core.menu
+++ wesnoth-1.6.5/debian/wesnoth-core.menu
@@ -0,0 +1,14 @@
+?package(wesnoth-core): \
+ needs="X11" \
+ section="Games/Strategy" \
+ title="Battle for Wesnoth" \
+ longtitle="Battle for Wesnoth is a fantasy turn-based strategy game" \
+ command="/usr/games/wesnoth-nolog" \
+ icon="/usr/share/pixmaps/wesnoth-icon.xpm"
+?package(wesnoth-core): \
+ needs="X11" \
+ section="Games/Tools" \
+ title="Battle for Wesnoth Editor" \
+ longtitle="Map editor for Battle for Wesnoth, a fantasy turn-based strategy game" \
+ command="/usr/games/wesnoth-nolog --editor" \
+ icon="/usr/share/pixmaps/wesnoth_editor-icon.xpm"
--- wesnoth-1.6.5.orig/debian/wesnoth-low.install
+++ wesnoth-1.6.5/debian/wesnoth-low.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/share/games/wesnoth/data/campaigns/Legend_of_Wesmere
+debian/tmp/usr/share/locale/*/LC_MESSAGES/wesnoth-low.mo
--- wesnoth-1.6.5.orig/debian/wesnoth-core.lintian-overrides
+++ wesnoth-1.6.5/debian/wesnoth-core.lintian-overrides
@@ -0,0 +1,4 @@
+wesnoth-core: manpage-locale-dir-country-specific usr/share/man/en_GB/man6/wesnoth-nolog.6.gz
+wesnoth-core: manpage-locale-dir-country-specific usr/share/man/en_GB/man6/wesnoth-smallgui.6.gz
+wesnoth-core: manpage-locale-dir-country-specific usr/share/man/en_GB/man6/wesnoth.6.gz
+wesnoth-core: manpage-locale-dir-country-specific usr/share/man/en_GB/man6/wesnoth_editor.6.gz
--- wesnoth-1.6.5.orig/debian/wesnoth-data.lintian-overrides
+++ wesnoth-1.6.5/debian/wesnoth-data.lintian-overrides
@@ -0,0 +1,3 @@
+wesnoth-data: extra-license-file usr/share/games/wesnoth/data/COPYING.txt
+wesnoth-data: symlink-should-be-relative usr/share/games/wesnoth/fonts/DejaVuSans.ttf /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
+wesnoth-data: symlink-should-be-relative usr/share/games/wesnoth/fonts/wqy-zenhei.ttc /usr/share/fonts/truetype/wqy/wqy-zenhei.ttc
--- wesnoth-1.6.5.orig/debian/wesnoth-server.lintian-overrides
+++ wesnoth-1.6.5/debian/wesnoth-server.lintian-overrides
@@ -0,0 +1 @@
+wesnoth-server: manpage-locale-dir-country-specific usr/share/man/en_GB/man6/wesnothd.6.gz
--- wesnoth-1.6.5.orig/debian/wesnoth-sof.lintian-overrides
+++ wesnoth-1.6.5/debian/wesnoth-sof.lintian-overrides
@@ -0,0 +1,2 @@
+wesnoth-sof: using-first-person-in-description line 6: I
+wesnoth-sof: using-first-person-in-description line 9: I
--- wesnoth-1.6.5.orig/debian/patches/series
+++ wesnoth-1.6.5/debian/patches/series
@@ -0,0 +1 @@
+02wesnoth-nolog-desktop-file
--- wesnoth-1.6.5.orig/debian/patches/02wesnoth-nolog-desktop-file
+++ wesnoth-1.6.5/debian/patches/02wesnoth-nolog-desktop-file
@@ -0,0 +1,15 @@
+Author: Gerfried Fuchs <rhonda@debian.at>	vim:ft=diff:
+Description: call wesnoth-nolog from desktop file, too
+
+Index: wesnoth-1.6.2/icons/wesnoth.desktop
+===================================================================
+--- wesnoth-1.6.2.orig/icons/wesnoth.desktop
++++ wesnoth-1.6.2/icons/wesnoth.desktop
+@@ -53,6 +53,6 @@ Comment[sr]=Фантазијска ст
+ Comment[sr@latin]=Fantazijska strateška igra na poteze
+ Comment[tr]=Fantastik, sırayla oynanan bir strateji oyunu
+ Icon=wesnoth-icon
+-Exec=wesnoth
++Exec=wesnoth-nolog
+ Categories=Game;StrategyGame;
+ 
