diff options
author | Vadim Misbakh-Soloviov <mva@gentoo.org> | 2022-04-04 23:22:47 +0700 |
---|---|---|
committer | Vadim Misbakh-Soloviov <mva@gentoo.org> | 2022-04-04 23:25:19 +0700 |
commit | 7953e7cfb48cea5a5e6c3ffc5b452876b4513410 (patch) | |
tree | 379be8e86ced3fbe73519a31602b295b927e5f25 | |
parent | dev-ml/camlp-streams: add to tree (diff) | |
download | gentoo-7953e7cfb48cea5a5e6c3ffc5b452876b4513410.tar.gz gentoo-7953e7cfb48cea5a5e6c3ffc5b452876b4513410.tar.bz2 gentoo-7953e7cfb48cea5a5e6c3ffc5b452876b4513410.zip |
app-misc/qcma: fixing to support ffmpeg5
Bug: https://bugs.gentoo.org/834360
Package-Manager: Portage-3.0.30, Repoman-3.0.1
Signed-off-by: Vadim Misbakh-Soloviov <mva@gentoo.org>
-rw-r--r-- | app-misc/qcma/qcma-0.4.1.ebuild | 6 | ||||
-rw-r--r-- | app-misc/qcma/qcma-0.4.2_pre20181227.ebuild | 6 | ||||
-rw-r--r-- | app-misc/qcma/qcma-9999.ebuild | 6 |
3 files changed, 15 insertions, 3 deletions
diff --git a/app-misc/qcma/qcma-0.4.1.ebuild b/app-misc/qcma/qcma-0.4.1.ebuild index 865bbcb3f107..f86fb4692e5c 100644 --- a/app-misc/qcma/qcma-0.4.1.ebuild +++ b/app-misc/qcma/qcma-0.4.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -31,6 +31,10 @@ BDEPEND=" " src_prepare() { + # http://ffmpeg.org/pipermail/ffmpeg-devel/2018-February/225051.html + sed -r \ + -e '/av_register_all/d' \ + -i "${S}"/common/avdecoder.h || die "Failed to fix ffmpeg stuff" rm ChangeLog || die "Failed to rm changelog" # Triggers QA warn (symlink to nowhere) default } diff --git a/app-misc/qcma/qcma-0.4.2_pre20181227.ebuild b/app-misc/qcma/qcma-0.4.2_pre20181227.ebuild index 2e59784ff9cf..0341d187842a 100644 --- a/app-misc/qcma/qcma-0.4.2_pre20181227.ebuild +++ b/app-misc/qcma/qcma-0.4.2_pre20181227.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -33,6 +33,10 @@ BDEPEND=" " src_prepare() { + # http://ffmpeg.org/pipermail/ffmpeg-devel/2018-February/225051.html + sed -r \ + -e '/av_register_all/d' \ + -i "${S}"/common/avdecoder.h || die "Failed to fix ffmpeg stuff" rm ChangeLog || die "Failed to rm changelog" # Triggers QA warn (symlink to nowhere) default } diff --git a/app-misc/qcma/qcma-9999.ebuild b/app-misc/qcma/qcma-9999.ebuild index 7c2734bf0313..2af991e90295 100644 --- a/app-misc/qcma/qcma-9999.ebuild +++ b/app-misc/qcma/qcma-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -31,6 +31,10 @@ BDEPEND=" " src_prepare() { + # http://ffmpeg.org/pipermail/ffmpeg-devel/2018-February/225051.html + sed -r \ + -e '/av_register_all/d' \ + -i "${S}"/common/avdecoder.h || die "Failed to fix ffmpeg stuff" rm ChangeLog || die "Failed to rm changelog" # Triggers QA warn (symlink to nowhere) default } |