Hi, Attached is the diff for my kino 1.3.0-2.2 NMU.
-- Adeodato Simó dato at net.com.org.es Debian Developer adeodato at debian.org When all is summed up, a man never speaks of himself without loss; his accusations of himself are always believed; his praises never. -- Michel de Montaigne
diff -u kino-1.3.0/debian/changelog kino-1.3.0/debian/changelog --- kino-1.3.0/debian/changelog +++ kino-1.3.0/debian/changelog @@ -1,3 +1,11 @@ +kino (1.3.0-2.2) unstable; urgency=medium + + * Non-maintainer upload. + * Ajust src/frame.h for the new location of ffmpeg includes. + (Closes: #517749) + + -- Adeodato Simó <d...@net.com.org.es> Tue, 10 Mar 2009 12:23:47 +0000 + kino (1.3.0-2.1) unstable; urgency=low * Removed myself from Uploaders, which makes this a non-maintainer upload. diff -u kino-1.3.0/debian/patches/00list kino-1.3.0/debian/patches/00list --- kino-1.3.0/debian/patches/00list +++ kino-1.3.0/debian/patches/00list @@ -1,2 +1,3 @@ 10_playlist_algorithm +20_fix_FTBFS_with_new_ffmpeg 80_move_doc only in patch2: unchanged: --- kino-1.3.0.orig/debian/patches/20_fix_FTBFS_with_new_ffmpeg.dpatch +++ kino-1.3.0/debian/patches/20_fix_FTBFS_with_new_ffmpeg.dpatch @@ -0,0 +1,23 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 20_fix_FTBFS_with_new_ffmpeg.dpatch by Adeodato Simó +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fix source for new location of ffmpeg includes. + +...@dpatch@ +--- a/src/frame.h ++++ b/src/frame.h +@@ -48,10 +48,10 @@ + #if defined(HAVE_LIBAVCODEC) + extern "C" + { +-# include <avcodec.h> +-# include <avformat.h> ++# include <libavcodec/avcodec.h> ++# include <libavformat/avformat.h> + #ifdef HAVE_SWSCALE +-# include <swscale.h> ++# include <libswscale/swscale.h> + #endif + } + #endif