--- gnash-0.8.2.orig/debian/klash.manpages
+++ gnash-0.8.2/debian/klash.manpages
@@ -0,0 +1 @@
+debian/h2m/klash.1
--- gnash-0.8.2.orig/debian/autogen.sh
+++ gnash-0.8.2/debian/autogen.sh
@@ -0,0 +1,178 @@
+#!/bin/sh
+
+# 
+#   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+# 
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+# 
+# This program 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 General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+# 
+# Run this to generate all the initial makefiles, etc.
+
+srcdir=`dirname $0`/..
+test -z "$srcdir" && srcdir=.
+
+DIE=0
+
+#Always use our macros
+#ACLOCAL_FLAGS="-I macros $ACLOCAL_FLAGS"
+
+(test -f $srcdir/configure.ac) || {
+    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
+    echo " top-level package directory"
+    exit 1
+}
+
+(${AUTOCONF:-autoconf} --version) < /dev/null > /dev/null 2>&1 || {
+  echo
+  echo "**Error**: You must have \`autoconf' installed."
+  echo "Download the appropriate package for your distribution,"
+  echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
+  DIE=1
+}
+
+(grep "^AC_PROG_INTLTOOL" $srcdir/configure.ac >/dev/null) && {
+  (${INTLTOOLIZE:-intltoolize} --version) < /dev/null > /dev/null 2>&1 || {
+    echo 
+    echo "**Error**: You must have \`intltool' installed."
+    echo "You can get it from:"
+    echo "  ftp://ftp.gnome.org/pub/GNOME/"
+    DIE=1
+  }
+}
+
+(grep "^AM_PROG_XML_I18N_TOOLS" $srcdir/configure.ac >/dev/null) && {
+  (xml-i18n-toolize --version) < /dev/null > /dev/null 2>&1 || {
+    echo
+    echo "**Error**: You must have \`xml-i18n-toolize' installed."
+    echo "You can get it from:"
+    echo "  ftp://ftp.gnome.org/pub/GNOME/"
+    DIE=1
+  }
+}
+
+(grep "^AM_PROG_LIBTOOL" $srcdir/configure.ac >/dev/null) && {
+  (${LIBTOOL:-libtool} --version) < /dev/null > /dev/null 2>&1 || {
+    echo
+    echo "**Error**: You must have \`libtool' installed."
+    echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/"
+    DIE=1
+  }
+}
+
+(grep "^AM_GLIB_GNU_GETTEXT" $srcdir/configure.ac >/dev/null) && {
+  (grep "sed.*POTFILES" $srcdir/configure.ac) > /dev/null || \
+  (glib-gettextize --version) < /dev/null > /dev/null 2>&1 || {
+    echo
+    echo "**Error**: You must have \`glib' installed."
+    echo "You can get it from: ftp://ftp.gtk.org/pub/gtk"
+    DIE=1
+  }
+}
+
+(${AUTOMAKE:-automake} --version) < /dev/null > /dev/null 2>&1 || {
+  echo
+  echo "**Error**: You must have \`automake' installed."
+  echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/"
+  DIE=1
+  NO_AUTOMAKE=yes
+}
+
+
+# if no automake, don't bother testing for aclocal
+test -n "$NO_AUTOMAKE" || (${ACLOCAL:-aclocal} --version) < /dev/null > /dev/null 2>&1 || {
+  echo
+  echo "**Error**: Missing \`aclocal'.  The version of \`automake'"
+  echo "installed doesn't appear recent enough."
+  echo "You can get automake from ftp://ftp.gnu.org/pub/gnu/"
+  DIE=1
+}
+
+if test "$DIE" -eq 1; then
+  exit 1
+fi
+
+case $CC in
+xlc )
+  am_opt=--include-deps;;
+esac
+
+if grep "^AC_PROG_LIBTOOL" configure.ac >/dev/null; then
+	if test -z "$NO_LIBTOOLIZE" ; then 
+	  echo "Running libtoolize --force --ltdl --copy ..."
+	  if ${LIBTOOLIZE:-libtoolize} --force --ltdl --copy; then
+	    chmod a+w libltdl/config-h.in # Darwin needs this
+          else
+            echo
+            echo "**Error**: libtoolize failed, do you have libtool package installed?"
+            exit 1
+          fi
+	fi
+fi
+
+#for coin in `find $srcdir -name CVS -prune -o -name configure.ac -print`
+for coin in configure.ac
+do 
+  dr=`dirname $coin`
+  if test -f $dr/NO-AUTO-GEN; then
+    echo skipping $dr -- flagged as no auto-gen
+  else
+    echo processing $dr
+    ( cd $dr
+
+     if test -d macros; then
+        aclocalinclude="-I macros $ACLOCAL_FLAGS"
+     else
+        aclocalinclude="$ACLOCAL_FLAGS"
+     fi
+
+      if grep "^AM_GLIB_GNU_GETTEXT" configure.ac >/dev/null; then
+	echo "Creating $dr/aclocal.m4 ..."
+	test -r $dr/aclocal.m4 || touch $dr/aclocal.m4
+	echo "Making $dr/aclocal.m4 writable ..."
+	test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
+      fi
+      if grep "^AC_PROG_INTLTOOL" configure.ac >/dev/null; then
+        echo "Running intltoolize --copy --force --automake ..."
+	${INTLTOOLIZE:-intltoolize} --copy --force --automake
+      fi
+      if grep "^AM_PROG_XML_I18N_TOOLS" configure.ac >/dev/null; then
+        echo "Running xml-i18n-toolize --copy --force --automake..."
+	xml-i18n-toolize --copy --force --automake
+      fi
+#       if grep "^AC_PROG_LIBTOOL" configure.ac >/dev/null; then
+# 	if test -z "$NO_LIBTOOLIZE" ; then 
+# 	  echo "Running libtoolize --force --copy ..."
+# 	  ${LIBTOOLIZE:-libtoolize} --force --copy
+# 	fi
+#       fi
+      echo "Running aclocal $aclocalinclude ..."
+      ${ACLOCAL:-aclocal} $aclocalinclude
+      if grep "^AM_CONFIG_HEADER" configure.ac >/dev/null; then
+	echo "Running autoheader..."
+	${AUTOHEADER:-autoheader}
+      fi
+      # This is a hack. Any command line arguments maens don't run Automake.
+      # This is to prevent regenerating and checking in a pile of Makefiles
+      # that haven't really changed. They clutter up the checkin messages.
+      if test x"$1" = x ; then
+        echo "Running automake --add-missing --copy $am_opt ..."
+        ${AUTOMAKE:-automake} --add-missing --copy $am_opt
+      fi
+      echo "Running autoconf ..."
+      ${AUTOCONF:-autoconf}
+    )
+  fi
+done
+
+conf_flags="--enable-maintainer-mode"
+
--- gnash-0.8.2.orig/debian/gnash.desktop
+++ gnash-0.8.2/debian/gnash.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Type=Application
+Encoding=UTF-8
+Name=Gnash SWF Viewer
+GenericName=
+Comment=
+Icon=/usr/share/pixmaps/gnash.xpm
+Exec=/usr/bin/gnash
+Terminal=false
+Categories=AudioVideo;Player;GTK;
--- gnash-0.8.2.orig/debian/gnash.links
+++ gnash-0.8.2/debian/gnash.links
@@ -0,0 +1 @@
+usr/share/man/man1/gnash.1.gz usr/share/man/man1/gtk-gnash.1.gz
--- gnash-0.8.2.orig/debian/changelog
+++ gnash-0.8.2/debian/changelog
@@ -0,0 +1,450 @@
+gnash (0.8.2-2~bpo40+1) etch-backports; urgency=low
+
+  * etch backport.
+  * Fix libqt3-mt build-dependency/dependency (s/3.3.8/3:&/g) in order to
+    link only with license-compatible Qt.
+  * Remove libcurl4-gnutls-dev to make sbuild happy.
+
+ -- Robert Millan <rmh@aybabtu.com>  Sat, 10 May 2008 12:24:32 +0200
+
+gnash (0.8.2-2) unstable; urgency=low
+
+  * Add myself to Uploaders (with Miriam's blessing).
+  * debian/patches/paused-widget.patch: New.  Backport from upstream CVS.
+    Implements a widget for paused mode.  (Closes: #477911)
+  * debian/control (Build-Depends): Remove base-files.  (Closes: #441019)
+
+ -- Robert Millan <rmh@aybabtu.com>  Sun, 27 Apr 2008 14:18:36 +0200
+
+gnash (0.8.2-1) unstable; urgency=low
+
+  [ Miriam Ruiz ]
+  * New Upstream Release: First Beta Version. Closes: #469944
+    Improvements since the 0.8.1 alpha release are:
+    + Improved timeline redesign.
+    + Action execution order fixes.
+    + Keyboard handling improved.
+    + New classes implemented: System.capabilities (partial), SharedObject,
+        LocalConnection.
+    + New opcodes implemented: ActionImplements, Try/Throw.
+    + Movieclip.beginGradientFill completes drawing API support.
+    + MovieClip._lockroot support added.
+    + Implement GET/POST for MovieClip.loadVariables and MovieClip.loadMovie
+    + Textfield support improved.
+    + Security: configurable sandbox restricts filesystem access by movies.
+    + Better support for SWF8.
+    + Streaming OGG-contained multimedia (e.g. vorbis/theora or
+        vorbis/dirac), and other free formats.
+    + OGL and Cairo renderers much improved.
+    + Improvements of the Framebuffer GUI (hide text messages, support
+        Linux events system, built-in touchscreen calibration, simple
+        keyboard support, better architecture support).
+    + SOLdumper utility for reading SOL files ('flash cookies').
+    + DumpShm utility finds and dumps Local Connection memory segments.
+    + Fullscreen display possible.
+    + Extensions for LIRC and DBus.
+    + High quality, cross-platform psuedo-randomness using boost random.
+    + NPAPI (Mozilla) plugin: keyboard events work, navigation and
+        JavaScript from within movies.
+    + Set and save preferences from the GUI (GTK).
+    + Improved stability and robustness with malformed SWFs.
+    + New User manual! Rewritten reference manual, brought up to date.
+    + Many other bugfixes.
+  * Added versioned dependency libqt3-mt >= 3.3.8 to klash binary package
+    to prevent runtime dynamic linking against GPLv2. Closes: #464615
+  * Shortened long description for most of binary packages. Closes: #423594
+  * Updated package descriptions in debian/control and README.Debian file.
+  * Removed mtasc form build dependencies.
+  * Fixed shlibs.local
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Fri, 07 Mar 2008 09:54:08 +0100
+
+gnash (0.8.1+cvs20080212.1133-1) unstable; urgency=low
+
+  [ Miriam Ruiz ]
+  * New Upstream Release. Downloaded from CVS.
+  * Removed full GFDL text from debian/copyright and added link to Debian's
+    version in /usr/share/common-licenses/GFDL-1.2
+  * Added runtime dependency to base-files (>= 4.0.1) to guarantee that it is
+    legally linked against Gnash GPLv3 licensed code (Closes: #441019)
+  * Added Homepage field to debian/control. Removed it from long descriptions.
+  * Updated Standards-Version to 3.7.3.
+  * Added dh_desktop to debian/rules.
+  * Added support for dh-buildinfo.
+  * Added new build dependencies: libboost-serialization-dev, python
+  * Added DM-Upload-Allowed: yes to debian/control to support uploads made
+    by debian maintainers in the uploaders field.
+  * Added patch to disable the testsuite: disable-testsuite.patch
+  * Removed libgnashgeo and libgnashbackend from debian/gnash-common.install
+  * removed gparser from debian/gnash-tools.install
+  * Fixed man pages generation system and built new manpages.
+  * Added proper version numbering, including date, to build results.
+  * Delete po/*.gmo and ./compile in clean target in debian/rules.
+  * Fixed disable-testsuite.patch.
+  * debian/rules: Added make install-plugins to install the plugins.
+  * Added Lintian overrides to ignore warning: description-contains-homepage
+    Keeping Homepage in long description for some time for backports.
+  * Added links from gnash manpage to gtk-gnash, kde-gnash and klash.
+  * Removed unneeded build-deps: libdirectfb-dev
+  * Added versioned build dependency on libqt3-mt-dev >= 3.3.8 to make sure
+    that it is licensed under a GPLv3 compatible license. (Closes: #464615)
+  * Added recommends to gstreamer0.10-gnomevfs in gnash-common
+  * Added patch to fix error in upstream manpage.
+  * Added patch ftbfs-gcc-4.3.patch to solve compilation problems with
+    GCC 4.3. Closes: #455395
+  * Removed the XS prefix from Xs-Vcs-Bzr in debian/control, as it is an
+    official tag now.
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Tue, 12 Feb 2008 11:33:29 +0000
+
+gnash (0.8.1~rc.070818-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Add debian/shlibs.local so gnash-tools, gnash-cygnal automatically pick
+    up a dependency on gnash-common (= ${binary:Version}) due to use of
+    the private shared libraries (Closes: #451348); remove resulting duplicate
+    dependency from gnash, klash
+  * Set LD_LIBRARY_PATH while running dpkg-shlibdeps; this and the above
+    fix an unreported FTBFS with new dpkg-shlibdeps versions
+  * Amend changelog for version 0.7.2+cvs20070518.1557-1 to include missing
+    CVE ID CVE-2007-2500 for future reference
+
+ -- Simon McVittie <smcv@ianadd.pseudorandom.co.uk>  Tue, 11 Dec 2007 01:45:07 +0000
+
+gnash (0.8.1~rc.070818-2) unstable; urgency=low
+
+  Upload prepared by by Cyril Brulebois to fix RC bugs:
+
+  [ Cyril Brulebois ]
+  * Deleted the *.gmo from the CLEANFILES in po/Makefile.am to fix package
+    content change on double-build (Closes: #441706). Added the following
+    files into debian/patches to do so:
+     - do-not-delete-gmo-files: one-liner to avoid the deletion.
+     - series: restored series file since there was none left.
+    (Note: po/Makefile.in not patched since it is removed by the clean rules,
+    the patch wouldn't apply if it were modified.)
+  * Updated debian/copyright from GPLv2 to GPLv3 (copyright blurb), and added
+    a versioned dependency on base-files to ensure that the GPL symlink points
+    to the appropriate version, as reported by Robert Millan (Closes: #441019).
+
+ -- Alexander Sack <asac@ubuntu.com>  Mon, 01 Oct 2007 12:28:03 +0000
+
+gnash (0.8.1~rc.070818-1) unstable; urgency=low
+
+  [ Miriam Ruiz ]
+  * debian/control: point Xs-Vcs-Bzr: to Debian release branch
+    http://bzr.debian.org/bzr/pkg-flash/debian.sid
+  * debian/control: break long Build-Depends line into multiple lines
+    for the sake of readability
+  * debian/patches/use_pkglibdir_for_unversioned_libs, debian/patches/series:
+    remove upstream applied patch 'use_pkglibdir_for_unversioned_libs' from bzr
+    and quilt series.
+  * debian/patches/ming_headers.patch, debian/patches/no-kde-ldflags
+    debian/patches/exclude-testsuite-from-built: Removed unneeded patches
+  * debian/rules: make errors in make clean fatal
+  * debian/rules, debian/autogen.sh: Added script to regenerate the autotools
+    building system in case it's not present in the tarball
+  * debian/gnash-common.install: Install libraries whether they're CVS version
+    or not.
+  * debian/rules, debian/gnash-dev.install: Removed references to gnash-dev, as
+    it's not predictable to exist in a near future.
+  * debian/rules, debian/*.install: Modify source so that files to be installed
+    can be referenced from debian/ directory without having to move them.
+  * debian/overrides/* : Added override files for lintian warnings
+  * debian/rules: Comment out dh_makeshlibs, as we're not releasing any public
+    shared library anymore.
+  * debian/rules: Don't copy files from debian/ into debian/tmp: not needed
+    anymore.
+  * debian/*.desktop: Fixed desktop files.
+
+  [ Alexander Sack ]
+  * debian/control: choose sane explicit depends: 'gstreamer0.10-plugins-base,
+    gstreamer0.10-videosink | gstreamer0.10-plugins-good,
+    gstreamer0.10-audiosink | gstreamer0.10-alsa'; promote
+    gstreamer0.10-fluendo-mp3, gstreamer0.10-ffmpeg to recommends as
+    debian has no easy-codec-install backend (yet); fix short
+    description typo.
+  * debian/patches/disable-testsuite: gnash builds now fine without
+    hacking build system to not include testsuite in build
+  * debian/patches/series: drop this patch from quilt series file
+    accordingly.
+
+ -- Alexander Sack <asac@debian.org>  Tue, 21 Aug 2007 13:07:53 +0200
+
+gnash (0.8.1~trunk.070802-1) UNRELEASED; urgency=low
+
+  * debian targetted trunk build 070802 aka preview 0.8.1:
+      bzr repo: https://code.launchpad.net/~vcs-imports/gnash/trunk
+      revno: 5534
+
+ -- Alexander Sack <asac@ubuntu.com>  Thu, 02 Aug 2007 12:30:58 +0000
+
+gnash (0.8.1~trunk.070802-0ubuntu1) UNRELEASED; urgency=low
+
+  Update source for trunk build 070802 aka preview 0.8.1:
+      bzr repo: https://code.launchpad.net/~vcs-imports/gnash/trunk
+      revno: 5534
+  
+  Redo and cleanup packaging in consequence of upstream buildsystem
+  refactoring:
+
+  * debian/rules: dropping obsolete --enable-sound and --enable-mp3 and
+    the bogus --enable-static switch; fixing --enable-gui switch
+  * debian/patches/series: don't apply no-kde-ldflags anymore ... applied
+    upstream
+  * debian/patches/series: don't apply easy-codec-install anymore ... applied
+    upstream
+  * debian/rules: use agg renderer
+  * debian/patches/{disable-testsuite,series}: disable testsuite patch
+  * debian/control: drop firefox-dev from build-depends
+  * debian/patches/*: drop ming headers patch - not used
+  * debian/rules: use enable-gui='gtk,kde'
+  * debian/rules: dropping obsolete --enable-sound and --enable-mp3 and the
+    bogus --enable-static switch; fixing --enable-gui switch
+  * debian/patches/use_pkglibdir_for_unversioned_libs, debian/patches/series:
+    install libs in pkglibdir instead of just libdir - as they are unversioned
+  * reorganize gnash packaging to take upstream changes into account:
+    all common files are now stored in pkglibdir and provided by gnash-common 
+    package; in turn no libgnash0 nor libklash0 package exist anymore; gui
+    code is not linked into the binaries, which are provided by gnash and klash
+    package respectively; since no stable lib api is provided anymore
+    libgnash-dev package is now just gnash-dev (though its currently disabled
+    completely).
+  * debian/gnash-common.install: install those libs we need explicitly to
+    prevent libgnashplugin.so from getting pulled into gnash-common package
+  * debian/rules: don't run dh_makeshlibs for libgnash0 libklash0 anymore ...
+    as they don't exist
+  * debian/control: make gnash-common conflicts/replaces on libklash0,
+    libgnash0, gnash << 0.8.1~
+  * debian/gnash.manpages: remove manpages for gnash package as gnash manpage
+    is now shipped in gnash-common
+  * debian/TODO,debian/overrides/libgnash0,debian/overrides/libklash0:
+    dropping these old/unused files from bzr.
+  
+ -- Alexander Sack <asac@ubuntu.com>  Thu, 02 Aug 2007 09:06:22 +0000
+
+gnash (0.8.0~cvs20070611.1016-1ubuntu3) gutsy; urgency=low
+
+  * Rebuild for the libcurl transition mess.
+
+ -- Steve Kowalik <stevenk@ubuntu.com>  Thu,  5 Jul 2007 01:35:59 +1000
+
+gnash (0.8.0~cvs20070611.1016-1ubuntu2~mt1) feisty; urgency=low
+
+  * feisty backport for mozillateam preview archive
+
+ -- Alexander Sack <asac@ubuntu.com>  Sun, 17 Jun 2007 17:37:00 +0200
+
+gnash (0.8.0~cvs20070611.1016-1ubuntu2) gutsy; urgency=low
+
+  * debian/control: add libgstreamer-plugins-base0.10-dev to fix ftbfs
+
+ -- Alexander Sack <asac@ubuntu.com>  Wed, 13 Jun 2007 09:41:59 +0200
+
+gnash (0.8.0~cvs20070611.1016-1ubuntu1) gutsy; urgency=low
+
+  * debian/patches/gnash_easy_codec_install: initial version of easy codec
+    install patch for gnash
+  * debian/patches/series: adapt quilt series file accordingly
+  * debian/control: adapt Maintainer field for ubuntu upload
+  * debian/control: Depends, Recommends and Suggests for libgnash0 and libklash0
+    changed in preparation of easy-codec-installation:
+       demote gstreamer0.10-fluendo-mp3, gstreamer0.10-ffmpeg from Recommends to Suggests
+       promote gstreamer0.10-plugins-base, gstreamer0.10-alsa from Recommends to Depends
+
+ -- Alexander Sack <asac@ubuntu.com>  Tue, 12 Jun 2007 15:50:37 +0200
+
+gnash (0.8.0~cvs20070611.1016-1) unstable; urgency=low
+
+  * New CVS snapshot 20070611.1016 from release-0-8-0 branch
+  * debian/libklash0.install, debian/control, debian/rules: produce libklash0
+    package and provide proper shlibs version info
+  * debian/patches/ming_headers.patch: resurrect ming_headers patch that was
+    previously reverted
+  * debian/patches/exclude-testsuite-from-built: add patch to exclude
+    testsuite from being build
+  * debian/patches/no-kde-ldflags: take care that gnash binaries don't pull in
+    kde libs/depends
+  * debian/patches/series: update quilt series accordingly
+  * debian/rules: use --enable-renderer=opengl for now in order to build klash
+    without doing hackish stuff> * debian/control: omit extra whitespace before
+    Homepage: line *all* package descriptions
+  * debian/control: drop swfmill from build-depends (since we don't build the
+    testsuite atm)
+  * debian/control: add Alexander Sack <asac@jwsdot.com> to Uploaders field
+  * debian/control: new packages for kde: libklash0 and klash; fix depends of
+    konqueror-plugin-gnash package accordingly
+  * debian/control: drop libsdl1.2-dev, libsdl-mixer1.2-dev, libfltk1.1-dev
+    from build-depends
+  * debian/control: use automake1.9 | automake in Build-Depends
+  * debian/control: don't support gstreamer 0.8 anymore -> drop from Build-Depends
+
+ -- Alexander Sack <asac@jwsdot.com>  Tue, 12 Jun 2007 14:10:00 +0200
+
+gnash (0.7.2+cvs20070525.0721-1) unstable; urgency=low
+
+  * New Upstream Release. Downloaded from CVS.
+  * Added ming_headers.patch patch so that the missing definitions in ming
+    headers are available for the check. Closes: #425888
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Fri, 25 May 2007 07:21:23 +0000
+
+gnash (0.7.2+cvs20070518.1557-1) unstable; urgency=low
+
+  * New Upstream Release. Downloaded from CVS.
+  * Depending on libcurl?-gnutls-dev instead of libcurl?-openssl-dev for
+    not depending on OpenSSL (incompatible with GPL license). Closes: #423884
+  * Closes: #423433 , memory corruption vulnerability in gnash, due to a out
+    of bounds memory access ( http://savannah.gnu.org/bugs/?19774,
+    CVE-2007-2500 )
+  * gstreamer0.10-audiosink is a virtual package, modifying control.
+  * Updated dependencies to use libcurl4 instead of libcurl3.
+  * Depending on swfmill for check (as well as from ming and mtasc)
+  * Make check is fatal error now.
+  * Upload sponsored by Petter Reinholdtsen.
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Fri, 18 May 2007 15:57:38 +0000
+
+gnash (0.7.2+cvs20070512.1527-1) unstable; urgency=low
+
+  * New Upstream Release. Downloaded from CVS.
+    + YouTube seems to be working now
+      http://lists.gnu.org/archive/html/gnash-dev/2007-05/msg00000.html
+  * Enabled gstreamer in configure: --enable-gstreamer --enable-media=gst
+  * Changed to use AGG renderer now: --enable-renderer=agg
+  * Added build dependency: libagg-dev
+  * gstreamer0.10-plugins-base, gstreamer0.10-alsa, gstreamer0.10-ffmpeg,
+    and gstreamer0.10-audiosink are needed for YouTube. Added as recommends
+      http://www.mail-archive.com/gnash@gnu.org/msg00624.html
+  * Added gstreamer0.10-fluendo-mp3 to recommends in libgnash0
+  * Upload sponsored by Petter Reinholdtsen.
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Sat, 12 May 2007 17:27:45 +0200
+
+gnash (0.7.2+cvs20070428.1515-2) experimental; urgency=low
+
+  * Added binary package: cygnal (media server)
+  * Upload sponsored by Petter Reinholdtsen.
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Sat, 28 Apr 2007 21:45:12 +0200
+
+gnash (0.7.2+cvs20070428.1515-1) unstable; urgency=low
+
+  * New Upstream Release. Downloaded from CVS.
+  * Added dependencies: libtool, libltdl3, libboost-date-time-dev,
+    libavcodec-dev, libavformat-dev
+  * Added dependencies for checking: libming-dev, libming-util, mtasc
+  * Removed binary package: klash (KDE-based standalone player)
+  * Added binary package: cygnal (media server)
+  * Added #include <cctype> to server/StringPredicates.h so that it
+    compiles with gcc 4.3. Patch: gcc4.3.patch (Closes: #417210)
+  * Added link to iceweasel plugins directory (Closes: #399920)
+  * Upload sponsored by Petter Reinholdtsen.
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Thu, 26 Apr 2007 10:29:52 +0200
+
+gnash (0.7.2-1) unstable; urgency=low
+
+  * New Alpha Release from Upstream:
+    + Polling main loop replaced with event driven framework for GTK.
+    + New GUI abstraction layer supporting GTK2, KDE, SDL, and a bare
+      framebuffer.
+    + Movies are parsed by a background thread, so they start playing
+      while still loading.
+    + Plugin supports web navigation and starts playing while the stream
+      is loading.
+    + New AntiGrain (AGG) 2D backend added for framebuffer devices without
+      OpenGL support.
+    + New Framebuffer GUI for devices without X11.
+    + Sound now works using ffmpeg, Gstreamer, or libMad.
+    + Supports cross configuration and cross compiling for embedded targets.
+    + A whole slew of minor bugs that kept various movies from playing.
+
+  * Upload sponsored by Petter Reinholdtsen.
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Sat, 18 Nov 2006 11:57:04 +0000
+
+gnash (0.7.1+cvs20061014.1744-1) unstable; urgency=low
+
+  * New Upstream Release. Downloaded from CVS.
+  * New soundhandler for gnash. It uses SDL (not SDL_mixer) for
+    soundhandling, uses ffmpeg or libmad for mp3 decoding and replaces
+    the old SDL_mixer based soundhandler. Changed --enable-sound=sdl in
+    configure.
+  * Changed Firefox plugin directory from /usr/lib/mozilla-firefox/plugins/
+    to /usr/lib/firefox/plugins/
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Sat, 14 Oct 2006 17:45:57 +0000
+
+gnash (0.7.1+cvs20061006.1521-1) unstable; urgency=low
+
+  * New Upstream Release. Downloaded from CVS.
+  * Added usr/lib/kde3/libklashpart.la to konqueror-plugin-gnash so that
+    Konqueror can detect the plugin. Thanks to J.Rinas <jrinas@gmx.de>.
+    Closes: #384477. Closes: #389445.
+  * Added --without-gcc-arch to ./configure in debian/rules so that the
+    build script don't pass options like "-march=prescot" to gcc even if
+    the CPU of the build system supports those. Thanks to Timo Juhani
+    Lindfors <timo.lindfors@iki.fi>. Closes: #390919
+  * Added libboost-dev and libboost-thread-dev to Build-Depends.
+  * Added cmdline.patch to solve problem of cmdline parser failure
+    with "a=b.swf". Thanks to Robert Millan <rmh@aybabtu.com>.
+    Closes: #383770
+  * Removed patches: amf.patch getopt.patch
+  * Leaving the CVS dirs in package. They might be useful for updating the
+    source tree for testing stuff. Closes: #390283
+  * Added make check to debian/rules, even though the build won't stop if
+    failures are found.
+  * Beautify debian/rules so that output can be more easily analyzed.
+
+  * Upload sponsored by Petter Reinholdtsen.
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Fri,  6 Oct 2006 17:22:59 +0200
+
+gnash (0.7.1+cvs20060924.1330-1) unstable; urgency=low
+
+  * New Upstream Release. Downloaded from CVS.
+  * Modified building system for using quilt.
+  * Added gnash dependency to mozilla-plugin-gnash. Closes: #389141
+  * Added libfltk1.1-dev as a build dependency.
+  * Modified desktop files, they had a wrong program name. Closes: #384628
+  * Added copyright notice for Bitstream Vera Fonts to debian/copyright
+
+  * Upload sponsored by Petter Reinholdtsen.
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Sun, 24 Sep 2006 15:31:43 +0200
+
+gnash (0.7.1+cvs20060920.2136-1) unstable; urgency=low
+
+  * New Upstream Release. Downloaded from CVS.
+  * Added build dependency: libcurl3-gnutls-dev | libcurl3-openssl-dev
+  * Temporarily removed the -dev package until the API + ABI are more stable
+  * Temporarily added a versioned dependency on libgnash0
+  * Make package bin-NMU-able by using ${binary:Version} and Build-Depend on
+    dpkg-dev (>= 1.13.19)
+
+  * Upload sponsored by Petter Reinholdtsen.
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Wed, 20 Sep 2006 21:37:43 +0000
+
+gnash (0.7.1+cvs20060820.2237-1) experimental; urgency=low
+
+  * New Upstream Release. Downloaded from CVS.
+  * Added icon and .desktop file shortcut.
+  * Build-Depend on libxul-dev instead of mozilla-dev.
+  * Made minor modifications to the code to make it compile.
+  * Updated Standards-Version to 3.7.2 (no changes needed).
+  * Upstream confirms that the code that kills the processes has
+    been rewritten.  Closes: #374996
+
+  * Upload sponsored by Petter Reinholdtsen.
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Mon, 21 Aug 2006 00:38:53 +0200
+
+gnash (0.7.1-1) experimental; urgency=low
+
+  * Initial release. Closes: #347352
+
+  * Upload sponsored by Petter Reinholdtsen.
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Sun,  7 May 2006 00:54:46 +0000
--- gnash-0.8.2.orig/debian/klash.links
+++ gnash-0.8.2/debian/klash.links
@@ -0,0 +1,3 @@
+usr/bin/kde-gnash usr/bin/klash
+usr/share/man/man1/gnash.1.gz usr/share/man/man1/klash.1.gz
+usr/share/man/man1/gnash.1.gz usr/share/man/man1/kde-gnash.1.gz
--- gnash-0.8.2.orig/debian/gnash-tools.install
+++ gnash-0.8.2/debian/gnash-tools.install
@@ -0,0 +1 @@
+tmp/usr/bin/gprocessor usr/bin/
--- gnash-0.8.2.orig/debian/gnash.xpm
+++ gnash-0.8.2/debian/gnash.xpm
@@ -0,0 +1,312 @@
+/* XPM */
+static char *dummy[]={
+"32 32 277 2",
+"Qt c None",
+".A c #152c41",
+".L c #162d42",
+".K c #172e43",
+".W c #182f45",
+".M c #192f45",
+".N c #1a2f45",
+".p c #1a3045",
+".O c #1a3046",
+".X c #1c3248",
+".Y c #1d3349",
+".Z c #1e344a",
+".V c #1f354a",
+"#k c #20364b",
+"#a c #21364c",
+"#b c #23384e",
+"#j c #23394e",
+"#d c #24394e",
+"#c c #24394f",
+"#l c #253a4f",
+"#x c #253a50",
+".z c #263b4f",
+"#e c #273c51",
+"#w c #283e52",
+"#y c #293d52",
+"#m c #293d53",
+"#n c #293e53",
+"#I c #2b3f54",
+"#o c #2c4157",
+"#z c #2e4257",
+"#A c #2e4258",
+"#D c #2f4358",
+"#J c #304459",
+"#E c #30445a",
+"## c #314b62",
+"#K c #34475c",
+"#O c #35485d",
+".B c #36495c",
+"#0 c #36495d",
+"#P c #36495e",
+".q c #374a5c",
+"#S c #374a5f",
+".0 c #384b5e",
+"#T c #394c61",
+"#W c #3a4d62",
+"aa c #3b4e62",
+"#X c #3c4e63",
+"#1 c #3e5064",
+"a# c #3e5065",
+"#2 c #3f5166",
+"#5 c #405267",
+"a. c #405367",
+"#H c #40586f",
+"#9 c #425368",
+"ab c #435569",
+"#f c #43576a",
+"#N c #435a71",
+"ac c #45566a",
+"ad c #45566b",
+"ah c #45576b",
+"al c #46576c",
+"ak c #47586d",
+"am c #495a6e",
+".P c #495b6b",
+"#s c #49647c",
+"#i c #496780",
+".y c #4a5b6c",
+"ao c #4a5c70",
+"ap c #4b5b70",
+"an c #4b5c70",
+"ag c #4b5f74",
+".f c #4c5d6d",
+"aw c #4c5d71",
+"#v c #4c6a83",
+"aH c #4d5d72",
+"av c #4d5e72",
+"#6 c #4d6279",
+"aI c #4f5f73",
+"aG c #506074",
+"ay c #506075",
+"ax c #506175",
+"#B c #506d86",
+"aF c #526276",
+"a5 c #526277",
+"bd c #526377",
+"aE c #536277",
+"au c #53667b",
+".# c #556574",
+"aU c #566579",
+"aK c #56657a",
+"aJ c #56667a",
+"be c #57667a",
+"aT c #57677b",
+"aD c #57687d",
+"aS c #58687c",
+"aV c #5a6a7e",
+"a3 c #5b6a7d",
+"a2 c #5b6a7e",
+"aW c #5b6b7e",
+"aX c #5b6b7f",
+"a4 c #5c6a7e",
+"aY c #5c6b7e",
+"a6 c #5c6b7f",
+".r c #5c6c7b",
+"bP c #5e6d80",
+"az c #5f748b",
+"b# c #606e82",
+"a8 c #606f82",
+"#Q c #607f99",
+"a7 c #616f83",
+"br c #617084",
+"bA c #627184",
+"aZ c #62758a",
+".o c #637281",
+".e c #647280",
+"bf c #647286",
+".J c #647382",
+".1 c #657482",
+"bQ c #657589",
+"aL c #657c92",
+".a c #667482",
+"bg c #667588",
+"aj c #66829b",
+"#t c #6689a5",
+"bq c #677488",
+".g c #677683",
+"ba c #67788c",
+"aP c #687f96",
+"bp c #69778a",
+"bo c #69778b",
+".2 c #697988",
+"a9 c #697b90",
+"a1 c #6a8097",
+"bB c #6b798c",
+"bs c #6c7a8d",
+"b2 c #6d7b8d",
+".d c #6e7c89",
+"bz c #6e7c8f",
+"b3 c #707e90",
+".U c #717f8c",
+"bO c #717f91",
+"#r c #7197b3",
+"#8 c #7293af",
+"#C c #7298b5",
+"#F c #7399b6",
+"by c #758296",
+"cc c #758393",
+".b c #778490",
+"#L c #779ebb",
+"bx c #788599",
+"bw c #78869a",
+"bn c #788ea5",
+"aq c #789ab5",
+"bR c #798598",
+"cm c #798796",
+".c c #7a8692",
+"b. c #7a96af",
+".n c #7b8793",
+".7 c #7d96aa",
+".8 c #7d98ac",
+"as c #7da1bd",
+"aR c #7e9fba",
+"b4 c #7f8c9e",
+"cn c #808d9e",
+"#p c #81acca",
+"co c #828f9f",
+"cb c #8390a0",
+"bN c #8490a3",
+"cr c #8591a2",
+"bC c #8599af",
+"cs c #8692a2",
+"ai c #86aecb",
+"b1 c #8793a3",
+"bv c #879fb6",
+"#Z c #87b0cf",
+"cp c #8894a5",
+"cl c #8995a5",
+"cq c #8995a6",
+"cd c #8996a7",
+"#Y c #89b4d3",
+".h c #8a95a0",
+".x c #8a96a0",
+"ce c #8a96a8",
+"bM c #8b98ab",
+"bj c #8baecb",
+".Q c #8c97a2",
+"bk c #8caecb",
+"at c #8cb6d5",
+".R c #8d98a3",
+"bL c #8d9aad",
+"bK c #8d9aae",
+"bJ c #8d9bae",
+"#g c #8eb8d7",
+"aO c #8fb8d7",
+"#V c #8fbbdb",
+"#4 c #90bcdc",
+"bS c #919dae",
+"bI c #91a2b7",
+"aM c #91bbda",
+".S c #92a2af",
+"bh c #93bad9",
+"ar c #94c1e1",
+"bt c #96bedc",
+"aQ c #96c1e1",
+".3 c #98c1de",
+"#. c #98c5e4",
+"b0 c #99a5b6",
+".T c #99afc0",
+"bb c #99c6e6",
+"bT c #9aa6b9",
+"#h c #9ac8e9",
+"af c #9ac9ea",
+"#R c #9ac9eb",
+"#U c #9acaeb",
+"bV c #9ba9bc",
+"bW c #9ba9bd",
+"bD c #9bbcd7",
+"#3 c #9bcaec",
+"ae c #9bcbec",
+"cf c #9ca7b7",
+"bU c #9ca9bc",
+"bX c #9ca9bd",
+"bZ c #9da9bc",
+"bY c #9da9bd",
+".6 c #9dc9e7",
+"bc c #9dcbec",
+"bH c #9ebfda",
+"aB c #9eceef",
+"#u c #9ecff1",
+"bi c #9fceef",
+"aA c #9fd0f1",
+"#7 c #9fd0f2",
+"aC c #a0d0f1",
+"#G c #a0d2f4",
+"bG c #a1c9e7",
+"#M c #a1d2f5",
+".C c #a2abb4",
+"ck c #a2adbc",
+"b5 c #a2aec0",
+"b8 c #a2b0c3",
+".9 c #a2d0f0",
+"ca c #a3aebd",
+"b7 c #a3b0c3",
+"b9 c #a3b1c4",
+".m c #a4adb5",
+"cg c #a4aebe",
+"b6 c #a4b0c2",
+"bE c #a4cfef",
+".4 c #a4d5f6",
+"aN c #a4d6f8",
+"c. c #a5b2c4",
+"bm c #a5d7f9",
+"a0 c #a5d8fb",
+"bu c #a6d8fa",
+"cj c #a7b1c1",
+"ch c #a7b2c2",
+"c# c #a7b2c3",
+"bF c #a7d8fa",
+"bl c #a7dafc",
+"#q c #a7dbfe",
+"ci c #a8b2c2",
+".5 c #a8dcff",
+".I c #b1b9c0",
+".D c #b5bcc3",
+".H c #b5bcc4",
+".E c #b5bdc4",
+".G c #b6bcc4",
+".F c #b6bdc4",
+".s c #bcc2c8",
+".i c #bec5cb",
+".l c #cbd0d5",
+".w c #ced2d7",
+".t c #d8dce0",
+".j c #dadde1",
+".v c #dadee1",
+".u c #dbdee2",
+".k c #dfe2e5",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQt.#.a.b.c.d.eQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQt.f.g.h.i.j.k.l.m.n.oQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQt.p.q.r.s.t.u.u.u.u.v.w.x.y.zQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQt.A.A.B.C.D.E.E.F.G.H.F.H.I.J.K.LQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQt.M.N.O.P.Q.R.R.S.T.T.R.R.R.R.U.V.p.WQtQtQtQtQtQtQt",
+"QtQtQtQtQtQt.X.Y.Z.V.0.1.2.3.4.5.5.6.7.8.9#.##.Z.Y.XQtQtQtQtQtQt",
+"QtQtQtQtQtQt#a#b#c#d#e#f#g.5.5.5.5.5.5#h.5.5#i#c#j#kQtQtQtQtQtQt",
+"QtQtQtQtQt#l#e#m#n#n#o#p.5.5#q#r#s#t#u.5.5.5#v#n#w#e#xQtQtQtQtQt",
+"QtQtQtQtQt#y#z#A#A#A#B.5.5.5#C#A#D#E#F.5.5#G#H#D#A#z#yQtQtQtQtQt",
+"QtQtQtQt#I#J#K#K#K#K#L.5.5#M#N#K#O#P#Q.5.5#R#P#O#K#K#J#IQtQtQtQt",
+"QtQtQtQt#D#S#T#T#T#T#U.5.5#V#T#T#W#X#Y.5.5#Z#X#W#T#T#S#DQtQtQtQt",
+"QtQtQtQt#0#1#2#2#2#2#3.5.5#4#2#2#5#6#7.5.5#8#9a.#2#2a##PQtQtQtQt",
+"QtQtQtQtaaabacadacadae.5.5afagadahai.5.5.5ajakaladadabaaQtQtQtQt",
+"QtQtQtQt#2amanaoapaoaq.5.5.5arasat.5.5.5.5auavawananam#2QtQtQtQt",
+"QtQtQtQt#5avaxayaxayazaA.5.5.5.5.5aB.5.5aCaDaEaFayaGaH#5QtQtQtQt",
+"QtQtQtQtabaIaJaKaJaJaJaLaMaNaNaOaPaQ.5.5aRaSaSaTaJaUaIabQtQtQtQt",
+"QtQtQtQtQtavaVaWaXaYaXaYaXaYaXaYaZ#q.5a0a1a2a3a2a4aVaHQtQtQtQtQt",
+"QtQtQtQtQta5a6a7a8a9b.a7a7b#b#babb.5.5bca7a7a7a7a7a6bdQtQtQtQtQt",
+"QtQtQtQtQtQtbebfbgbh.5bibjbjbkbl.5.5bmbnbobobpbqbfbeQtQtQtQtQtQt",
+"QtQtQtQtQtQtaJbrbsbt.5.5.5.5.5.5.5bubvbwbwbxbybzbAaJQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtaVbBbCbDbEbFbFbFbGbHbIbJbKbLbMbNbObPQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtbQbRbSbTbUbVbVbWbWbXbXbYbZb0b1b2QtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtb3b4b0b5b6b7b8b8b9c.c#cacbccQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtcdcecfcgchcicjckbSclcmQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtcncocpcqcrcsQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt"};
--- gnash-0.8.2.orig/debian/README.Debian
+++ gnash-0.8.2/debian/README.Debian
@@ -0,0 +1,57 @@
+Gnash for Debian
+----------------
+
+0.8.2 is the first beta release of Gnash. Gnash supports many SWF v7
+features and ActionScript 2 classes. with growing support for SWF v8
+and v9. Gnash also runs on many GNU/Linux distributions, embedded
+GNU/Linux, FreeBSD, NetBSD, OpenBSD, non x86 processors, and 64 bit
+architectures.
+
+The plugin works best with Firefox 1.0.4 or newer, and
+should work in any Mozilla based browser. There is also a standalone
+player for GNOME or KDE based desktops.
+
+Gnash supports the majority of Flash opcodes up to SWF version 7, and
+a wide sampling of ActionScript 2 classes for SWF version 8.5. Flash
+version 9 and ActionScript 3 support is being worked on.  All the
+core ones are implemented, and many of the newer ones work, but may be
+missing some of their methods. If the browser only displays a blank
+window, it is likely because of an unimplemented feature. All
+unimplemented opcodes and ActionScript classes and methods print a
+warning when using -v with gnash or gprocessor. Using gprocessor -v is
+a quick way to see why a movie isn't playing correctly.
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Fri, 07 Mar 2008 09:54:08 +0100
+
+Please make sure you  have a URL handling gstreamer plugin, such as
+gnomevfssrc, neonhttpsrc or souphttpsrc for playing NetStream playback.
+
+Note that if you use neonhttpsrc you must install it from Gstreamer
+CVS; otherwise it won't be compatible with youtube.
+
+For a nonexhaustive list of modules you will need, please see
+http://bjacques.org/gst-plugins:
+
+gnomevfs *or* souphttpsrc *or* [neonhttpsrc from gstreamer svn] *or* giosrc
+
+ffmpegcolorspace
+capsfilter
+videoscale
+fakesink
+autoaudiosink
+alsasink (or your preferred audio sink)
+audioconvert
+
+For FLV playback (YouTube and friends):
+mpegvideoparse (plugins-ugly)
+gst-ffmpeg
+
+For MP3 playback (YouTube and friends):
+mpegaudioparse (plugins-ugly)
+mad (plugins-ugly) *or* flump3dec
+
+In addition or instead of the above, Gnash is compatible with any other
+streamer audio and/or video codecs Gstreamer supports, such as Ogg 
+Theora-vorbis, dirac-vorbis etc.
+
+ -- Miriam Ruiz <little_miry@yahoo.es>  Tue, 12 Feb 2008 11:33:29 +0000
--- gnash-0.8.2.orig/debian/h2m/gnash.h2m
+++ gnash-0.8.2/debian/h2m/gnash.h2m
@@ -0,0 +1,15 @@
+Include file for gnash man page
+
+[name]
+gnash \- free Flash movie player
+
+[synopsis]
+.B gnash  [options] movie_file.swf
+
+[description]
+Gnash is a free Flash movie player, which works either standalone, or as plugin for Firefox/Mozilla or Konqueror.
+
+This program plays a SWF (Shockwave Flash) movie using OpenGL
+
+[see also]
+You can find more information at http://www.gnu.org/software/gnash/
--- gnash-0.8.2.orig/debian/h2m/Makefile
+++ gnash-0.8.2/debian/h2m/Makefile
@@ -0,0 +1,30 @@
+#!/usr/bin/make -f
+
+MANPAGES= gnash.1 gprocessor.1 cygnal.1
+
+all: $(MANPAGES)
+
+# NEED: help2man
+
+clean:
+	rm -f $(MANPAGES)
+
+gnash.1: gnash
+	chmod +x $<
+	help2man --no-info --section=1 --include=gnash.h2m ./$< > $@
+
+klash.1: klash
+	chmod +x $<
+	help2man --no-info --section=1 --include=klash.h2m ./$< > $@
+
+gparser.1: gparser
+	chmod +x $<
+	help2man --no-info --section=1 --include=gparser.h2m ./$< > $@
+
+gprocessor.1: gprocessor
+	chmod +x $<
+	help2man --no-info --section=1 --include=gprocessor.h2m ./$< > $@
+
+cygnal.1: cygnal
+	chmod +x $<
+	help2man --no-info --section=1 --include=cygnal.h2m ./$< > $@
--- gnash-0.8.2.orig/debian/h2m/gnash
+++ gnash-0.8.2/debian/h2m/gnash
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+BASEDIR=".."
+LIB="$BASEDIR/tmp/usr/lib/gnash"
+BIN="$BASEDIR/tmp/usr/bin"
+
+case "$1" in
+  "--help")
+    LD_LIBRARY_PATH="$LIB" $BIN/gnash --help | \
+      grep --extended-regexp --regexp="^option|^$|^ |^key" | \
+      grep -v "^   Target: " | grep -v "^   Renderer: " | \
+      grep -v "^   Configured with: " | grep -v "^   CXXFLAGS: " | \
+      awk '(p<2){if(NF==0){p++;next;}}{print}'
+    ;;
+   "--version")
+    LD_LIBRARY_PATH="$LIB" $BIN/gnash --version 2>&1 | \
+      head -n 1 | awk '{ print $2 }'
+    ;;
+esac
+exit 0
--- gnash-0.8.2.orig/debian/h2m/gparser
+++ gnash-0.8.2/debian/h2m/gparser
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+BASEDIR=".."
+LIB="$BASEDIR/tmp/usr/lib/gnash"
+BIN="$BASEDIR/tmp/usr/bin"
+
+case "$1" in
+  "--help")
+    LD_LIBRARY_PATH="$LIB" $BIN/gparser --help | \
+      grep --extended-regexp --regexp="^option|^$|^ |^key" | \
+      awk '(p<1){if(NF==0){p++;next;}}{print}'
+    ;;
+   "--version")
+    echo gparser \
+        `LD_LIBRARY_PATH="$LIB" $BIN/gparser --version 2>&1 | awk '{ print $4 }' | awk -F, '{ print $1 }'` \
+        \(gnash \
+        `LD_LIBRARY_PATH="$LIB" $BIN/gnash --version 2>&1 | head -n 1 | awk '{ print $2 }'`\)
+    ;;
+esac
+exit 0
--- gnash-0.8.2.orig/debian/h2m/cygnal
+++ gnash-0.8.2/debian/h2m/cygnal
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+BASEDIR=".."
+LIB="$BASEDIR/tmp/usr/lib/gnash"
+BIN="$BASEDIR/tmp/usr/bin"
+
+case "$1" in
+  "--help")
+    LD_LIBRARY_PATH="$LIB" $BIN/cygnal --help | \
+      grep --extended-regexp --regexp="^usage|^$|^ |^key" | \
+      awk '(p<2){if(NF==0){p++;next;}}{print}'
+    ;;
+   "--version")
+    LD_LIBRARY_PATH="$LIB" $BIN/cygnal --version 2>&1 | \
+      head -n 1 | awk '{ print $2 }'
+    ;;
+esac
+exit 0
--- gnash-0.8.2.orig/debian/h2m/klash.1
+++ gnash-0.8.2/debian/h2m/klash.1
@@ -0,0 +1,103 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.36.
+.TH KLASH "1" "June 2007" "klash 0.8.0" "User Commands"
+.SH NAME
+klash \- plays a SWF movie
+.SH SYNOPSIS
+.B klash  [options] movie_file.swf
+.SH DESCRIPTION
+Gnash is a free Flash movie player, which works either standalone, or as plugin for Firefox/Mozilla or Konqueror.
+
+This program plays a SWF (Shockwave Flash) movie using the KDE Libraries.
+.PP
+.SS options:
+.TP
+\fB\-h\fR, \fB\-\-help\fR
+Print this info.
+.HP
+\fB\-s\fR <factor> Scale the movie up/down by the specified factor
+.TP
+\fB\-c\fR
+Produce a core file instead of letting SDL trap it
+.TP
+\fB\-d\fR num
+Number of milliseconds to delay in main loop
+.TP
+\fB\-v\fR
+Be verbose; i.e. print log messages to stdout
+.TP
+\fB\-va\fR
+Be verbose about movie Actions
+.TP
+\fB\-vp\fR
+Be verbose about parsing the movie
+.TP
+\fB\-m\fR <bias>
+Specify the texture LOD bias (float, default is \fB\-1\fR.0)
+.TP
+\fB\-x\fR <ID>
+X11 Window ID for display
+.TP
+\fB\-w\fR
+Produce the disk based debug log
+.TP
+\fB\-j\fR <width>
+Set window width
+.HP
+\fB\-k\fR <height> Set window height
+.TP
+\fB\-1\fR
+Play once; exit when/if movie reaches the last frame
+.TP
+\fB\-g\fR
+Turn on the Flash debugger
+.HP
+\fB\-r\fR <0|1|2|3>
+.IP
+0 disables both rendering & sound (good for batch tests)
+1 enables rendering & disables sound
+2 enables sound & disables rendering
+3 enables both rendering & sound (default)
+.TP
+\fB\-t\fR <sec>
+Timeout and exit after the specified number of seconds
+.TP
+\fB\-b\fR <bits>
+Bit depth of output window (16 or 32, default is 16)
+.TP
+\fB\-u\fR <url>
+Set "real" url of the movie
+(useful for downloaded movies)
+.TP
+\fB\-U\fR <url>
+Set "base" url for this run
+(used to resolve relative urls, defaults to movie url)
+.TP
+\fB\-P\fR <param>
+Set parameter (ie. "FlashVars=A=1&b=2")
+.TP
+\fB\-\-version\fR
+Print gnash's version number and exit
+.SS "keys:"
+.TP
+CTRL\-Q, CTRL\-W, ESC
+Quit/Exit
+.TP
+CTRL\-P
+Toggle Pause
+.TP
+CTRL\-R
+Restart the movie
+.TP
+CTRL\-[ or kp\-
+Step back one frame
+.TP
+CTRL\-] or kp+
+Step forward one frame
+.TP
+CTRL\-B
+Toggle background color
+.IP
+Target:
+Renderer: opengl   GUI: gtk   Media handler: gst
+.SH "SEE ALSO"
+You can find more information at http://www.gnu.org/software/gnash/
--- gnash-0.8.2.orig/debian/h2m/gprocessor.h2m
+++ gnash-0.8.2/debian/h2m/gprocessor.h2m
@@ -0,0 +1,15 @@
+Include file for gprocessor man page
+
+[name]
+gprocessor \- an SWF preprocessor for Gnash
+
+[synopsis]
+.B gprocessor [options] [swf files to process...]
+
+[description]
+Gnash is a free Flash movie player, which works either standalone, or as a Firefox/Mozilla plugin.
+
+This program preprocesses the given SWF movie files and optionally writes preprocessed shape and font data to cache files, so the associated SWF files can be loaded faster.
+
+[see also]
+You can find more information at http://www.gnu.org/software/gnash/
--- gnash-0.8.2.orig/debian/h2m/cygnal.1
+++ gnash-0.8.2/debian/h2m/cygnal.1
@@ -0,0 +1,24 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.36.
+.TH CYGNAL "1" "March 2008" "cygnal 0.8.2" "User Commands"
+.SH NAME
+cygnal \- streaming media server
+.SH SYNOPSIS
+.B cygnal  [options...]
+.SH DESCRIPTION
+Cygnal is a Gnash's streaming media server.
+.PP
+usage: cygnal [options...]
+.TP
+\fB\-\-help\fR(\fB\-h\fR)
+Print this info.
+.TP
+\fB\-\-version\fR
+Print the version numbers.
+.TP
+\fB\-\-verbose\fR (\fB\-v\fR)
+Output verbose debug info.
+.TP
+\fB\-\-port\-offset\fR (\fB\-p\fR)
+RTMPT port offset.
+.SH "SEE ALSO"
+You can find more information at http://www.gnu.org/software/gnash/
--- gnash-0.8.2.orig/debian/h2m/gprocessor
+++ gnash-0.8.2/debian/h2m/gprocessor
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+BASEDIR=".."
+LIB="$BASEDIR/tmp/usr/lib/gnash"
+BIN="$BASEDIR/tmp/usr/bin"
+
+case "$1" in
+  "--help")
+    LD_LIBRARY_PATH="$LIB" $BIN/gprocessor --help | \
+      grep --extended-regexp --regexp="^option|^$|^ |^key" | \
+      awk '(p<3){if(NF==0){p++;next;}}{print}'
+    ;;
+   "--version")
+    echo gprocessor \
+        `LD_LIBRARY_PATH="$LIB" $BIN/gprocessor --version 2>&1 | awk '{ print $4 }' | awk -F, '{ print $1 }'` \
+        \(gnash \
+        `LD_LIBRARY_PATH="$LIB" $BIN/gnash --version 2>&1 | head -n 1 | awk '{ print $2 }'`\)
+    ;;
+esac
+exit 0
--- gnash-0.8.2.orig/debian/h2m/klash
+++ gnash-0.8.2/debian/h2m/klash
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+BASEDIR=".."
+LIB="$BASEDIR/tmp/usr/lib/gnash"
+BIN="$BASEDIR/tmp/usr/bin"
+
+case "$1" in
+  "--help")
+    LD_LIBRARY_PATH="$LIB" $BIN/gnash --help | \
+      grep --extended-regexp --regexp="^option|^$|^ |^key" | \
+      awk '(p<2){if(NF==0){p++;next;}}{print}'
+    ;;
+   "--version")
+    LD_LIBRARY_PATH="$LIB" $BIN/gnash --version 2>&1 | \
+      head -n 1 | awk '{ print $2 }'
+    ;;
+esac
+exit 0
--- gnash-0.8.2.orig/debian/h2m/gprocessor.1
+++ gnash-0.8.2/debian/h2m/gprocessor.1
@@ -0,0 +1,48 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.36.
+.TH GPROCESSOR "1" "March 2008" "gprocessor 1.0 (gnash 0.8.2)" "User Commands"
+.SH NAME
+gprocessor \- an SWF preprocessor for Gnash
+.SH SYNOPSIS
+.B gprocessor [options] [swf files to process...]
+.SH DESCRIPTION
+Gnash is a free Flash movie player, which works either standalone, or as a Firefox/Mozilla plugin.
+
+This program preprocesses the given SWF movie files and optionally writes preprocessed shape and font data to cache files, so the associated SWF files can be loaded faster.
+.PP
+options:
+.TP
+\fB\-\-help\fR(\fB\-h\fR)
+Print this info.
+.TP
+\fB\-\-version\fR
+Print the version numbers.
+.TP
+\fB\-w\fR
+Write a .gsc file with preprocessed info, for each input file.
+.TP
+\fB\-v\fR
+Be verbose; i.e. print log messages to stdout
+.TP
+\fB\-vp\fR
+Be verbose about movie parsing
+.TP
+\fB\-va\fR
+Be verbose about ActionScript
+.HP
+\fB\-d\fR [<ms>]
+.IP
+Milliseconds delay between advances (0 by default).
+If '\-1' the delay will be computed from the FPS.
+.TP
+\fB\-r\fR <times>
+Allow the given number of complete runs.
+Keep looping undefinitely if set to 0.
+Default is 1 (end as soon as the last frame is reached).
+.HP
+\fB\-f\fR <frames>
+.IP
+Allow the given number of frame advancements.
+Keep advancing untill any other stop condition
+is encountered if set to 0 (default).
+.SH "SEE ALSO"
+You can find more information at http://www.gnu.org/software/gnash/
--- gnash-0.8.2.orig/debian/h2m/cygnal.h2m
+++ gnash-0.8.2/debian/h2m/cygnal.h2m
@@ -0,0 +1,13 @@
+Include file for cygnal man page
+
+[name]
+cygnal \- streaming media server
+
+[synopsis]
+.B cygnal  [options...]
+
+[description]
+Cygnal is a Gnash's streaming media server.
+
+[see also]
+You can find more information at http://www.gnu.org/software/gnash/
--- gnash-0.8.2.orig/debian/h2m/gparser.h2m
+++ gnash-0.8.2/debian/h2m/gparser.h2m
@@ -0,0 +1,15 @@
+Include file for gparser man page
+
+[name]
+gparser \- an SWF parser for Gnash
+
+[synopsis]
+.B gparser [swf files to process...]
+
+[description]
+Gnash is a free Flash movie player, which works either standalone, or as a Firefox/Mozilla plugin.
+
+This program parses the information contained in SWF files.
+
+[see also]
+You can find more information at http://www.gnu.org/software/gnash/
--- gnash-0.8.2.orig/debian/h2m/gnash.1
+++ gnash-0.8.2/debian/h2m/gnash.1
@@ -0,0 +1,105 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.36.
+.TH GNASH "1" "March 2008" "gnash 0.8.2" "User Commands"
+.SH NAME
+gnash \- free Flash movie player
+.SH SYNOPSIS
+.B gnash  [options] movie_file.swf
+.SH DESCRIPTION
+Gnash is a free Flash movie player, which works either standalone, or as plugin for Firefox/Mozilla or Konqueror.
+
+This program plays a SWF (Shockwave Flash) movie using OpenGL
+.PP
+options:
+.TP
+\fB\-h\fR, \fB\-\-help\fR
+Print this info.
+.TP
+\fB\-s\fR <factor>
+Scale the movie up/down by the specified factor
+.TP
+\fB\-c\fR
+Produce a core file instead of letting SDL trap it
+.TP
+\fB\-d\fR num
+Number of milliseconds to delay in main loop
+.TP
+\fB\-v\fR
+Be verbose; i.e. print log messages to stdout
+.TP
+\fB\-va\fR
+Be verbose about movie Actions
+.TP
+\fB\-vp\fR
+Be verbose about parsing the movie
+.TP
+\fB\-m\fR <bias>
+Specify the texture LOD bias (float, default is \fB\-1\fR.0)
+.TP
+\fB\-x\fR <ID>
+X11 Window ID for display
+.TP
+\fB\-v\fR
+Produce verbose output
+.TP
+\fB\-vp\fR
+Be (very) verbose about parsing
+.TP
+\fB\-va\fR
+Be (very) verbose about action execution
+.TP
+\fB\-w\fR
+Produce the disk based debug log
+.TP
+\fB\-j\fR <width >
+Set window width
+.TP
+\fB\-k\fR <height>
+Set window height
+.TP
+\fB\-1\fR
+Play once; exit when/if movie reaches the last frame
+.TP
+\fB\-g\fR
+Turn on the Flash debugger
+.HP
+\fB\-r\fR <0|1|2|3>
+.IP
+0 disables both rendering & sound (good for batch tests)
+1 enables rendering & disables sound
+2 enables sound & disables rendering
+3 enables both rendering & sound (default)
+.TP
+\fB\-t\fR <sec>
+Timeout and exit after the specified number of seconds
+.TP
+\fB\-u\fR <url>
+Set "real" url of the movie
+(useful for downloaded movies)
+.TP
+\fB\-U\fR <url>
+Set "base" url for this run
+(used to resolve relative urls, defaults to movie url)
+.TP
+\fB\-P\fR <param>
+Set parameter (ie. "FlashVars=A=1&b=2")
+.HP
+\fB\-V\fR, \fB\-\-version\fR Print gnash's version number and exit
+.TP
+\fB\-F\fR <fd>
+Set filedescriptor to use for external communications
+.PP
+keys:
+.TP
+CTRL\-Q, CTRL\-W
+Quit/Exit
+.TP
+CTRL\-P
+Toggle Pause
+.TP
+CTRL\-R
+Restart the movie
+.TP
+CTRL\-L
+Force immediate redraw
+.SH "SEE ALSO"
+You can find more information at http://www.gnu.org/software/gnash/
--- gnash-0.8.2.orig/debian/h2m/klash.h2m
+++ gnash-0.8.2/debian/h2m/klash.h2m
@@ -0,0 +1,15 @@
+Include file for klash man page
+
+[name]
+klash \- plays a SWF movie
+
+[synopsis]
+.B klash  [options] movie_file.swf
+
+[description]
+Gnash is a free Flash movie player, which works either standalone, or as plugin for Firefox/Mozilla or Konqueror.
+
+This program plays a SWF (Shockwave Flash) movie using the KDE Libraries.
+
+[see also]
+You can find more information at http://www.gnu.org/software/gnash/
--- gnash-0.8.2.orig/debian/klash.desktop
+++ gnash-0.8.2/debian/klash.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Type=Application
+Encoding=UTF-8
+Name=Gnash SWF Viewer for KDE
+GenericName=
+Comment=
+Icon=/usr/share/pixmaps/klash.xpm
+Exec=/usr/bin/klash
+Terminal=false
+Categories=AudioVideo;Player;KDE;
--- gnash-0.8.2.orig/debian/klash.xpm
+++ gnash-0.8.2/debian/klash.xpm
@@ -0,0 +1,310 @@
+/* XPM */
+static char *dummy[]={
+"32 32 275 2",
+".A c #152c41",
+".L c #162d42",
+".K c #172e43",
+".X c #182f45",
+".M c #192f45",
+".N c #1a2f45",
+".p c #1a3045",
+".O c #1a3046",
+".Y c #1c3248",
+".Z c #1d3349",
+".0 c #1e344a",
+".W c #1f354a",
+"#m c #20364b",
+".9 c #21364c",
+".8 c #21374c",
+"#. c #23384e",
+"#l c #23394e",
+"#a c #24394e",
+"## c #24394f",
+"#n c #253a4f",
+"#y c #253a50",
+".z c #263b4f",
+"#b c #273c51",
+"#x c #283e52",
+"#z c #293d52",
+"#o c #293d53",
+"#p c #293e53",
+"#q c #2b3f54",
+"#A c #2e4257",
+"#B c #2e4258",
+"#E c #2f4358",
+"#u c #304459",
+"#t c #314459",
+"#H c #34475c",
+"#P c #35485d",
+".B c #36495c",
+"#1 c #36495d",
+"a. c #36495e",
+".q c #374a5c",
+"#Q c #374a5f",
+".1 c #384b5e",
+"#R c #394c61",
+"#0 c #3a4d62",
+"a# c #3b4e62",
+"#Z c #3c4e63",
+"#c c #3d4f62",
+"#Y c #3d5064",
+"#2 c #3e5064",
+"#9 c #3e5065",
+"#3 c #3f5166",
+"as c #405267",
+"#8 c #405367",
+"#O c #40566c",
+"#L c #41586f",
+"#F c #415971",
+"#7 c #425368",
+"aa c #435569",
+"#k c #44627a",
+"ab c #45566a",
+"ac c #45566b",
+"#f c #455769",
+"#g c #45576a",
+"ah c #46576c",
+"ag c #47586d",
+"#I c #486179",
+"ai c #495a6e",
+".P c #495b6b",
+"#h c #495c6e",
+".y c #4a5b6c",
+"ak c #4a5c70",
+"al c #4b5b70",
+"aj c #4b5c70",
+".f c #4c5d6d",
+"ar c #4c5d71",
+"aC c #4d5d72",
+"aq c #4d5e72",
+"am c #4e6075",
+"aD c #4f5f73",
+"aB c #506074",
+"au c #506075",
+"at c #506175",
+"ap c #506176",
+".7 c #516272",
+"aA c #526276",
+"a2 c #526277",
+"bb c #526377",
+"az c #536277",
+"ay c #536377",
+".# c #556574",
+"#S c #557189",
+"aO c #566579",
+"aF c #56657a",
+"aE c #56667a",
+"av c #56687e",
+"bc c #57667a",
+"aN c #57677b",
+"aM c #58687c",
+"aP c #5a6a7e",
+"a0 c #5b6a7d",
+"aZ c #5b6a7e",
+"aQ c #5b6b7e",
+"aR c #5b6b7f",
+"a1 c #5c6a7e",
+"aS c #5c6b7e",
+"a3 c #5c6b7f",
+".r c #5c6c7b",
+"af c #5d778e",
+"bN c #5e6d80",
+"#D c #5e7f99",
+"a8 c #606e82",
+"a5 c #606f82",
+"a4 c #616f83",
+"bo c #617084",
+"aV c #617388",
+"#K c #61829c",
+"bA c #627184",
+"ba c #627186",
+".o c #637281",
+".e c #647280",
+"bd c #647286",
+".J c #647382",
+".2 c #657482",
+"bO c #657589",
+"#6 c #65829b",
+".a c #667482",
+"be c #667588",
+"bn c #677488",
+".g c #677683",
+".6 c #677684",
+"aY c #677c93",
+"bf c #68768a",
+"aI c #688097",
+"#U c #6889a4",
+"bj c #69768b",
+"bm c #69778a",
+"#i c #69869e",
+"bi c #6a778b",
+"aG c #6a839b",
+"bB c #6b798c",
+"aL c #6b849b",
+"bp c #6c7a8d",
+"b0 c #6d7b8d",
+".5 c #6d8091",
+".d c #6e7c89",
+"bz c #6e7c8f",
+"b1 c #707e90",
+".V c #717f8c",
+"bM c #717f91",
+"#d c #7192ab",
+"bq c #728094",
+"#X c #7397b3",
+"#4 c #7497b3",
+"by c #758296",
+"ca c #758393",
+".b c #778490",
+"bu c #78869a",
+"a9 c #7892ab",
+"bP c #798598",
+"bt c #79869a",
+"ck c #798796",
+".c c #7a8692",
+".n c #7b8793",
+"bv c #7b8b9f",
+"#v c #7ba3c0",
+"#j c #7ca3c0",
+"bC c #7d8a9d",
+"#s c #7ea6c4",
+"b2 c #7f8c9e",
+"aT c #7fa0bb",
+"ax c #7fa1bd",
+"cl c #808d9e",
+"bk c #819cb6",
+"bh c #819db7",
+"cm c #828f9f",
+"c# c #8390a0",
+"bL c #8490a3",
+".3 c #84a3bb",
+"#N c #84aecc",
+"cp c #8591a2",
+"bs c #859db4",
+"cq c #8692a2",
+"bl c #86a5c0",
+"ad c #86aecc",
+"bZ c #8793a3",
+"cn c #8894a5",
+"cj c #8995a5",
+"co c #8995a6",
+"cb c #8996a7",
+"bx c #89a4bd",
+"ao c #89b1cf",
+".h c #8a95a0",
+".x c #8a96a0",
+"cc c #8a96a8",
+"bD c #8a99ad",
+"#r c #8bb7d7",
+".Q c #8c97a2",
+"bK c #8c99ab",
+".U c #8d98a3",
+"bH c #8d9aae",
+"bG c #8d9bae",
+"a6 c #8db3d0",
+"bI c #8f9eb2",
+"aw c #8fb9d7",
+"#G c #8fbcdc",
+"bE c #90a2b6",
+"bQ c #919dae",
+"bF c #91a2b7",
+"bJ c #92a2b8",
+".R c #93a4b2",
+".T c #93a6b5",
+"b# c #93bcdb",
+"ae c #93bfdf",
+"#e c #94c1e1",
+"#C c #96c5e6",
+"aU c #97c2e2",
+"a7 c #97c3e2",
+"aJ c #98c4e4",
+"bY c #99a5b6",
+"an c #99c8e9",
+"#M c #99c9ea",
+"bR c #9aa6b9",
+"bT c #9ba9bc",
+"bU c #9ba9bd",
+"cd c #9ca7b7",
+"bS c #9ca9bc",
+"bV c #9ca9bd",
+"bw c #9cc4e3",
+"br c #9cc6e6",
+"bX c #9da9bc",
+"bW c #9da9bd",
+"aW c #9eceef",
+"#V c #9fd0f2",
+"#w c #9fd1f3",
+"bg c #a0cff0",
+"#5 c #a0d2f4",
+".4 c #a1d2f3",
+".C c #a2abb4",
+"ci c #a2adbc",
+"b3 c #a2aec0",
+"b6 c #a2b0c3",
+"c. c #a3aebd",
+"b5 c #a3b0c3",
+"b7 c #a3b1c4",
+"#J c #a3d5f8",
+".m c #a4adb5",
+"ce c #a4aebe",
+"b4 c #a4b0c2",
+"aX c #a4d6f8",
+"aK c #a4d7f9",
+"b8 c #a5b2c4",
+"ch c #a7b1c1",
+"cf c #a7b2c2",
+"b9 c #a7b2c3",
+"#T c #a7dafd",
+"aH c #a7dbfd",
+"#W c #a7dbfe",
+"cg c #a8b2c2",
+"b. c #a8dbfe",
+".S c #a8dcff",
+".I c #b1b9c0",
+".D c #b5bcc3",
+".H c #b5bcc4",
+".E c #b5bdc4",
+".G c #b6bcc4",
+".F c #b6bdc4",
+".s c #bcc2c8",
+".i c #bec5cb",
+".l c #cbd0d5",
+".w c #ced2d7",
+".t c #d8dce0",
+".j c #dadde1",
+".v c #dadee1",
+".u c #dbdee2",
+".k c #dfe2e5",
+"Qt c #ffffff",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQt.#.a.b.c.d.eQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQt.f.g.h.i.j.k.l.m.n.oQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQt.p.q.r.s.t.u.u.u.u.v.w.x.y.zQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQt.A.A.B.C.D.E.E.F.G.H.F.H.I.J.K.LQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQt.M.N.O.P.Q.R.S.S.S.T.U.U.U.U.V.W.p.XQtQtQtQtQtQtQt",
+"QtQtQtQtQtQt.Y.Z.0.W.1.2.3.S.S.4.5.6.6.6.6.7.8.0.Z.YQtQtQtQtQtQt",
+"QtQtQtQtQtQt.9#.###a#b#c#d.S.S#e#f#g#g#h#i#j#k###l#mQtQtQtQtQtQt",
+"QtQtQtQtQt#n#b#o#p#p#p#q#r.S.S#s#t#u#u#v.S.S#w#p#x#b#yQtQtQtQtQt",
+"QtQtQtQtQt#z#A#B#B#B#B#B#C.S.S#D#E#F#C.S.S.S#G#E#B#A#zQtQtQtQtQt",
+"QtQtQtQt#q#u#H#H#H#H#H#I#J.S.S#K#L#M.S.S.S#N#O#P#H#H#u#qQtQtQtQt",
+"QtQtQtQt#E#Q#R#R#R#R#R#S.S.S#T#U#V.S.S#W#X#Y#Z#0#R#R#Q#EQtQtQtQt",
+"QtQtQtQt#1#2#3#3#3#3#3#4.S.S.S.S.S.S#5#6#7#7#7#8#3#3#9a.QtQtQtQt",
+"QtQtQtQta#aaabacabacabad.S.S.S.S.Saeafagagagagahacacaaa#QtQtQtQt",
+"QtQtQtQt#3aiajakalakaman.S.S.S.S.Saoapaqaqaqaqarajajai#3QtQtQtQt",
+"QtQtQtQtasaqatauatauav.S.S.Saw.S.S.SaxayazayazaAauaBaCasQtQtQtQt",
+"QtQtQtQtaaaDaEaFaEaEaG.S.SaHaIaJ.S.SaKaLaMaMaMaNaEaOaDaaQtQtQtQt",
+"QtQtQtQtQtaqaPaQaRaSaT.S.SaUaRaVaW.S.SaXaYaZa0aZa1aPaCQtQtQtQtQt",
+"QtQtQtQtQta2a3a4a5a4a6.S.Sa7a8a4a9b..S.Sb#baa4a4a4a3bbQtQtQtQtQt",
+"QtQtQtQtQtQtbcbdbebfbg.S.Sbhbibibjbk.S.S.SblbmbnbdbcQtQtQtQtQtQt",
+"QtQtQtQtQtQtaEbobpbqbr.Sb.bsbtbububvbw.S.SbxbybzbAaEQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtaPbBbCbDbEbFbGbGbHbHbGbIbJbFbKbLbMbNQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtbObPbQbRbSbTbTbUbUbVbVbWbXbYbZb0QtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtb1b2bYb3b4b5b6b6b7b8b9c.c#caQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtcbcccdcecfcgchcibQcjckQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtclcmcncocpcqQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt"};
--- gnash-0.8.2.orig/debian/gnash-cygnal.manpages
+++ gnash-0.8.2/debian/gnash-cygnal.manpages
@@ -0,0 +1 @@
+debian/h2m/cygnal.1
--- gnash-0.8.2.orig/debian/klash.install
+++ gnash-0.8.2/debian/klash.install
@@ -0,0 +1,3 @@
+tmp/usr/bin/kde-gnash usr/bin/
+klash.xpm usr/share/pixmaps/
+klash.desktop usr/share/applications/
--- gnash-0.8.2.orig/debian/control
+++ gnash-0.8.2/debian/control
@@ -0,0 +1,113 @@
+Source: gnash
+Priority: optional
+Maintainer: Miriam Ruiz <little_miry@yahoo.es>
+Uploaders: Alexander Sack <asac@jwsdot.com>, Robert Millan <rmh@aybabtu.com>
+Build-Depends: dpkg-dev (>= 1.13.19), debhelper (>= 4.0.0), quilt, autoconf, dh-buildinfo,
+ automake1.9 | automake, libtool, libltdl3-dev, help2man, libxmu-dev, dejagnu,
+ autotools-dev, libboost-dev, libboost-thread-dev, libxml2-dev, libjpeg-dev,
+ libpng12-dev | libpng-dev, libagg-dev, libgstreamer0.10-dev, libkonq4-dev,
+ libpango1.0-dev | pango-devel, libgtkglext1-dev, libmad0-dev,
+ libcurl3-gnutls-dev | libcurl4-openssl-dev | libcurl3-openssl-dev,
+ libcaca-dev, libboost-date-time-dev, libavcodec-dev, libavformat-dev, libming-dev,
+ libming-util, libgstreamer-plugins-base0.10-dev, libqt3-mt-dev (>=3:3.3.8),
+ libboost-serialization-dev, python
+Standards-Version: 3.7.3
+Section: utils
+Homepage: http://www.gnu.org/software/gnash/
+DM-Upload-Allowed: yes
+
+Package: gnash-common
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, base-files (>= 4.0.1~),
+ gstreamer0.10-plugins-base, gstreamer0.10-videosink | gstreamer0.10-plugins-good, gstreamer0.10-audiosink | gstreamer0.10-alsa
+Recommends: gstreamer0.10-fluendo-mp3, gstreamer0.10-ffmpeg, gstreamer0.10-gnomevfs
+Conflicts: libgnash0 (<< 0.8.1~), gnash (<< 0.8.1~), libklash0 (<< 0.8.1~)
+Replaces: libgnash0 (<< 0.8.1~), gnash (<< 0.8.1~), libklash0 (<< 0.8.1~)
+Description: free Flash movie player - common files/libraries
+ Gnash is a free Flash movie player, which works either standalone, or as
+ plugin for Firefox/Mozilla or Konqueror.
+ .
+ This package includes the common, gui-independent files/libraries
+
+Package: gnash
+Section: utils
+Architecture: any
+Depends: gnash-common (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Description: free Flash movie player
+ Gnash is a free GPL'd Flash movie player, which works either standalone, or as
+ browser plugin for Firefox, Mozilla, and Konqueror.
+ .
+ Gnash supports the majority of Flash opcodes up to SWF version 7, and
+ a wide sampling of ActionScript 2 classes for SWF version 8.5. Flash
+ version 9 and ActionScript 3 support is being worked on. 
+ .
+ Included in the Gnash is an XML based messaging system, as specified in
+ the Flash specification. This lets a flash movie communicate over a TCP/IP
+ socket, and parse the incoming XML message. This lets a movie be a remote
+ control for other devices or applications.
+ .
+ This package includes the standalone GTK+-based OpenGL player.
+
+Package: klash
+Section: utils
+Architecture: any
+Depends: gnash-common (= ${binary:Version}), libqt3-mt (>= 3:3.3.8),
+ ${shlibs:Depends}, ${misc:Depends}
+Description: free Flash movie player - standalone player for KDE
+ Gnash is a free GPL'd Flash movie player, which works either standalone, or as
+ browser plugin for Firefox, Mozilla, and Konqueror.
+ .
+ Gnash supports the majority of Flash opcodes up to SWF version 7, and
+ a wide sampling of ActionScript classes for SWF version 8.5. All the
+ core ones are implemented, and many of the newer ones work, but may be
+ missing some of their methods.
+ .
+ Included in the Gnash is an XML based messaging system, as specified in
+ the Flash specification. This lets a flash movie communicate over a TCP/IP
+ socket, and parse the incoming XML message. This lets a movie be a remote
+ control for other devices or applications.
+ .
+ Klash is a free standalone Flash movie player for KDE.
+
+Package: gnash-tools
+Section: utils
+Architecture: any
+Depends: gnash-common (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Description: free Flash movie player - Command-line Tools
+ Gnash is a free GPL'd Flash movie player, which works either standalone, or as
+ browser plugin for Firefox, Mozilla, and Konqueror.
+ .
+ This package includes command-line utilities based in gnash.
+
+Package: gnash-cygnal
+Section: utils
+Architecture: any
+Depends: gnash-common (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Description: free Flash movie player - Media server
+ Gnash is a free GPL'd Flash movie player, which works either standalone, or as
+ browser plugin for Firefox, Mozilla, and Konqueror.
+ .
+ Cygnal is Gnash's media server.
+
+Package: mozilla-plugin-gnash
+Section: utils
+Architecture: any
+Depends: gnash (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Description: free Flash movie player - Plugin for Mozilla and derivatives
+ Gnash is a free GPL'd Flash movie player, which works either standalone, or as
+ browser plugin for Firefox, Mozilla, and Konqueror.
+ .
+ This package includes the plugin for Firefox/Mozilla Web Browser. The plugin
+ works best with Firefox 1.0.4 or newer, and should work in any Mozilla based
+ browser.
+
+Package: konqueror-plugin-gnash
+Section: utils
+Architecture: any
+Depends: klash (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Description: free Flash movie player - Plugin for Konqueror
+ Gnash is a free GPL'd Flash movie player, which works either standalone, or as
+ browser plugin for Firefox, Mozilla, and Konqueror.
+ .
+ This package includes the plugin for Konqueror.
--- gnash-0.8.2.orig/debian/watch
+++ gnash-0.8.2/debian/watch
@@ -0,0 +1,8 @@
+# Watch control file for uscan
+# See uscan(1) for format
+
+# Compulsory line, this is a version 3 file
+version=3
+
+# Examine an FTP server
+ftp://ftp.gnu.org/pub/gnu/gnash/(.*)/gnash-(.*)\.tar\.gz debian uupdate
--- gnash-0.8.2.orig/debian/compat
+++ gnash-0.8.2/debian/compat
@@ -0,0 +1 @@
+4
--- gnash-0.8.2.orig/debian/source.lintian-overrides
+++ gnash-0.8.2/debian/source.lintian-overrides
@@ -0,0 +1 @@
+gnash source: source-contains-CVS-dir
--- gnash-0.8.2.orig/debian/rules
+++ gnash-0.8.2/debian/rules
@@ -0,0 +1,203 @@
+#!/usr/bin/make -f
+# The template for this file was originally written by Joey Hess and Craig Small.
+# Developed for Gnash by Miriam Ruiz
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# 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)
+
+MAIN_VERSION = $(shell head -n 1 debian/changelog | cut '-d ' -f 2 | sed 's/[()]//g')
+#BUILD_VERSION = cvs$(shell head -n 1 debian/changelog | cut '-d ' -f 2 | sed 's/^.*cvs//' | sed 's/\..*-.*//')
+BUILD_VERSION = $(shell head -n 1 debian/changelog | cut '-d ' -f 2 | sed 's/^[()]//' | sed 's/-.*//')
+
+CFLAGS = -Wall -g -Werror-implicit-function-declaration
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+# shared library versions, option 1
+#version=2.0.5
+#major=2
+# option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
+#version=`ls src/.libs/lib*.so.* | \
+# awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
+#major=`ls src/.libs/lib*.so.* | \
+# awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
+
+# CONFIGURE
+
+config.status: configure.ac
+	dh_testdir
+
+	@printf "\n == APPLYING PATCHES ============================================ \n\n"
+	$(MAKE) -f /usr/share/quilt/quilt.make patch
+	@printf "\n ----------------------------------- End of APPLYING PATCHES ---- \n\n"
+
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+	cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+	cp -f /usr/share/misc/config.guess config.guess
+endif
+
+	@printf "\n == AUTOGEN ===================================================== \n\n"
+	if test -e autogen.sh; then ./autogen.sh; else sh debian/autogen.sh; fi
+	@printf "\n -------------------------------------------- End of AUTOGEN ---- \n\n"
+
+	@printf "\n == CONFIGURE =================================================== \n\n"
+	# In the future, I want to add LDFLAGS="-Wl,-z,defs"
+	./configure VERSION="$(BUILD_VERSION)" CFLAGS="$(CFLAGS)" \
+		--host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
+		--prefix=/usr --mandir=\$${prefix}/share/man \
+		--infodir=\$${prefix}/share/info --disable-testsuite \
+		--enable-plugin --enable-gui='gtk,kde' --enable-cygnal \
+		--enable-gstreamer --enable-media=gst --enable-renderer=agg \
+		--with-plugindir=\$${prefix}/lib/gnash \
+		--enable-shared=yes --enable-sdk-install \
+		--disable-rpath --enable-lotsa-warnings --without-gcc-arch
+	@printf "\n ------------------------------------------- End of CONFIGURE ---- \n\n"
+
+	cp libamf/README README.amf
+
+# BUILD
+
+build: build-stamp
+build-stamp:  config.status
+	dh_testdir
+
+	@printf "\n == MAKE ======================================================== \n\n"
+	$(MAKE) VERSION="$(BUILD_VERSION)"
+	@printf "\n ----------------------------------------------- End of MAKE ---- \n\n"
+
+	@printf "\n == CHECK ======================================================= \n\n"
+	$(MAKE) check
+	@printf "\n ---------------------------------------------- End of CHECK ---- \n\n"
+
+	touch build-stamp
+
+# CLEAN
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+ifeq (Makefile,$(wildcard Makefile))
+	[ ! -f Makefile ] || $(MAKE) maintainer-clean
+	[ ! -f Makefile ] || $(MAKE) distclean
+endif
+
+ifneq ($(wildcard ${AUTO_JUNK}),)
+	rm $(wildcard ${AUTO_JUNK})
+endif
+
+	rm -f config.{sub,guess,log,status}
+	rm -f libtool
+	rm -f `find . -name "Makefile"| grep -v "debian/"`
+	rm -f `find . -name "*.o"`
+	rm -rf `find . -name ".libs"`
+	rm -rf `find . -name ".deps"`
+	rm -rf po/*.gmo
+	rm -f compile
+
+	rm -f configure aclocal.m4 config.h.in
+	#-find . -name Makefile.in -exec rm {} \;
+	-rm `find . -name Makefile.in`
+
+	-rm -rf libltdl/autom4te.cache
+	-rm -f libltdl/* ltmain.sh
+
+	#cd debian/h2m; $(MAKE) clean
+
+	-rm -f README.amf
+
+	@printf "\n == CLEANING PATCHES ============================================ \n\n"
+	$(MAKE) -f /usr/share/quilt/quilt.make unpatch
+	@printf "\n ----------------------------------- End of CLEANING PATCHES ---- \n\n"
+
+	dh_clean 
+
+# INSTALL
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	install -d $(CURDIR)/debian/tmp/usr/bin
+	install -d $(CURDIR)/debian/tmp/usr/lib
+	install -d $(CURDIR)/debian/tmp/usr/lib/gnash/
+
+	@printf "\n == INSTALL ===================================================== \n\n"
+	$(MAKE) install VERSION="$(BUILD_VERSION)" DESTDIR=$(CURDIR)/debian/tmp
+	@printf "\n -------------------------------------------- End of INSTALL ---- \n\n"
+
+	install -d $(CURDIR)/debian/tmp/usr/share/apps/klash
+	install -d $(CURDIR)/debian/tmp/usr/share/services
+
+	@printf "\n == INSTALL PLUGINS ============================================= \n\n"
+	$(MAKE) install-plugins VERSION="$(BUILD_VERSION)" DESTDIR=$(CURDIR)/debian/tmp
+	@printf "\n ------------------------------------ End of INSTALL PLUGINS ---- \n\n"
+
+	#cd debian/h2m; $(MAKE)
+
+# CREATE PACKAGES
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog
+	dh_installdocs
+	dh_installexamples
+	dh_install --sourcedir=$(CURDIR)/debian
+
+	cd "$(CURDIR)"/debian/overrides/ && for i in *; do \
+		echo "Installing Lintian override file for \"$$i\"" ; \
+		mkdir -p "$(CURDIR)"/debian/"$$i"/usr/share/lintian/overrides/ ; \
+		cp "$$i" "$(CURDIR)"/debian/"$$i"/usr/share/lintian/overrides/ ; \
+	done
+
+#	dh_installmenu
+#	dh_installmime
+	dh_installman
+	dh_desktop
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	#dh_makeshlibs
+	test -e /usr/bin/dh_buildinfo && dh_buildinfo
+	dh_installdeb
+	dh_shlibdeps -l$(CURDIR)/debian/gnash-common/usr/lib/gnash
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+VERSION_DATE = $(shell /bin/date --utc +%0Y%0m%0d.%0k%0M)
+VERSION_ID = 0.8.2+cvs$(VERSION_DATE)
+get-cvs-source:
+	echo Downloading gnash $(VERSION_ID) from CVS...
+	#test -e gnashd && exit
+	export CVS_RSH="ssh"; cvs -z3 -d:pserver:anonymous@cvs.sv.gnu.org:/sources/gnash co gnash
+	#cd gnash; rm -rf `find . -name CVS`
+	tar cvfz "gnash_$(VERSION_ID).orig.tar.gz" gnash
+	mv gnash "gnash-$(VERSION_ID)"
+	cp debian "gnash-$(VERSION_ID)" -a
+	cd "gnash-$(VERSION_ID)"; dch -v "$(VERSION_ID)-1" "New Upstream Release. Downloaded from CVS."
+
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install get-orig-source
--- gnash-0.8.2.orig/debian/mozilla-plugin-gnash.install
+++ gnash-0.8.2/debian/mozilla-plugin-gnash.install
@@ -0,0 +1 @@
+tmp/usr/lib/gnash/libgnashplugin.so usr/lib/gnash/
--- gnash-0.8.2.orig/debian/patches/fix-upstream-manpage.patch
+++ gnash-0.8.2/debian/patches/fix-upstream-manpage.patch
@@ -0,0 +1,11 @@
+--- a/doc/gnash.1
++++ b/doc/gnash.1
+@@ -205,7 +205,7 @@
+ .B gnash-dbg.log
+ If writelog is set to on, gnash will log debug output to this file,
+ Its location may be set with the debuglog keyword in the user's
+-.gnashrc.  By default, it is located in Gnash's
++~/.gnashrc.  By default, it is located in Gnash's
+ current working directory.
+ 
+ .SH "BUGS"
--- gnash-0.8.2.orig/debian/patches/series
+++ gnash-0.8.2/debian/patches/series
@@ -0,0 +1,4 @@
+do-not-delete-gmo-files
+#fix-upstream-manpage.patch
+gcc-4.3.patch
+paused-widget.patch
--- gnash-0.8.2.orig/debian/patches/gcc-4.3.patch
+++ gnash-0.8.2/debian/patches/gcc-4.3.patch
@@ -0,0 +1,12 @@
+Index: gnash-0.8.1+cvs20080212.1133/plugin/plugin.cpp
+===================================================================
+--- gnash-0.8.1+cvs20080212.1133.orig/plugin/plugin.cpp	2008-02-13 16:18:56.000000000 +0000
++++ gnash-0.8.1+cvs20080212.1133/plugin/plugin.cpp	2008-02-13 16:19:39.000000000 +0000
+@@ -50,6 +50,7 @@
+ #include "plugin.h" //Fixes Warning on redef of MIN/MAX
+ #include <csignal>
+ #include <unistd.h>
++#include <string.h>
+ #include <cstdio>
+ #include <cstddef>
+ #include <cstring>
--- gnash-0.8.2.orig/debian/patches/paused-widget.patch
+++ gnash-0.8.2/debian/patches/paused-widget.patch
@@ -0,0 +1,159 @@
+
+Merged in CVS.  See https://savannah.gnu.org/patch/?6495
+
+diff -ur gnash-0.8.2/gui/gtk.cpp gnash-0.8.2.new/gui/gtk.cpp
+--- gnash-0.8.2/gui/gtk.cpp	2008-02-20 22:42:14.000000000 +0100
++++ gnash-0.8.2.new/gui/gtk.cpp	2008-04-27 12:53:11.000000000 +0200
+@@ -78,6 +78,18 @@
+ GtkGui::GtkGui(unsigned long xid, float scale, bool loop, unsigned int depth)
+ 	:
+ 	Gui(xid, scale, loop, depth)
++#ifdef GUI_HILDON
++	,_hildon_program(0)
++#endif
++	,_window(0)
++	,_overlay(0)
++	,_drawingArea(0)
++	,_resumeButton(0)
++	,_popup_menu(0)
++	,_menubar(0)
++	,_vbox(0)
++	,_drawbounds()
++	,_glue()
+ {
+ }
+ 
+@@ -125,6 +137,19 @@
+ 
+     _drawingArea = gtk_drawing_area_new();
+ 
++    // Increase reference count to prevent its destruction (which could happen
++    // later if we remove it from its container).
++    g_object_ref(G_OBJECT(_drawingArea));
++
++    _resumeButton = gtk_button_new();
++    gtk_container_add(GTK_CONTAINER(_resumeButton), gtk_label_new(_("Click to play")));
++
++    // Same here.
++    g_object_ref(G_OBJECT(_resumeButton));
++
++    // This callback indirectly results in playHook() being called.
++    g_signal_connect(G_OBJECT(_resumeButton), "clicked", G_CALLBACK (menuitem_play_callback), this);
++
+     // IF we don't set this flag we won't be able to grab focus
+     // ( grabFocus() would be a no-op )
+     GTK_WIDGET_SET_FLAGS (GTK_WIDGET(_drawingArea), GTK_CAN_FOCUS);
+@@ -210,6 +235,11 @@
+     g_timeout_add_full (G_PRIORITY_LOW, _interval, (GSourceFunc)advance_movie,
+                         this, NULL);
+ 
++    // The first time stop() was called, stopHook() might not have had a chance
++    // to do anything, because GTK+ wasn't garanteed to be initialised.
++    if (isStopped())
++      stopHook();
++
+     gtk_main();
+     return true;
+ }
+@@ -2142,5 +2172,44 @@
+     return true;
+ }
+ 
++
++void
++GtkGui::stopHook()
++{
++  // FIXME: this can't work for the stand-alone player, because _drawingArea is
++  // packed into a vbox.
++  if (! _xid)
++    return;
++
++  // Assert they're either both initialised or both uninitialised
++  assert ((_resumeButton && _drawingArea) || !(_resumeButton || _drawingArea));
++
++  if (_drawingArea)
++    gtk_container_remove(GTK_CONTAINER(_window), _drawingArea);
++  if (_resumeButton)
++    gtk_container_add(GTK_CONTAINER(_window), _resumeButton);
++
++  gtk_widget_show_all(_resumeButton);
++}
++
++void
++GtkGui::playHook()
++{
++  // FIXME: this can't work for the stand-alone player, because _drawingArea is
++  // packed into a vbox.
++  if (! _xid)
++    return;
++
++  // Assert they're either both initialised or both uninitialised
++  assert ((_resumeButton && _drawingArea) || !(_resumeButton || _drawingArea));
++
++  if (_resumeButton)
++    gtk_container_remove(GTK_CONTAINER(_window), _resumeButton);
++  if (_drawingArea)
++    gtk_container_add(GTK_CONTAINER(_window), _drawingArea);
++
++  gtk_widget_show_all(_drawingArea);
++}
++
+ } // end of namespace gnash
+ 
+diff -ur gnash-0.8.2/gui/gtksup.h gnash-0.8.2.new/gui/gtksup.h
+--- gnash-0.8.2/gui/gtksup.h	2008-02-14 14:27:56.000000000 +0100
++++ gnash-0.8.2.new/gui/gtksup.h	2008-04-27 12:52:46.000000000 +0200
+@@ -185,6 +185,7 @@
+     HildonProgram *_hildon_program;
+ #endif
+     GtkWidget   *_window;
++    GtkWidget	*_resumeButton;
+     
+     // A window only for rendering the plugin as fullscreen.
+     GtkWidget	*_overlay;
+@@ -248,6 +249,8 @@
+     static void handlePrefs(GtkWidget* widget, gint response, gpointer data);
+     static void openFile(GtkWidget* dialog, gpointer data);
+ 
++    void stopHook();
++    void playHook();
+ };
+ 
+ // end of namespace gnash 
+diff -ur gnash-0.8.2/gui/gui.cpp gnash-0.8.2.new/gui/gui.cpp
+--- gnash-0.8.2/gui/gui.cpp	2008-02-19 20:20:49.000000000 +0100
++++ gnash-0.8.2.new/gui/gui.cpp	2008-04-27 12:52:46.000000000 +0200
+@@ -656,6 +656,8 @@
+ 
+     _stopped = false;
+     if ( ! _started ) start();
++
++    playHook ();
+ }
+ 
+ void
+@@ -664,6 +666,8 @@
+     if ( _stopped ) return;
+ 
+     _stopped = true;
++
++    stopHook ();
+ }
+ 
+ void
+diff -ur gnash-0.8.2/gui/gui.h gnash-0.8.2.new/gui/gui.h
+--- gnash-0.8.2/gui/gui.h	2008-01-21 21:55:42.000000000 +0100
++++ gnash-0.8.2.new/gui/gui.h	2008-04-27 12:52:46.000000000 +0200
+@@ -364,6 +364,12 @@
+     // True if Gnash is running in fullscreen
+     bool	    _fullscreen;
+ 
++    /// Called by Gui::stop().  This can be used by GUIs to implement pause
++    /// widgets (so that resuming a stopped animation is more user-friendly)
++    virtual void stopHook() {}
++    /// Called by Gui::play().
++    virtual void playHook() {}
++
+ private:
+ 
+     bool display(movie_root* m);
--- gnash-0.8.2.orig/debian/patches/gnash_easy_codec_install
+++ gnash-0.8.2/debian/patches/gnash_easy_codec_install
@@ -0,0 +1,339 @@
+=== removed file 'po/gnash.pot'
+
+=== modified file 'configure.ac'
+---
+ configure.ac                  |    2 
+ server/asobj/NetStreamGst.cpp |  163 ++++++++++++++++++++++++++++++++++++------
+ 2 files changed, 145 insertions(+), 20 deletions(-)
+
+Index: gnash-0.8.0~cvs20070611.1016/configure.ac
+===================================================================
+--- gnash-0.8.0~cvs20070611.1016.orig/configure.ac	2007-06-12 15:12:45.000000000 +0000
++++ gnash-0.8.0~cvs20070611.1016/configure.ac	2007-06-12 15:14:45.000000000 +0000
+@@ -893,16 +893,18 @@
+ if test "$media_handler" = "gst"; then
+   GNASH_PKG_FIND(gstreamer, [gst/gst.h], [gstreamer library], gst_init, [0.10])
+   if test x"${media_handler_specified}" = xfalse; then
+     # If the library is not found, or its version is not ok, we'll try mad
+     if test x"$GSTREAMER_LIBS" = x; then
+        AC_MSG_WARN([No appropriate gstreamer library found, will try using mad.])
+        media_handler=mad
+     fi
++  else
++    GSTREAMER_LIBS="$GSTREAMER_LIBS -lgstpbutils-0.10"
+   fi
+ fi
+ 
+ 
+ if test x"$media_handler" = x"mad"; then
+   dnl Will set MAD_LIBS and MAD_CFLAGS.
+   dnl Handles --with-mad-incl and --with-mad-lib
+   GNASH_PKG_FIND(mad, [mad.h], [mad library], mad_copyright)
+Index: gnash-0.8.0~cvs20070611.1016/server/asobj/NetStreamGst.cpp
+===================================================================
+--- gnash-0.8.0~cvs20070611.1016.orig/server/asobj/NetStreamGst.cpp	2007-06-01 15:23:35.000000000 +0000
++++ gnash-0.8.0~cvs20070611.1016/server/asobj/NetStreamGst.cpp	2007-06-12 15:14:45.000000000 +0000
+@@ -32,16 +32,19 @@
+ #include "URLAccessManager.h"
+ #include "render.h"	
+ #include "movie_root.h"
+ #include "NetConnection.h"
+ //#include "action.h"
+ 
+ #include "gstgnashsrc.h"
+ 
++#include <gst/pbutils/missing-plugins.h>
++#include <gst/pbutils/install-plugins.h>
++
+ #include "URL.h"
+ 
+ // Define the following macro to enable debugging traces
+ //#define GNASH_DEBUG
+ 
+ namespace gnash {
+ 
+ static gboolean
+@@ -520,27 +523,110 @@
+ 	{
+ 		if ( ! buildFLVSoundPipeline(audio) ) return false;
+ 	}
+ 
+ 	return true;
+ 
+ }
+ 
++static void
++GstInstallPluginsResultCb (GstInstallPluginsReturn  result,
++			   gpointer                 user_data)
++{
++  g_debug("JAU RESULTO MENDO");
++}
++
++static gboolean
++NetStreamGst_install_missing_codecs(GList *missing_plugin_details)
++{
++
++  GstInstallPluginsReturn rv;
++  int i,c;
++  gchar **details = g_new0(gchar*, c+1);
++  GstInstallPluginsContext *install_ctx = gst_install_plugins_context_new();
++
++  c=g_list_length(missing_plugin_details);
++  
++  for(i=0; i < c; i++)
++  {
++    details[i] = (gchar*) g_list_nth_data(missing_plugin_details, i);
++  }
++
++  rv = gst_install_plugins_sync (details,
++				 install_ctx);
++
++  g_strfreev(details);
++
++  switch(rv) {
++  case GST_INSTALL_PLUGINS_SUCCESS:
++    if(!gst_update_registry())
++      g_warning("we failed to update gst registry for new codecs");
++    else
++      return true;
++    break;
++  case GST_INSTALL_PLUGINS_NOT_FOUND:
++    g_debug("gst_install_plugins_sync -> GST_INSTALL_PLUGINS_NOT_FOUND");
++    break;
++  case GST_INSTALL_PLUGINS_ERROR:
++    g_debug("gst_install_plugins_sync -> GST_INSTALL_PLUGINS_ERROR");
++    break;
++  case GST_INSTALL_PLUGINS_PARTIAL_SUCCESS:
++    g_debug("gst_install_plugins_sync -> GST_INSTALL_PLUGINS_PARTIAL_SUCCESS");
++    break;
++  case GST_INSTALL_PLUGINS_USER_ABORT:
++    g_debug("gst_install_plugins_sync -> GST_INSTALL_PLUGINS_USER_ABORT");
++    break;
++  case GST_INSTALL_PLUGINS_CRASHED:
++    g_debug("gst_install_plugins_sync -> GST_INSTALL_PLUGINS_CRASHED");
++    break;
++  case GST_INSTALL_PLUGINS_INVALID:
++    g_warning("gst_install_plugins_sync -> GST_INSTALL_PLUGINS_INVALID");
++    break;
++  default:
++    g_warning("gst_install_plugins_sync -> UNEXPECTED RESULT (undocumented value)");
++    break;				  
++  };
++
++  return false;
++}
++
++static GList*
++NetStreamGst_append_missing_codec_to_details (GList *list,
++					      GstElement *source,
++					      const GstCaps* caps)
++{
++  GstMessage *missing_msg;
++  missing_msg = gst_missing_decoder_message_new(source,
++						caps);
++  gchar* detail = gst_missing_plugin_message_get_installer_detail(missing_msg);  
++
++  if(!detail)
++  {
++    g_warning("missing message details not found. No details added.");
++    return list;
++  } 
++
++  return g_list_append(list, detail);
++}
++
++
+ bool
+ NetStreamGst::buildFLVVideoPipeline(bool &video)
+ {
+ #ifdef GNASH_DEBUG
+ 	log_debug("Building FLV video decoding pipeline");
+ #endif
+ 
+ 	FLVVideoInfo* videoInfo = m_parser->getVideoInfo();
+ 
+ 	bool doVideo = video;
+ 
++	GList *missing_plugin_details = NULL;
++ retry:
+ 	if (videoInfo) {
+ 		doVideo = true;
+ 		videosource = gst_element_factory_make ("fakesrc", NULL);
+ 		if ( ! videosource )
+ 		{
+ 			log_error("Unable to create videosource 'fakesrc' element");
+ 			return false;
+ 		}
+@@ -573,80 +659,98 @@
+ 				"height", G_TYPE_INT, videoInfo->height,
+ 				"framerate", GST_TYPE_FRACTION, fps, 1,
+ 				"flvversion", G_TYPE_INT, 1,
+ 				NULL);
+ 			videodecoder = gst_element_factory_make ("ffdec_flv", NULL);
+ 			if ( ! videodecoder )
+ 			{
+ 				log_error("Unable to create videodecoder 'ffdec_flv' element");
+-				return false;
+-			}
+-
+-			// Check if the element was correctly created
+-			if (!videodecoder) {
+-				log_error(_("A gstreamer flashvideo (h.263) decoder element could not be created.  You probably need to install gst-ffmpeg."));
+-				return false;
++				missing_plugin_details = NetStreamGst_append_missing_codec_to_details
++				  (missing_plugin_details,
++				   videosource,
++				   videonincaps);
+ 			}
+ 
+ 		} else if (videoInfo->codec == VIDEO_CODEC_VP6) {
+ 			videonincaps = gst_caps_new_simple ("video/x-vp6-flash",
+ 				"width", G_TYPE_INT, 320, // We don't yet have a size extract for this codec, so we guess...
+ 				"height", G_TYPE_INT, 240,
+ 				"framerate", GST_TYPE_FRACTION, fps, 1,
+ 				NULL);
+ 			videodecoder = gst_element_factory_make ("ffdec_vp6f", NULL);
+ 			if ( ! videodecoder )
+ 			{
+ 				log_error("Unable to create videodecoder 'ffdec_vp6f' element");
+-				return false;
+-			}
+-
+-			// Check if the element was correctly created
+-			if (!videodecoder) {
+-				log_error(_("A gstreamer flashvideo (VP6) decoder element could not be created! You probably need to install gst-ffmpeg."));
+-				return false;
++				missing_plugin_details = NetStreamGst_append_missing_codec_to_details
++				  (missing_plugin_details,
++				   videosource,
++				   videonincaps);
+ 			}
+ 
+ 		} else if (videoInfo->codec == VIDEO_CODEC_SCREENVIDEO) {
+ 			videonincaps = gst_caps_new_simple ("video/x-flash-screen",
+ 				"width", G_TYPE_INT, 320, // We don't yet have a size extract for this codec, so we guess...
+ 				"height", G_TYPE_INT, 240,
+ 				"framerate", GST_TYPE_FRACTION, fps, 1,
+ 				NULL);
+ 			videodecoder = gst_element_factory_make ("ffdec_flashsv", NULL);
+ 
+ 			// Check if the element was correctly created
+ 			if (!videodecoder) {
+ 				log_error(_("A gstreamer flashvideo (ScreenVideo) decoder element could not be created! You probably need to install gst-ffmpeg."));
+-				return false;
++				missing_plugin_details = NetStreamGst_append_missing_codec_to_details
++				  (missing_plugin_details,
++				   videosource,
++				   videonincaps);
+ 			}
+ 
+ 		} else {
+ 			log_error(_("Unsupported video codec %d"), videoInfo->codec);
+ 			return false;
+ 		}
+ 
+-		g_object_set (G_OBJECT (videoinputcaps), "caps", videonincaps, NULL);
+-		gst_caps_unref (videonincaps);
++		if(g_list_length(missing_plugin_details) == 0)
++		{
++		  g_object_set (G_OBJECT (videoinputcaps), "caps", videonincaps, NULL);
++		  gst_caps_unref (videonincaps);
++		}
+ 	}
+-	video = doVideo;
+ 
+-	return true;
+ 
++	if(g_list_length(missing_plugin_details) == 0)
++	{
++	  g_debug("no missing plugins found");
++	  video = doVideo;
++	  return true;
++	}
++
++	g_debug("try to install missing plugins (count=%d)", g_list_length(missing_plugin_details));
++	if(NetStreamGst_install_missing_codecs(missing_plugin_details))
++	{
++	  disconnectVideoHandoffSignal();
++	  g_list_free(missing_plugin_details);
++	  missing_plugin_details = NULL;
++	  g_debug("gst_install_plugins_sync -> GST_INSTALL_PLUGINS_SUCCESS ... one more roundtrip");
++	  goto retry;
++	}
++	g_list_free(missing_plugin_details);
++	return false;
+ }
+ 
+ bool
+ NetStreamGst::buildFLVSoundPipeline(bool &sound)
+ {
+ 	bool doSound = sound;
+ 
+ 	FLVAudioInfo* audioInfo = m_parser->getAudioInfo();
+ 	if (!audioInfo) doSound = false;
+ 
++	GList *missing_plugin_details = NULL;
++ retry:
+ 	if (doSound) {
+ 
+ #ifdef GNASH_DEBUG
+ 		log_debug("Building FLV video decoding pipeline");
+ #endif
+ 
+ 		audiosource = gst_element_factory_make ("fakesrc", NULL);
+ 		if ( ! audiosource )
+@@ -672,17 +776,16 @@
+ 			audiodecoder = gst_element_factory_make ("mad", NULL);
+ 			if ( ! audiodecoder )
+ 			{
+ 				audiodecoder = gst_element_factory_make ("flump3dec", NULL);
+ 				// Check if the element was correctly created
+ 				if (!audiodecoder)
+ 				{
+ 					log_error(_("A gstreamer mp3-decoder element could not be created! You probably need to install a mp3-decoder plugin like gstreamer0.10-mad or gstreamer0.10-fluendo-mp3."));
+-					return false;
+ 				}
+ 			}
+ 
+ 
+ 			// Set the info about the stream so that gstreamer knows what it is.
+ 			audioinputcaps = gst_element_factory_make ("capsfilter", NULL);
+ 			if (!audioinputcaps)
+ 			{
+@@ -690,16 +793,36 @@
+ 				return false;
+ 			}
+ 
+ 			GstCaps* audioincaps = gst_caps_new_simple ("audio/mpeg",
+ 				"mpegversion", G_TYPE_INT, 1,
+ 				"layer", G_TYPE_INT, 3,
+ 				"rate", G_TYPE_INT, audioInfo->sampleRate,
+ 				"channels", G_TYPE_INT, audioInfo->stereo ? 2 : 1, NULL);
++
++			if(!audiodecoder)
++			{
++			  missing_plugin_details = NetStreamGst_append_missing_codec_to_details
++			    (missing_plugin_details,
++			     audiosource,
++			     audioincaps);
++
++			  if(NetStreamGst_install_missing_codecs(missing_plugin_details))
++			  {
++			    disconnectAudioHandoffSignal();
++			    g_list_free(missing_plugin_details);
++			    missing_plugin_details = NULL;
++			    g_debug("gst_install_plugins_sync -> GST_INSTALL_PLUGINS_SUCCESS ... one more roundtrip");
++			    goto retry;
++			  }
++
++			  g_list_free(missing_plugin_details);
++			  return false;
++			} 
+ 			g_object_set (G_OBJECT (audioinputcaps), "caps", audioincaps, NULL);
+ 			gst_caps_unref (audioincaps);
+ 		} else {
+ 			log_error(_("Unsupported audio codec %d"), audioInfo->codec);
+ 			return false;
+ 		}
+ 	}
+ 
--- gnash-0.8.2.orig/debian/patches/do-not-delete-gmo-files
+++ gnash-0.8.2/debian/patches/do-not-delete-gmo-files
@@ -0,0 +1,12 @@
+Index: gnash-0.8.1~rc.070818/po/Makefile.am
+===================================================================
+--- gnash-0.8.1~rc.070818.orig/po/Makefile.am	2007-09-30 02:29:01.000000000 +0200
++++ gnash-0.8.1~rc.070818/po/Makefile.am	2007-09-30 02:29:05.000000000 +0200
+@@ -21,7 +21,6 @@
+ 
+ 
+ CLEANFILES = \
+-	*.gmo \
+ 	gnash.pot \
+ 	POTFILES \
+ 	update-po
--- gnash-0.8.2.orig/debian/shlibs.local
+++ gnash-0.8.2/debian/shlibs.local
@@ -0,0 +1,6 @@
+libgnashserver 0.8.2 gnash-common (= ${binary:Version})
+libgnashgeo 0.8.2 gnash-common (= ${binary:Version})
+libgnashamf 0.8.2 gnash-common (= ${binary:Version})
+libgnashbase 0.8.2 gnash-common (= ${binary:Version})
+libgnashbackend 0.8.2 gnash-common (= ${binary:Version})
+libgnashmedia 0.8.2 gnash-common (= ${binary:Version})
--- gnash-0.8.2.orig/debian/gnash-tools.manpages
+++ gnash-0.8.2/debian/gnash-tools.manpages
@@ -0,0 +1 @@
+debian/h2m/gprocessor.1
--- gnash-0.8.2.orig/debian/konqueror-plugin-gnash.install
+++ gnash-0.8.2/debian/konqueror-plugin-gnash.install
@@ -0,0 +1,4 @@
+tmp/usr/lib/kde3/libklashpart.so usr/lib/kde3/
+tmp/usr/lib/kde3/libklashpart.la usr/lib/kde3/
+tmp/usr/share/apps/klash usr/share/apps/
+tmp/usr/share/services/[Kk]lash* usr/share/services/
--- gnash-0.8.2.orig/debian/docs
+++ gnash-0.8.2/debian/docs
@@ -0,0 +1,4 @@
+NEWS
+README
+README.amf
+AUTHORS
--- gnash-0.8.2.orig/debian/gnash.install
+++ gnash-0.8.2/debian/gnash.install
@@ -0,0 +1,3 @@
+tmp/usr/bin/gtk-gnash usr/bin/
+gnash.xpm usr/share/pixmaps/
+gnash.desktop usr/share/applications/
--- gnash-0.8.2.orig/debian/mozilla-plugin-gnash.links
+++ gnash-0.8.2/debian/mozilla-plugin-gnash.links
@@ -0,0 +1,5 @@
+usr/lib/gnash/libgnashplugin.so usr/lib/mozilla/plugins/libgnashplugin.so
+usr/lib/gnash/libgnashplugin.so usr/lib/firefox/plugins/libgnashplugin.so
+usr/lib/gnash/libgnashplugin.so usr/lib/seamonkey/plugins/libgnashplugin.so
+usr/lib/gnash/libgnashplugin.so usr/lib/iceweasel/plugins/libgnashplugin.so
+usr/lib/gnash/libgnashplugin.so usr/lib/iceape/plugins/libgnashplugin.so
--- gnash-0.8.2.orig/debian/overrides/gnash-common
+++ gnash-0.8.2/debian/overrides/gnash-common
@@ -0,0 +1 @@
+gnash-common binary: binary-or-shlib-defines-rpath
--- gnash-0.8.2.orig/debian/overrides/gnash-cygnal
+++ gnash-0.8.2/debian/overrides/gnash-cygnal
@@ -0,0 +1 @@
+gnash-cygnal binary: binary-or-shlib-defines-rpath
--- gnash-0.8.2.orig/debian/overrides/gnash-tools
+++ gnash-0.8.2/debian/overrides/gnash-tools
@@ -0,0 +1 @@
+gnash-tools binary: binary-or-shlib-defines-rpath
--- gnash-0.8.2.orig/debian/overrides/klash
+++ gnash-0.8.2/debian/overrides/klash
@@ -0,0 +1 @@
+klash binary: binary-or-shlib-defines-rpath
--- gnash-0.8.2.orig/debian/copyright
+++ gnash-0.8.2/debian/copyright
@@ -0,0 +1,127 @@
+This package was debianized by Miriam Ruiz <little_miry@yahoo.es> on
+Sun,  7 May 2006 00:54:46 +0000.
+
+It was downloaded from ftp://ftp.gnu.org/pub/gnu/gnash/
+
+Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+
+Main Author: Rob Savoye <rob@senecass.com>
+
+Authors of Gameswf, which was the original code base for Gnash:
+        Thatcher Ulrich <tu@tulrich.com>
+        Mike Shaver
+        Thierry Berger-Perrin
+        Ignacio Castaño
+        Willem Kokke
+        Vitaly Alexeev
+        Alexander Streit
+
+License:
+
+   This package is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation, either version 3 of the License, or
+   (at your option) any later version.
+
+   This package 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 General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+
+
+Other licenses:
+
+** Server:
+
+   Linking Gnash statically or dynamically with other modules is making
+   a combined work based on Gnash. Thus, the terms and conditions of
+   the GNU General Public License cover the whole combination.
+   
+   In addition, as a special exception, the copyright holders of Gnash give
+   you permission to combine Gnash with free software programs or
+   libraries that are released under the GNU LGPL and/or with Mozilla, 
+   so long as the linking with Mozilla, or any variant of Mozilla, is
+   through its standard plug-in interface. You may copy and distribute
+   such a system following the terms of the GNU GPL for Gnash and the
+   licenses of the other code concerned, provided that you include the
+   source code of that other code when and as the GNU GPL requires
+   distribution of source code. 
+   
+   Note that people who make modified versions of Gnash are not obligated
+   to grant this special exception for their modified versions; it is
+   their choice whether to do so.  The GNU General Public License gives
+   permission to release a modified version without this exception; this
+   exception also makes it possible to release a modified version which
+   carries forward this exception.
+
+** Tuffy Fonts:
+
+   Tuffy fonts have been created by Thatcher Ulrich (http://tulrich.com)
+   with FontForge 1.0 (http://fontforge.sf.net).
+   The fonts, including hint instructions, have been donated to the Public Domain.
+   Do whatever you want with them.
+
+** plugin/mozilla-sdk/include/npruntime.h:
+
+   Copyright © 2004, Apple Computer, Inc. and The Mozilla Foundation. 
+   All rights reserved.
+   
+   Redistribution and use in source and binary forms, with or without
+   modification, are permitted provided that the following conditions are
+   met:
+   
+   1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+   2. Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+   3. Neither the names of Apple Computer, Inc. ("Apple") or The Mozilla
+   Foundation ("Mozilla") nor the names of their contributors may be used
+   to endorse or promote products derived from this software without
+   specific prior written permission.
+   
+   THIS SOFTWARE IS PROVIDED BY APPLE, MOZILLA AND THEIR CONTRIBUTORS "AS
+   IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+   TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+   PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE, MOZILLA OR
+   THEIR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+   TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+** Parts of plugin/mozilla-sdk/include/prerror.h:
+
+   Copyright (C) 1987, 1988 Student Information Processing Board of the
+   Massachusetts Institute of Technology.
+
+   Permission to use, copy, modify, and distribute this software and its
+   documentation for any purpose and without fee is hereby granted, provided
+   that the above copyright notice appear in all copies and that both that
+   copyright notice and this permission notice appear in supporting
+   documentation, and that the names of M.I.T. and the M.I.T. S.I.P.B. not be
+   used in advertising or publicity pertaining to distribution of the software
+   without specific, written prior permission.  M.I.T. and the M.I.T. S.I.P.B.
+   make no representations about the suitability of this software for any
+   purpose.  It is provided "as is" without express or implied warranty.
+
+** Documentation (It is not included in binary packages, but it is in source):
+
+Copyright (c) 2005, 2006 Rob Savoye
+
+   Permission is granted to copy, distribute and/or modify this document
+   under the terms of the GNU Free Documentation License, Version 1.1 or
+   any later version published by the Free Software Foundation with no
+   Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
+
+On Debian systems, the complete text of the GNU Free Documentation License
+can be found in `/usr/share/common-licenses/GFDL-1.2'.
--- gnash-0.8.2.orig/debian/gnash-common.install
+++ gnash-0.8.2/debian/gnash-common.install
@@ -0,0 +1,13 @@
+tmp/usr/lib/gnash/libgnashamf-*.so usr/lib/gnash/
+tmp/usr/lib/gnash/libgnashamf.so usr/lib/gnash/
+tmp/usr/lib/gnash/libgnashbase-*.so usr/lib/gnash/
+tmp/usr/lib/gnash/libgnashbase.so usr/lib/gnash/
+tmp/usr/lib/gnash/libgnashmedia-*.so usr/lib/gnash/
+tmp/usr/lib/gnash/libgnashmedia.so usr/lib/gnash/
+tmp/usr/lib/gnash/libgnashserver-*.so usr/lib/gnash/
+tmp/usr/lib/gnash/libgnashserver.so usr/lib/gnash/
+
+tmp/usr/bin/gnash usr/bin/
+tmp/usr/share/man/man1/gnash.1 usr/share/man/man1/
+tmp/usr/share/gnash usr/share/
+tmp/usr/share/locale usr/share/
--- gnash-0.8.2.orig/debian/gnash-cygnal.install
+++ gnash-0.8.2/debian/gnash-cygnal.install
@@ -0,0 +1 @@
+tmp/usr/bin/cygnal usr/bin/
--- gnash-0.8.2.orig/debian/TODO.Debian
+++ gnash-0.8.2/debian/TODO.Debian
@@ -0,0 +1,4 @@
+* Add a menu file and uncomment dh_installmenu in the debian/rules.
+* Create a better icon.
+* Find a way to generate man pages without $DISPLAY.
+* Add LDFLAGS="-Wl,-z,defs" to ./configure in rules.
