media-sound/karlyriceditor: Fix build with ffmpeg-4
authorAndreas Sturmlechner <asturm@gentoo.org>
Sun, 16 Sep 2018 08:01:48 +0000 (10:01 +0200)
committerAndreas Sturmlechner <asturm@gentoo.org>
Sun, 16 Sep 2018 08:03:12 +0000 (10:03 +0200)
Closes: https://bugs.gentoo.org/665710
Package-Manager: Portage-2.3.49, Repoman-2.3.10

media-sound/karlyriceditor/files/karlyriceditor-2.2-ffmpeg-4.patch [new file with mode: 0644]
media-sound/karlyriceditor/karlyriceditor-2.2-r1.ebuild

diff --git a/media-sound/karlyriceditor/files/karlyriceditor-2.2-ffmpeg-4.patch b/media-sound/karlyriceditor/files/karlyriceditor-2.2-ffmpeg-4.patch
new file mode 100644 (file)
index 0000000..b7ae9d6
--- /dev/null
@@ -0,0 +1,34 @@
+Description: Fix FTBFS with FFmpeg 4.0
+Author: James Cowgill <jcowgill@debian.org>
+Bug-Debian: https://bugs.debian.org/888377
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/src/ffmpegvideoencoder.cpp
++++ b/src/ffmpegvideoencoder.cpp
+@@ -345,7 +345,7 @@ av_log_set_level(AV_LOG_VERBOSE);
+       // Enable interlacing if needed
+       if ( m_videoformat->flags & VIFO_INTERLACED )
+-              videoCodecCtx->flags |= CODEC_FLAG_INTERLACED_DCT;
++              videoCodecCtx->flags |= AV_CODEC_FLAG_INTERLACED_DCT;
+       // Enable multithreaded encoding: breaks FLV!
+       //videoCodecCtx->thread_count = 4;
+@@ -373,7 +373,7 @@ av_log_set_level(AV_LOG_VERBOSE);
+       // If we have a global header for the format, no need to duplicate the codec info in each keyframe
+       if ( outputFormatCtx->oformat->flags & AVFMT_GLOBALHEADER )
+-              videoCodecCtx->flags |= CODEC_FLAG_GLOBAL_HEADER;
++              videoCodecCtx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
+       // Open the codec
+       if ( ( err = avcodec_open2( videoCodecCtx, videoCodec, 0 )) < 0 )
+@@ -463,7 +463,7 @@ av_log_set_level(AV_LOG_VERBOSE);
+                       audioCodecCtx->time_base.den = m_profile->sampleRate;
+                       if ( outputFormatCtx->oformat->flags & AVFMT_GLOBALHEADER )
+-                              audioCodecCtx->flags |= CODEC_FLAG_GLOBAL_HEADER;
++                              audioCodecCtx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
+                       // Since different audio codecs support different sample formats, look up which one is supported by this specific codec
+                       if ( isAudioSampleFormatSupported( audioCodec->sample_fmts, AV_SAMPLE_FMT_FLTP ) )
index 5c711653cc5152ba2fa5b75761c8a4d396f61110..a0b4b5ff69a71ad781bbb91243c82dcee1c5d08f 100644 (file)
@@ -1,12 +1,12 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit eutils qmake-utils
+inherit desktop qmake-utils
 
 DESCRIPTION="Application to edit and synchronize lyrics with karaoke songs in various formats"
-HOMEPAGE="http://www.ulduzsoft.com/linux/karaoke-lyrics-editor/"
+HOMEPAGE="https://www.ulduzsoft.com/linux/karaoke-lyrics-editor/"
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3+"
@@ -27,6 +27,8 @@ DEPEND="${RDEPEND}
        virtual/pkgconfig
 "
 
+PATCHES=( "${FILESDIR}/${P}-ffmpeg-4.patch" )
+
 src_configure() {
        eqmake5 "${PN}.pro"
 }