--- vorbisgain-0.36.orig/debian/changelog
+++ vorbisgain-0.36/debian/changelog
@@ -0,0 +1,115 @@
+vorbisgain (0.36-3.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Apply patch from Pavel N. Krivitsky to use temp files, which are dependent
+ on the file which is beeing processed, instead always using the same
+ filename, which can result to data loss in scenarios where two or more
+ vorbis processes are running parallel.
+ (Closes: #505164)
+
+ -- Patrick Schoenfeld <schoenfeld@debian.org> Mon, 10 Nov 2008 12:55:38 +0100
+
+vorbisgain (0.36-3) unstable; urgency=low
+
+ * recurse.c: Zero errno before readdir call. (Closes: #375110)
+ * s/ReplayGain/Replay Gain/
+ * Standards-Version 3.7.2.
+
+ -- Joe Wreschnig <piman@debian.org> Mon, 26 Jun 2006 16:37:21 -0500
+
+vorbisgain (0.36-2) unstable; urgency=low
+
+ * Adopting this package; thanks to Lars for all his previous work.
+ * vorbisgain.1: --skip, not --silent. (Closes: #355783)
+ * debian/control: Tweak description, list more supporting players.
+ * debian/rules: Remove commented-out dh_* calls.
+
+ -- Joe Wreschnig <piman@debian.org> Sun, 12 Mar 2006 15:20:31 -0600
+
+vorbisgain (0.36-1) unstable; urgency=low
+
+ * New upstream version. Closes: #327600 ("new upstream version
+ available").
+ * Bumped Standards-Version to 3.6.2. No changes required.
+ * debian/copyright: Added note that upstream .zip gets repackaged into
+ .orig.tar.gz.
+ * Upgraded to debhelper compatibility level (DH_COMPAT in debian/rules)
+ to 5. This meant adding ${misc:Depends} to debian/control.
+
+ -- Lars Wirzenius <liw@iki.fi> Mon, 19 Dec 2005 01:28:55 +0200
+
+vorbisgain (0.35-2) unstable; urgency=low
+
+ * recurse.c: Disabled processing of wildcards in the filenames. This
+ makes the Debian package differ from what upstream wants, but results
+ in fewer surprises to users who are not accustomed to vorbisgain as
+ it is more natural to Unix users in general. Also, makes it possible
+ at all to process files with wildcards in their names.
+ Closes: #288056.
+ * vorbis.c: Don't touch mtime after the file has been modified.
+ Closes: #281316.
+ * vorbisgain.1: Modified an example using wildcards and added a note to
+ the end of the differences in behavior between upstream and Debian.
+
+ -- Lars Wirzenius <liw@iki.fi> Wed, 19 Jan 2005 18:22:00 +0200
+
+vorbisgain (0.35-1) unstable; urgency=low
+
+ * New maintainer.
+ * New upstream version.
+ * Re-enabled --recursive. I can't reproduce bug #222959, where files
+ with question marks in their names would cause vorbisgain to think
+ they start a new album. Closes: #226543.
+
+ -- Lars Wirzenius <liw@iki.fi> Sun, 7 Nov 2004 22:12:00 +0200
+
+vorbisgain (0.34-2) unstable; urgency=low
+
+ * Don't use --enable-recursive (closes: #222959)
+
+ -- Tollef Fog Heen <tfheen@debian.org> Tue, 23 Dec 2003 12:06:25 +0100
+
+vorbisgain (0.34-1) unstable; urgency=low
+
+ * New upstream release
+ - fixes bug in example code with 48kHz files (closes: #172331)
+
+ -- Tollef Fog Heen <tfheen@debian.org> Thu, 18 Sep 2003 10:34:15 +0200
+
+vorbisgain (0.32-6) unstable; urgency=low
+
+ * Fix segfault
+
+ -- Tollef Fog Heen <tfheen@debian.org> Wed, 9 Apr 2003 23:34:50 +0200
+
+vorbisgain (0.32-5) unstable; urgency=low
+
+ * Rebuild with new libvorbis.
+
+ -- Tollef Fog Heen <tfheen@debian.org> Fri, 14 Mar 2003 17:04:23 +0100
+
+vorbisgain (0.32-4) unstable; urgency=low
+
+ * Add AM_MAINTAINER_MODE, which will hopefully make automake not be
+ required any more. (closes: #167756)
+
+ -- Tollef Fog Heen <tfheen@debian.org> Tue, 12 Nov 2002 01:56:33 +0100
+
+vorbisgain (0.32-3) unstable; urgency=low
+
+ * Add --enable-recursive to configure
+
+ -- Tollef Fog Heen <tfheen@debian.org> Wed, 16 Oct 2002 15:13:18 +0200
+
+vorbisgain (0.32-2) unstable; urgency=low
+
+ * Fix description (closes: #164715)
+
+ -- Tollef Fog Heen <tfheen@debian.org> Wed, 16 Oct 2002 01:28:24 +0200
+
+vorbisgain (0.32-1) unstable; urgency=low
+
+ * Initial Release. (closes: #163810)
+
+ -- Tollef Fog Heen <tfheen@debian.org> Tue, 8 Oct 2002 17:36:22 +0200
+
--- vorbisgain-0.36.orig/debian/rules
+++ vorbisgain-0.36/debian/rules
@@ -0,0 +1,72 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE=1
+export DH_COMPAT=5
+
+# 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)
+
+ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -g
+endif
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+ INSTALL_PROGRAM += -s
+endif
+
+config.status: configure
+ dh_testdir
+ # Add here commands to configure the package.
+ chmod +x configure
+ ./configure --host=$(DEB_HOST_GNU_TYPE) \
+ --enable-recursive \
+ --build=$(DEB_BUILD_GNU_TYPE) \
+ --prefix=/usr \
+ --mandir=\$${prefix}/share/man \
+ --infodir=\$${prefix}/share/info
+
+build: build-stamp
+
+build-stamp: config.status
+ dh_testdir
+ $(MAKE)
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+ -$(MAKE) distclean
+ -test -r /usr/share/misc/config.sub && \
+ cp -f /usr/share/misc/config.sub config.sub
+ -test -r /usr/share/misc/config.guess && \
+ cp -f /usr/share/misc/config.guess config.guess
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+ $(MAKE) install DESTDIR=$(CURDIR)/debian/vorbisgain
+
+
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_installdocs
+ dh_installman
+ dh_installchangelogs
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
--- vorbisgain-0.36.orig/debian/docs
+++ vorbisgain-0.36/debian/docs
@@ -0,0 +1,2 @@
+NEWS
+README
--- vorbisgain-0.36.orig/debian/dirs
+++ vorbisgain-0.36/debian/dirs
@@ -0,0 +1 @@
+usr/bin
--- vorbisgain-0.36.orig/debian/copyright
+++ vorbisgain-0.36/debian/copyright
@@ -0,0 +1,21 @@
+This package was debianized by Tollef Fog Heen <tfheen@debian.org> on
+Tue, 8 Oct 2002 17:36:22 +0200. It was later maintained by Lars Wirzenius
+<liw@iki.fi>. It is currently maintained by Joe Wreschnig <piman@debian.org>.
+
+It was downloaded from http://users.pandora.be/sjeng/vorbisgain.html
+Current upstream home page: http://sjeng.org/vorbisgain.html
+Upstream releases source as a .zip, which is re-packaged into a .orig.tar.gz.
+
+Upstream Authors: Magnus Holmgren <lear@algonet.se> and
+ Gian-Carlo Pascutto <gcp@sjeng.org>.
+
+Copyright:
+
+vorbisgain itself is under the GNU General Public License, version 2.
+The complete text of the GNU General Public License can be found under
+/usr/share/common-licenses/GPL-2 on most Debian systems.
+
+The implementation of the Replay Gain algorithm is under the GNU Lesser
+General Public License, version 2.1. The complete text of the LGPL
+v2.1 can be found under /usr/share/doc/common-licenses/LGPL-2.1 on
+most Debian systems.
--- vorbisgain-0.36.orig/debian/control
+++ vorbisgain-0.36/debian/control
@@ -0,0 +1,19 @@
+Source: vorbisgain
+Section: sound
+Priority: optional
+Maintainer: Joe Wreschnig <piman@debian.org>
+Build-Depends: debhelper (>= 5.0.10), libogg-dev, libvorbis-dev
+Standards-Version: 3.7.2
+
+Package: vorbisgain
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: add Replay Gain volume tags to Ogg Vorbis files
+ vorbisgain calculates a percieved volume of an Ogg Vorbis file using
+ the Replay Gain algorithm. It then stores a per-track and per-album
+ volume adjustment in the file's tags, to let songs play back with a
+ uniform volume. The process is non-destructive and does not change the
+ audio data at all.
+ .
+ Many audio players in Debian support reading these tags, including XMMS,
+ Quod Libet, amaroK, Muine, and Rhythmbox.