Gentoo Archives: gentoo-commits

From: Yixun Lan <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libde265/
Date: Mon, 05 Dec 2016 07:58:30
Message-Id: 1480924637.40043d4962e06a2ca87fd97b06e837b8302d0490.dlan@gentoo
1 commit: 40043d4962e06a2ca87fd97b06e837b8302d0490
2 Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 5 07:56:14 2016 +0000
4 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 5 07:57:17 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40043d49
7
8 media-libs/libde265: fix PIX_FMT_YUV420P undefined err
9
10 Gentoo-Bug: 575554
11
12 Package-Manager: portage-2.3.2
13
14 media-libs/libde265/libde265-1.0.2.ebuild | 7 ++++++-
15 1 file changed, 6 insertions(+), 1 deletion(-)
16
17 diff --git a/media-libs/libde265/libde265-1.0.2.ebuild b/media-libs/libde265/libde265-1.0.2.ebuild
18 index 7b52f00..e132363 100644
19 --- a/media-libs/libde265/libde265-1.0.2.ebuild
20 +++ b/media-libs/libde265/libde265-1.0.2.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2015 Gentoo Foundation
23 +# Copyright 1999-2016 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 # $Id$
26
27 @@ -27,6 +27,11 @@ RDEPEND="${DEPEND}"
28
29 REQUIRED_USE="tools? ( || ( qt4 qt5 ) )"
30
31 +src_prepare() {
32 + sed -ri 's/(PIX_FMT_)/AV_\1/g' sherlock265/VideoDecoder.cc || die
33 + autotools-multilib_src_prepare
34 +}
35 +
36 src_configure() {
37 local myeconfargs=(
38 $(use_enable cpu_flags_x86_sse sse)