diff options
Diffstat (limited to 'multimedia/kdenlive/files')
-rw-r--r-- | multimedia/kdenlive/files/patch-src__CMakeLists.txt | 11 | ||||
-rw-r--r-- | multimedia/kdenlive/files/patch-src__recmonitor.cpp | 11 | ||||
-rw-r--r-- | multimedia/kdenlive/files/patch-src__wizard.cpp | 13 |
3 files changed, 0 insertions, 35 deletions
diff --git a/multimedia/kdenlive/files/patch-src__CMakeLists.txt b/multimedia/kdenlive/files/patch-src__CMakeLists.txt deleted file mode 100644 index 5ed9d6dc5a61..000000000000 --- a/multimedia/kdenlive/files/patch-src__CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ ---- ./src/CMakeLists.txt.orig 2013-04-06 21:25:09.000000000 +0200 -+++ ./src/CMakeLists.txt 2013-06-05 15:33:12.402759625 +0200 -@@ -14,6 +14,8 @@ - option(WITH_V4L "Build capture support with Video4Linux" ON) - option(WITH_JogShuttle "Build Jog/Shuttle support" ON) - -+set(FFMPEG_SUFFIX "" CACHE STRING "FFmpeg custom suffix") -+add_definitions(-DFFMPEG_SUFFIX=\\\"\"${FFMPEG_SUFFIX}\"\\\") - - - if(WITH_V4L) diff --git a/multimedia/kdenlive/files/patch-src__recmonitor.cpp b/multimedia/kdenlive/files/patch-src__recmonitor.cpp deleted file mode 100644 index c3cc0771ab46..000000000000 --- a/multimedia/kdenlive/files/patch-src__recmonitor.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- ./src/recmonitor.cpp.orig 2013-04-06 21:25:09.000000000 +0200 -+++ ./src/recmonitor.cpp 2013-06-05 15:37:14.742805014 +0200 -@@ -269,7 +269,7 @@ - m_stopAction->setEnabled(false); - m_playAction->setEnabled(false); - if (KdenliveSettings::ffmpegpath().isEmpty()) { -- QString exepath = KStandardDirs::findExe("ffmpeg"); -+ QString exepath = KStandardDirs::findExe(QString("ffmpeg%1").arg(FFMPEG_SUFFIX)); - if (exepath.isEmpty()) { - // Check for libav version - exepath = KStandardDirs::findExe("avconv"); diff --git a/multimedia/kdenlive/files/patch-src__wizard.cpp b/multimedia/kdenlive/files/patch-src__wizard.cpp deleted file mode 100644 index c6de970a5bbd..000000000000 --- a/multimedia/kdenlive/files/patch-src__wizard.cpp +++ /dev/null @@ -1,13 +0,0 @@ ---- ./src/wizard.cpp.orig 2013-04-06 21:25:09.000000000 +0200 -+++ ./src/wizard.cpp 2013-06-07 14:37:07.694597426 +0200 -@@ -499,8 +499,8 @@ - QTreeWidgetItem *item = new QTreeWidgetItem(m_check.programList, QStringList() << QString() << i18n("FFmpeg & ffplay")); - item->setData(1, Qt::UserRole, i18n("Required for proxy clips, transcoding and screen capture")); - item->setSizeHint(0, itemSize); -- QString exepath = KStandardDirs::findExe("ffmpeg"); -- QString playpath = KStandardDirs::findExe("ffplay"); -+ QString exepath = KStandardDirs::findExe(QString("ffmpeg%1").arg(FFMPEG_SUFFIX)); -+ QString playpath = KStandardDirs::findExe(QString("ffplay%1").arg(FFMPEG_SUFFIX)); - item->setIcon(0, m_okIcon); - if (exepath.isEmpty()) { - // Check for libav version |