--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock
Please unblock package zaz
RC bug fix.
unblock zaz/1.0.0~dfsg1-3
diff -Nru zaz-1.0.0~dfsg1/debian/changelog zaz-1.0.0~dfsg1/debian/changelog
--- zaz-1.0.0~dfsg1/debian/changelog 2013-09-13 15:31:32.000000000 -0400
+++ zaz-1.0.0~dfsg1/debian/changelog 2014-11-24 19:30:38.000000000 -0500
@@ -1,3 +1,11 @@
+zaz (1.0.0~dfsg1-3) unstable; urgency=medium
+
+ [ Peter Pentchev ]
+ * Team upload.
+ * Link with libvorbis, not just libvorbisenc. Closes: #768718
+
+ -- Scott Kitterman <scott@kitterman.com> Mon, 24 Nov 2014 19:30:11 -0500
+
zaz (1.0.0~dfsg1-2) unstable; urgency=low
[ Miriam Ruiz ]
diff -Nru zaz-1.0.0~dfsg1/debian/patches/libvorbis.patch zaz-1.0.0~dfsg1/debian/patches/libvorbis.patch
--- zaz-1.0.0~dfsg1/debian/patches/libvorbis.patch 1969-12-31 19:00:00.000000000 -0500
+++ zaz-1.0.0~dfsg1/debian/patches/libvorbis.patch 2014-11-24 19:29:09.000000000 -0500
@@ -0,0 +1,27 @@
+Description: Link with libvorbis, too.
+ This is fallout from the fact that other libraries in Debian, such as
+ libvorbisfile, no longer include their own dependencies in the pkg-config
+ output. Until now, zaz built just fine because -lvorbis was added by
+ other libraries; now it has to add it on its own.
+ .
+ This bug should really be fixed upstream by adding an explicit check for
+ libvorbis in configure.ac, something like
+ AC_CHECK_LIB([vorbis], [vorbis_bitrate_addblock])
+ I do intend to do that in a future upload, but IMHO this minimal patch
+ ought to be suitable for the Jessie freeze.
+Debian-Bug: https://bugs.debian.org/768718
+Author: Peter Pentchev <roam@ringlet.net>
+Forwarded: not-yet
+Last-Update: 2014-11-10
+
+--- a/src/Makefile.in
++++ b/src/Makefile.in
+@@ -273,7 +273,7 @@
+ splash.cpp
+
+ zaz_LDFLAGS =
+-zaz_LDADD = $(ZAZ_LIBS) $(FTGL_LIBS) $(GL_LIBS) @LIBINTL@
++zaz_LDADD = $(ZAZ_LIBS) -lvorbis $(FTGL_LIBS) $(GL_LIBS) @LIBINTL@
+ all: all-am
+
+ .SUFFIXES:
diff -Nru zaz-1.0.0~dfsg1/debian/patches/series zaz-1.0.0~dfsg1/debian/patches/series
--- zaz-1.0.0~dfsg1/debian/patches/series 2013-09-13 15:08:06.000000000 -0400
+++ zaz-1.0.0~dfsg1/debian/patches/series 2014-11-24 19:29:09.000000000 -0500
@@ -2,3 +2,4 @@
no_music_2.patch
mismatched_delete.patch
jumpy_keyboard.patch
+libvorbis.patch
--- End Message ---