Description: fix upstream-version in configure
 upstream uses git-magic to set the version in AC_INIT().
 since we are only dealing with "releases", we want to have proper version
 numbers. since we don't want to update the patch for each new upstream-
 release, we parse debian/changelog to extract the upstream version number.
Author: IOhannes m zmölnig
Forwarded: not-needed
Last-Update: 2014-03-04
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- soundscaperenderer.orig/configure.ac
+++ soundscaperenderer/configure.ac
@@ -16,7 +16,7 @@
 dnl arguments: full package name, version, email address for bug reports,
 dnl tarball name, homepage
 AC_INIT([SSR (SoundScape Renderer)],
-        [m4_esyscmd_s([git describe 2> /dev/null || date +$USER%Y%m%d%H%M])],
+        [m4_esyscmd_s([./debian/scripts/upstreamversion.sh])],
         [ssr@spatialaudio.net],
         [ssr],
         [http://spatialaudio.net/ssr/])
