Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ffmpeg/
Date: Mon, 27 Feb 2017 08:34:26
Message-Id: 1488184442.9275d9229f6f13fd2b3f7577b56df158249fd9fa.aballier@gentoo
1 commit: 9275d9229f6f13fd2b3f7577b56df158249fd9fa
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 26 22:54:58 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 08:34:02 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9275d922
7
8 media-video/ffmpeg: neon is required on arm64, bug #610768.
9
10 See also: http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.den0024a/CJHECGIH.html
11 Both floating-point and NEON are required in all standard ARMv8 implementations.
12
13 Package-Manager: Portage-2.3.3, Repoman-2.3.1
14
15 media-video/ffmpeg/ffmpeg-9999.ebuild | 2 ++
16 1 file changed, 2 insertions(+)
17
18 diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild
19 index 71ed7c1125..90445b6199 100644
20 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild
21 +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild
22 @@ -126,6 +126,7 @@ X86_CPU_REQUIRED_USE="
23 cpu_flags_x86_3dnowext? ( cpu_flags_x86_3dnow )
24 cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx )
25 "
26 +ARM_CPU_REQUIRED_USE="arm64? ( neon )"
27
28 IUSE="${IUSE}
29 ${ARM_CPU_FEATURES[@]%:*}
30 @@ -135,6 +136,7 @@ IUSE="${IUSE}
31 "
32
33 CPU_REQUIRED_USE="
34 + ${ARM_CPU_REQUIRED_USE}
35 ${X86_CPU_REQUIRED_USE}
36 "