control: tags -1 +patch Hi,
>>> dh_install: gstreamer0.10-plugins-ugly missing files >>> (debian/tmp/usr/lib/*/gstreamer-0.10/libgsta52dec.so), aborting libgsta52dec.so was not generated so failed to be installed, attached patch fix this issue. -- Regards, Hideki Yamane henrich @ debian.or.jp/org http://wiki.debian.org/HidekiYamane
diff -Nru gst-plugins-ugly0.10-0.10.19/debian/changelog gst-plugins-ugly0.10-0.10.19/debian/changelog --- gst-plugins-ugly0.10-0.10.19/debian/changelog 2012-04-23 15:53:01.000000000 +0900 +++ gst-plugins-ugly0.10-0.10.19/debian/changelog 2014-03-26 16:02:13.000000000 +0900 @@ -1,3 +1,12 @@ +gst-plugins-ugly0.10 (0.10.19-2.1) unstable; urgency=medium + + * Non-maintainer upload. + * debian/patches + - add a52dec.patch to enable a52dec module. This change would fix FTBFS + (Closes: #741848) + + -- Hideki Yamane <henr...@debian.org> Mon, 24 Mar 2014 23:56:56 +0900 + gst-plugins-ugly0.10 (0.10.19-2) unstable; urgency=low * debian/patches/01_opencore-amr-0.1.3.patch: diff -Nru gst-plugins-ugly0.10-0.10.19/debian/patches/a52dec.patch gst-plugins-ugly0.10-0.10.19/debian/patches/a52dec.patch --- gst-plugins-ugly0.10-0.10.19/debian/patches/a52dec.patch 1970-01-01 09:00:00.000000000 +0900 +++ gst-plugins-ugly0.10-0.10.19/debian/patches/a52dec.patch 2014-03-26 16:00:22.000000000 +0900 @@ -0,0 +1,23 @@ +Description: enable A52DEC module generation + + AC_CHECK_A52DEC always returns "HAVE_A52DEC=no" so module would not + be generated. This patch changes to do it. + +Author: Hideki Yamane <henr...@debian.org> +Bug-Debian: http://bugs.debian.org/<bugnumber> +Forwarded: no +Last-Update: 2014-03-26 + +Index: gst-plugins-ugly0.10-0.10.19/configure.ac +=================================================================== +--- gst-plugins-ugly0.10-0.10.19.orig/configure.ac ++++ gst-plugins-ugly0.10-0.10.19/configure.ac +@@ -242,7 +242,7 @@ echo + dnl *** a52dec *** + translit(dnm, m, l) AM_CONDITIONAL(USE_A52DEC, true) + AG_GST_CHECK_FEATURE(A52DEC, [a52dec], a52dec, [ +- AC_CHECK_A52DEC(HAVE_A52DEC=yes, HAVE_A52DEC=no) ++ AC_CHECK_A52DEC(,HAVE_A52DEC="yes") + ]) + + dnl *** amr-nb *** diff -Nru gst-plugins-ugly0.10-0.10.19/debian/patches/series gst-plugins-ugly0.10-0.10.19/debian/patches/series --- gst-plugins-ugly0.10-0.10.19/debian/patches/series 2012-04-23 15:52:15.000000000 +0900 +++ gst-plugins-ugly0.10-0.10.19/debian/patches/series 2014-03-26 16:00:43.000000000 +0900 @@ -1,2 +1,3 @@ 01_opencore-amr-0.1.3.patch 99_ltmain_as-needed.patch +a52dec.patch