diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-05-12 08:28:56 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-05-12 08:28:56 +0000 |
commit | 47398fcc29d03658b1c579d09f232e3842259726 (patch) | |
tree | 84a8476c1ca425d852328e529beaf8ff045fba2b /media-video/kdenlive/files | |
parent | fix build of ruby bindings on a system without libcaca installed, by Arfrever... (diff) | |
download | gentoo-2-47398fcc29d03658b1c579d09f232e3842259726.tar.gz gentoo-2-47398fcc29d03658b1c579d09f232e3842259726.tar.bz2 gentoo-2-47398fcc29d03658b1c579d09f232e3842259726.zip |
Fix automagic on libiec61883 by Olivier Huber <oli.huber@gmail.com>, bug #220095
(Portage version: 2.1.5_rc10)
Diffstat (limited to 'media-video/kdenlive/files')
-rw-r--r-- | media-video/kdenlive/files/kdenlive-0.5-iec61883_automagic.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/media-video/kdenlive/files/kdenlive-0.5-iec61883_automagic.patch b/media-video/kdenlive/files/kdenlive-0.5-iec61883_automagic.patch new file mode 100644 index 000000000000..9f04707a5237 --- /dev/null +++ b/media-video/kdenlive/files/kdenlive-0.5-iec61883_automagic.patch @@ -0,0 +1,20 @@ +Index: kdenlive-0.5/configure.in.in +=================================================================== +--- kdenlive-0.5.orig/configure.in.in ++++ kdenlive-0.5/configure.in.in +@@ -59,9 +59,15 @@ AC_CHECK_HEADERS([ffmpeg/avformat.h liba + + # LIBIEC61883 + ++AC_ARG_WITH([libiec61883], AS_HELP_STRING([--without-libiec61883], [Build without libiec61883 library (default: test)])) ++ ++use_iec61883=no ++ ++if test "x$with_libiec61883" != "xno"; then + PKG_CHECK_MODULES(LIBIEC61883, libiec61883 >= 1.0.0, + [use_iec61883=yes], + [use_iec61883=no]) ++fi + AC_SUBST(LIBIEC61883_CFLAGS) + AC_SUBST(LIBIEC61883_LIBS) + |