--- wsola-4.9.orig/debian/changelog
+++ wsola-4.9/debian/changelog
@@ -0,0 +1,66 @@
+wsola (4.9-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Re-adopting my package. (Closes: #544631)
+
+ -- mffm Matt Flax (2003) <flatmax@ieee.org>  Thu, 21 Jan 2010 10:27:17 +1100
+
+wsola (4.9-2) unstable; urgency=low
+
+  * QA upload.
+  * debian/control:
+    - set maintainer to QA group
+    - bump compat and debhelper version to 7
+    - bump Standards-Version to 3.8.0
+      + add Homepage field
+    - update description (Closes: #376674)
+    - remove c++abi2-dev from Build-Depends
+  * Remove debian/dirs.
+  * debian/rules:
+    - general reformat
+    - don't ignore make clean error
+    - add binary-{arch,indep}, build-{arch,indep}, install targets properly
+    - remove unneeded lines, dh_* calls
+  * Add debian/watch file.
+
+ -- Iulian Udrea <iulian@ubuntu.com>  Fri, 14 Nov 2008 15:06:52 +0000
+
+wsola (4.9-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Use ${shlibs:Depends}.  Thanks to Stefan Huehner for the patch.
+    Closes: #357950.
+
+ -- Matej Vela <vela@debian.org>  Fri, 19 May 2006 12:22:32 -0500
+
+wsola (4.9-1) unstable; urgency=low
+
+  * New upstream version of WSOLA
+
+ -- Matt Flax <flatmax@pgb.unsw.edu.au>  Sun, 16 Oct 2005 22:41:34 +1000
+
+wsola (4.8-1) unstable; urgency=low
+
+  * New upstream version and altered the description (Closes: 304581)
+
+ -- Matt Flax <flatmax@pgb.unsw.edu.au>  Fri, 29 Apr 2005 00:08:24 +1000
+
+wsola (4.3-1) unstable; urgency=low
+
+  * new upstream release
+
+ -- Matt Flax <flatmax@pgb.unsw.edu.au>  Mon, 28 Feb 2005 00:08:21 +1100
+
+wsola (4.2-1) unstable; urgency=low
+
+  * Release of major version change in wsola. WSOLA now may be used in 
+    embedded code as the memory footprint is tiny.
+
+ -- Matt Flax <flatmax@pgb.unsw.edu.au>  Mon, 17 Jan 2005 14:41:16 +1100
+
+wsola (3.9-1) unstable; urgency=low
+
+  * Initial Release. (Closes: 281649).
+
+ -- Matt Flax <flatmax@pgb.unsw.edu.au>  Thu,  2 Dec 2004 12:47:02 +1100
+
--- wsola-4.9.orig/debian/copyright
+++ wsola-4.9/debian/copyright
@@ -0,0 +1,14 @@
+This package was debianized by Matt Flax <flatmax@pgb.unsw.edu.au> on
+Thu,  2 Dec 2004 12:47:02 +1100.
+
+It was downloaded from http://sourceforge.net/projects/mffmtimescale/
+
+Copyright 2001 Matt Flax <flatmax@ieee.org>
+
+Upstream Author: Matt Flax <flatmax@ieee.org>
+
+You are free to distribute this software under the terms of
+the GNU General Public License.
+On Debian systems, the complete text of the GNU General Public
+License can be found in the file `/usr/share/common-licenses/GPL'.
+
--- wsola-4.9.orig/debian/watch
+++ wsola-4.9/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/mffmtimescale/WSOLA.(.*)\.tar\.gz
--- wsola-4.9.orig/debian/control
+++ wsola-4.9/debian/control
@@ -0,0 +1,36 @@
+Source: wsola
+Section: sound
+Priority: optional
+Maintainer: Debian QA Group <packages@qa.debian.org>
+Build-Depends: debhelper (>= 7), mffm-fftw-dev, mffm-libsndfilew-dev, mffm-timecode-dev, libsndfile1-dev
+Standards-Version: 3.8.0
+Homepage: http://sourceforge.net/projects/mffmtimescale/
+
+Package: wsola
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: tool to speed up/slow down audio without altering its pitch
+ Wsola stretches and compresses audio without altering the frequency
+ character of the audio. For reasonable factors, this application will 
+ scale audio without altering signal levels or introducing artifacts 
+ (in the ideal implementation).
+ .
+ Wsola can be used on ambisonic recordings because it keeps the channels 
+ in sync.
+
+Package: wsola-dev
+Section: devel
+Architecture: all
+Depends: mffm-fftw-dev, mffm-libsndfilew-dev, mffm-timecode-dev, libsndfile1-dev, wsola
+Description: header files for the embedded WSOLA algorithm
+ WSOLA speeds up and slows down audio without altering the pitch.
+ These header files are whats required to embedd WSOLA into your audio
+ applications.
+ .
+ These header files allow WSOLA to be incorperated into embedded (or 
+ normal) code base. This algorithm has a very small memory footprint 
+ (tens of kilobytes) and allows it to be implemented on embedded 
+ devices. It also has variable time scaling, allowing dynamic adjustment 
+ of audio playback speed.
+ .
+ Please see the package 'wsola' for more information.
--- wsola-4.9.orig/debian/compat
+++ wsola-4.9/debian/compat
@@ -0,0 +1 @@
+7
--- wsola-4.9.orig/debian/docs
+++ wsola-4.9/debian/docs
@@ -0,0 +1 @@
+README
--- wsola-4.9.orig/debian/rules
+++ wsola-4.9/debian/rules
@@ -0,0 +1,58 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(MAKE)
+
+	touch $@
+
+clean: 
+	dh_testdir
+	dh_testroot
+
+	[ ! -f Makefile ] || $(MAKE) clean
+	dh_clean build-stamp
+
+install: build 
+	dh_testdir
+	dh_testroot
+	dh_installdirs
+
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/wsola
+	$(MAKE) install.dev DESTDIR=$(CURDIR)/debian/wsola-dev
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs Changelog
+	dh_installdocs
+	dh_installman
+	dh_strip
+	dh_compress 
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+# Build architecture-independent files here.
+binary-indep: build install
+
+binary: binary-arch binary-indep
+
+.PHONY: build clean binary-indep binary-arch binary install
