Source: ffdiaporama
Version: 1.5-4
Severity: wishlist
Tags: patch
Usertags: reintroducing-ffmpeg

Dear maintainer,

I am working on reintroducing FFmpeg to Debian [1-2].

In order to make FFmpeg co-installable with Libav, the libraries were
renamed to lib*-ffmpeg. Thus using linker flags like '-lavcodec' doesn't
work with the FFmpeg packages.

To get the correct linking flags for both FFmpeg and Libav, one can
(and should) use pkg-config.

Attached patch achieves that for this package. Please apply it to
facilitate building your package with FFmpeg in Debian.

If you want to facilitate this even further, you can also add
lib*-ffmpeg-dev alternatives to the Libav build-dependencies.

While the FFmpeg package is still waiting in the NEW queue [3], it can
already be built from the git repository [4].

Best regards,
Andreas


1: https://lists.debian.org/debian-devel/2014/07/msg01010.html
2: https://bugs.debian.org/729203
3: https://ftp-master.debian.org/new/ffmpeg_7:2.3.1-1.html
4: https://anonscm.debian.org/cgit/collab-maint/ffmpeg.git

diff --git a/debian/patches/pkg-config.patch b/debian/patches/pkg-config.patch
new file mode 100644
index 0000000..2e98bcb
--- /dev/null
+++ b/debian/patches/pkg-config.patch
@@ -0,0 +1,13 @@
+Description: Use pkg-config to determine FFmpeg linker flags
+
+Author: Andreas Cadhalpun <andreas.cadhal...@googlemail.com>
+Last-Update: <2014-05-16>
+
+--- ffdiaporama-1.5.orig/src/common.pri
++++ ffdiaporama-1.5/src/common.pri
+@@ -78,4 +78,4 @@ win32 {
+ #---- Libs for windows and linux
+ LIBS        += -ltag                                                        #------ TAGlib
+ LIBS	    += -lSDL                                                        #------ SDL
+-LIBS        += -lavformat -lavcodec -lavutil -lswscale -lavfilter -lavresample #------ libav lib link
++LIBS        += `pkg-config --libs libavformat libavcodec libavutil libswscale libavfilter libavresample`   #------ libav lib link
diff --git a/debian/patches/series b/debian/patches/series
index 48238b7..7f988c8 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,4 @@
 fix_hardening_flags.patch
 libav_0.9.patch
 libav10.patch
+pkg-config.patch

_______________________________________________
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Reply via email to