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-libs/x264/
Date: Wed, 04 Sep 2019 14:46:59
Message-Id: 1567608406.6338956cc891a86dfdc30168994aaa34c2ef92ae.aballier@gentoo
1 commit: 6338956cc891a86dfdc30168994aaa34c2ef92ae
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 4 14:44:56 2019 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 4 14:46:46 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6338956c
7
8 media-libs/x264: bump a new snapshot
9
10 Package-Manager: Portage-2.3.75, Repoman-2.3.17
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 media-libs/x264/Manifest | 1 +
14 media-libs/x264/x264-0.0.20190903.ebuild | 58 ++++++++++++++++++++++++++++++++
15 2 files changed, 59 insertions(+)
16
17 diff --git a/media-libs/x264/Manifest b/media-libs/x264/Manifest
18 index 9e07ce682c0..fd3a9926450 100644
19 --- a/media-libs/x264/Manifest
20 +++ b/media-libs/x264/Manifest
21 @@ -1 +1,2 @@
22 DIST x264-snapshot-20190214-2245.tar.bz2 770462 BLAKE2B d90a3bafb88febe12526b225617616a62c32fa3d3eacf410267e1fbd7e0fafaadca7c146172c08fc525bce8791d81c7d87dc27b06d61a6a44bf2ad92f6c1def6 SHA512 c8b1b46d4e6c0ef653dab35083a454c635ebf72c6a5255ce30bbb5d9d6bb8e23fca0e6cc197ea99f3c702fbfec096587df6fa82dec338d8bd45e35fa89c43039
23 +DIST x264-snapshot-20190903-2245.tar.bz2 774515 BLAKE2B 0b19fc1d3cedea32bfac9c5247bce7b3c04dead35458d61f3b5c0694040dc852b0110b620faf4118ed265a5605aafce3c49d468d38fb91e4c515b2860c486920 SHA512 c357c9025ffdf653c974eb7ccc2e9a4de86c02881372a6a8270ae59ce948c284da48a2aba37763bd29359d2a6dfc76ea56a52fed6082f8483912c8f948488a2d
24
25 diff --git a/media-libs/x264/x264-0.0.20190903.ebuild b/media-libs/x264/x264-0.0.20190903.ebuild
26 new file mode 100644
27 index 00000000000..ee5e6ace2cd
28 --- /dev/null
29 +++ b/media-libs/x264/x264-0.0.20190903.ebuild
30 @@ -0,0 +1,58 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit flag-o-matic multilib-minimal toolchain-funcs
37 +
38 +DESCRIPTION="A free library for encoding X264/AVC streams"
39 +HOMEPAGE="https://www.videolan.org/developers/x264.html"
40 +if [[ ${PV} == 9999 ]]; then
41 + inherit git-r3
42 + EGIT_REPO_URI="https://code.videolan.org/videolan/x264.git"
43 +else
44 + MY_P="x264-snapshot-$(ver_cut 3)-2245"
45 + SRC_URI="https://download.videolan.org/pub/videolan/x264/snapshots/${MY_P}.tar.bz2"
46 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
47 + S="${WORKDIR}/${MY_P}"
48 +fi
49 +
50 +SLOT="0/157" # SONAME
51 +
52 +LICENSE="GPL-2"
53 +IUSE="altivec +interlaced opencl pic static-libs cpu_flags_x86_sse +threads"
54 +
55 +ASM_DEP=">=dev-lang/nasm-2.13"
56 +DEPEND="abi_x86_32? ( ${ASM_DEP} )
57 + abi_x86_64? ( ${ASM_DEP} )
58 + opencl? ( dev-lang/perl )"
59 +RDEPEND="opencl? ( >=virtual/opencl-0-r3[${MULTILIB_USEDEP}] )"
60 +
61 +DOCS=( AUTHORS doc/{ratecontrol,regression_test,standards,threads,vui}.txt )
62 +
63 +multilib_src_configure() {
64 + tc-export CC
65 + local asm_conf=""
66 +
67 + if [[ ${ABI} == x86* ]] && { use pic || use !cpu_flags_x86_sse ; } || [[ ${ABI} == "x32" ]] || [[ ${CHOST} == armv5* ]] || [[ ${ABI} == ppc* ]] && { use !altivec ; }; then
68 + asm_conf=" --disable-asm"
69 + fi
70 +
71 + "${S}/configure" \
72 + --prefix="${EPREFIX}"/usr \
73 + --libdir="${EPREFIX}"/usr/$(get_libdir) \
74 + --disable-cli \
75 + --disable-avs \
76 + --disable-lavf \
77 + --disable-swscale \
78 + --disable-ffms \
79 + --disable-gpac \
80 + --enable-pic \
81 + --enable-shared \
82 + --host="${CHOST}" \
83 + $(usex interlaced "" "--disable-interlaced") \
84 + $(usex opencl "" "--disable-opencl") \
85 + $(usex static-libs "--enable-static" "") \
86 + $(usex threads "" "--disable-thread") \
87 + ${asm_conf} || die
88 +}