commit:     04319f013e87c09cc6bbd3aa77a0caa01f10f86a
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 22 12:46:02 2018 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Feb 22 13:40:14 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04319f01

media-libs/x265: Remove old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-libs/x265/Manifest        |   3 -
 media-libs/x265/x265-2.3.ebuild | 193 ---------------------------------------
 media-libs/x265/x265-2.4.ebuild | 197 ----------------------------------------
 media-libs/x265/x265-2.5.ebuild | 197 ----------------------------------------
 4 files changed, 590 deletions(-)

diff --git a/media-libs/x265/Manifest b/media-libs/x265/Manifest
index cd59f9611b8..83a2f74f4f8 100644
--- a/media-libs/x265/Manifest
+++ b/media-libs/x265/Manifest
@@ -1,5 +1,2 @@
 DIST x265_2.2.tar.gz 1203801 BLAKE2B 
239b34c45b07c5bea83f0555d2d8f44322bd8fb3164264ff10f3887bb244ce7e605a82c2cb0a2f2ae4f2749e009baac19407109996e599dc41bc970a610ed086
 SHA512 
335bb38cf0892f2c4310033b076d51115c0b7faa9596a4f556dde5e3d1378d04f3d0055cb0bf2441eb725b7f84c246174bdc315eeb4ddde61ef9d79469f44eef
-DIST x265_2.3.tar.gz 1215719 BLAKE2B 
8ef1fcce485dbd906ab21e344d95e2d800eaee2f492a130f23487b54fe4c168043d33bbe77ed69d6ddc9873144144db0a12119eb80165da2936a6be169ce49e5
 SHA512 
c863e4bd95323baf5c1ee388c2d9e460749940b947a795e0bce7bffab620258fb7aafbbf2956225491f4532f715392df3d40f19301964e00c3ac2971cd7d8809
-DIST x265_2.4.tar.gz 1242300 BLAKE2B 
da0dca829a20cd1f807a78152a5e2f03859c05846876a73d18ea588cf66c2c35e0d2dd4e46a96b4eda54159d998403bc3c8fd07d57b781f8325c7d4ecd15119a
 SHA512 
40d0e57104839454226cdba928806c12e533eade391a89e9587e1f9c11b8fd70cc54d20136a09a1127784fe7799c80425617280076b29e1a1ffff7ce44f07dbe
-DIST x265_2.5.tar.gz 1256678 BLAKE2B 
e949bd503f03330b4c0426dbae2cad4a1600d60d92c840d1c2b9538fb37c841cecf4a0da4ce9c80b905d56c68ea07375e240e74dee32bb862fe4a81f8a1a18c4
 SHA512 
f39b0b06a9f6ab9ab19fcdc1cba1578ace433e22dc8ec3f549ec3e5eeaaf40d17de6c7d419c12c16717ae795c45d953ef34a2fc9376d7e83eb7e9e74ab19ec93
 DIST x265_2.6.tar.gz 1271976 BLAKE2B 
f649c47209af0f1cfff7ff736b9f43f20c9eaaf14e8428f6eff4fd9e3ce925de6e1ecde1be55b5d654321614fc245837d0bc603b72a92c41b92c729dc20f5cb6
 SHA512 
35c3716313e3dfd1555dd725b60f2b3b00a615d8b8d8267439722b52021d47e34eebf94b837b92a92d40c7ffab7b3198d6391365d62672b257c0a87d1db8a736

diff --git a/media-libs/x265/x265-2.3.ebuild b/media-libs/x265/x265-2.3.ebuild
deleted file mode 100644
index ea1512192bb..00000000000
--- a/media-libs/x265/x265-2.3.ebuild
+++ /dev/null
@@ -1,193 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils multilib-minimal multilib multibuild flag-o-matic
-
-if [[ ${PV} = 9999* ]]; then
-       inherit mercurial
-       EHG_REPO_URI="https://bitbucket.org/multicoreware/x265";
-else
-       SRC_URI="
-               
https://bitbucket.org/multicoreware/x265/downloads/${PN}_${PV}.tar.gz
-               
https://downloads.videolan.org/pub/videolan/x265/${PN}_${PV}.tar.gz";
-       KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
-fi
-
-DESCRIPTION="Library for encoding video streams into the H.265/HEVC format"
-HOMEPAGE="http://x265.org/";
-
-LICENSE="GPL-2"
-# subslot = libx265 soname
-SLOT="0/110"
-IUSE="+10bit +12bit neon numa pic power8 test"
-
-ASM_DEPEND=">=dev-lang/yasm-1.2.0"
-RDEPEND="numa? ( >=sys-process/numactl-2.0.10-r1[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-       abi_x86_32? ( ${ASM_DEPEND} )
-       abi_x86_64? ( ${ASM_DEPEND} )"
-
-PATCHES=( "${FILESDIR}/arm.patch" "${FILESDIR}/neon.patch" 
"${FILESDIR}/ppc64.patch" )
-
-src_unpack() {
-       if [[ ${PV} = 9999* ]]; then
-               mercurial_src_unpack
-               # Can't set it at global scope due to mercurial.eclass 
limitations...
-               export S=${WORKDIR}/${P}/source
-       else
-               unpack ${A}
-               export S="$(echo "${WORKDIR}/${PN}_"*"/source")"
-       fi
-}
-
-# By default, the library and the encoder is configured for only one output bit
-# depth. Meaning, one has to rebuild libx265 if (s)he wants to produce HEVC
-# files with a different bit depth, which is annoying. However, upstream
-# supports proper namespacing for 8bits, 10bits & 12bits HEVC and linking all
-# that together so that the resulting library can produce all three of them
-# instead of only one.
-# The API requires the bit depth parameter, so that libx265 can then chose 
which
-# variant of the encoder to use.
-# To achieve this, we have to build one (static) library for each non-main
-# variant, and link it into the main library.
-# Upstream documents using the 8bit variant as main library, hence we do not
-# allow disabling it: "main" *MUST* come last in the following list.
-
-x265_get_variants() {
-       local variants=""
-       use 12bit && variants+="main12 "
-       use 10bit && variants+="main10 "
-       variants+="main"
-       echo "${variants}"
-}
-
-x265_variant_src_configure() {
-       mkdir -p "${BUILD_DIR}" || die
-       pushd "${BUILD_DIR}" >/dev/null || die
-
-       local mycmakeargs=( "${myabicmakeargs[@]}" )
-       case "${MULTIBUILD_VARIANT}" in
-               "main12")
-                       mycmakeargs+=(
-                               -DHIGH_BIT_DEPTH=ON
-                               -DEXPORT_C_API=OFF
-                               -DENABLE_SHARED=OFF
-                               -DENABLE_CLI=OFF
-                               -DMAIN12=ON
-                       )
-                       if [[ ${ABI} = x86 ]] ; then
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-                       fi
-                       if [[ ${ABI} = arm ]] ; then
-                               # 589674
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-                       fi
-                       if [[ ${ABI} = ppc64 ]] ; then
-                               # 
https://bugs.gentoo.org/show_bug.cgi?id=607802#c5
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF 
-DENABLE_ALTIVEC=OFF )
-                       fi
-                       ;;
-               "main10")
-                       mycmakeargs+=(
-                               -DHIGH_BIT_DEPTH=ON
-                               -DEXPORT_C_API=OFF
-                               -DENABLE_SHARED=OFF
-                               -DENABLE_CLI=OFF
-                       )
-                       if [[ ${ABI} = x86 ]] ; then
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-                       fi
-                       if [[ ${ABI} = arm ]] ; then
-                               # 589674
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-                       fi
-                       if [[ ${ABI} = ppc64 ]] ; then
-                               # 
https://bugs.gentoo.org/show_bug.cgi?id=607802#c5
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF 
-DENABLE_ALTIVEC=OFF )
-                       fi
-                       ;;
-               "main")
-                       if (( "${#MULTIBUILD_VARIANTS[@]}" > 1 )) ; then
-                               local myvariants=( "${MULTIBUILD_VARIANTS[@]}" )
-                               unset myvariants[${#MULTIBUILD_VARIANTS[@]}-1]
-                               local liblist=""
-                               for v in "${myvariants[@]}" ; do
-                                       ln -s "${BUILD_DIR%-*}-${v}/libx265.a" 
"libx265_${v}.a" ||      die
-                                       liblist+="libx265_${v}.a;"
-                               done
-                               mycmakeargs+=(
-                                       -DEXTRA_LIB="${liblist}"
-                                       -DEXTRA_LINK_FLAGS=-L.
-                                       -DLINKED_10BIT=$(usex 10bit)
-                                       -DLINKED_12BIT=$(usex 12bit)
-                               )
-                       fi
-                       ;;
-               *)
-                       die "Unknown variant: ${MULTIBUILD_VARIANT}";;
-       esac
-       cmake-utils_src_configure
-       popd >/dev/null || die
-}
-
-multilib_src_configure() {
-       append-cflags -fPIC
-       append-cxxflags -fPIC
-       local myabicmakeargs=(
-               $(cmake-utils_use_enable test TESTS)
-               $(multilib_is_native_abi || echo "-DENABLE_CLI=OFF")
-               -DENABLE_LIBNUMA=$(usex numa ON OFF)
-               -DCPU_POWER8=$(usex power8 ON OFF)
-               -DENABLE_ALTIVEC=$(usex power8 ON OFF)
-               -DLIB_INSTALL_DIR="$(get_libdir)"
-       )
-
-       if [[ ${ABI} = x86 ]] ; then
-               # Bug #528202
-               if use pic ; then
-                       ewarn "PIC has been requested but x86 asm is not 
PIC-safe, disabling it."
-                       myabicmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-               fi
-       elif [[ ${ABI} = x32 ]] ; then
-               # bug #510890
-               myabicmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-       elif [[ ${ABI} = arm ]] ; then
-               myabicmakeargs+=( -DENABLE_ASSEMBLY=$(usex pic OFF $(usex neon 
ON OFF)) )
-               use neon && use pic && ewarn "PIC has been requested but arm 
neon asm is not PIC-safe, disabling it."
-       fi
-
-       local MULTIBUILD_VARIANTS=( $(x265_get_variants) )
-       multibuild_foreach_variant x265_variant_src_configure
-}
-
-multilib_src_compile() {
-       local MULTIBUILD_VARIANTS=( $(x265_get_variants) )
-       multibuild_foreach_variant cmake-utils_src_compile
-}
-
-x265_variant_src_test() {
-       if [ -x "${BUILD_DIR}/test/TestBench" ] ; then
-               "${BUILD_DIR}/test/TestBench" || die
-       else
-               einfo "Unit tests check only assembly."
-               einfo "You do not seem to have any for ABI=${ABI}, x265 
variant=${MULTIBUILD_VARIANT}"
-               einfo "Skipping tests."
-       fi
-}
-
-multilib_src_test() {
-       local MULTIBUILD_VARIANTS=( $(x265_get_variants) )
-       multibuild_foreach_variant x265_variant_src_test
-}
-
-multilib_src_install() {
-       # Install only "main" variant since the others are already linked into 
it.
-       local MULTIBUILD_VARIANTS=( "main" )
-       multibuild_foreach_variant cmake-utils_src_install
-}
-
-multilib_src_install_all() {
-       dodoc -r "${S}/../doc/"*
-}

diff --git a/media-libs/x265/x265-2.4.ebuild b/media-libs/x265/x265-2.4.ebuild
deleted file mode 100644
index cdde812c233..00000000000
--- a/media-libs/x265/x265-2.4.ebuild
+++ /dev/null
@@ -1,197 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils multilib-minimal multilib multibuild flag-o-matic
-
-if [[ ${PV} = 9999* ]]; then
-       inherit mercurial
-       EHG_REPO_URI="https://bitbucket.org/multicoreware/x265";
-else
-       SRC_URI="
-               
https://bitbucket.org/multicoreware/x265/downloads/${PN}_${PV}.tar.gz
-               
https://downloads.videolan.org/pub/videolan/x265/${PN}_${PV}.tar.gz";
-       KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
-fi
-
-DESCRIPTION="Library for encoding video streams into the H.265/HEVC format"
-HOMEPAGE="http://x265.org/";
-
-LICENSE="GPL-2"
-# subslot = libx265 soname
-SLOT="0/116"
-IUSE="+10bit +12bit cpu_flags_arm_neon numa pic power8 test"
-
-ASM_DEPEND=">=dev-lang/yasm-1.2.0"
-RDEPEND="numa? ( >=sys-process/numactl-2.0.10-r1[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-       abi_x86_32? ( ${ASM_DEPEND} )
-       abi_x86_64? ( ${ASM_DEPEND} )"
-
-PATCHES=(
-       "${FILESDIR}/arm.patch"
-       "${FILESDIR}/neon.patch"
-       "${FILESDIR}/ppc64.patch"
-)
-
-src_unpack() {
-       if [[ ${PV} = 9999* ]]; then
-               mercurial_src_unpack
-               # Can't set it at global scope due to mercurial.eclass 
limitations...
-               export S=${WORKDIR}/${P}/source
-       else
-               unpack ${A}
-               export S="$(echo "${WORKDIR}/${PN}_"*"/source")"
-       fi
-}
-
-# By default, the library and the encoder is configured for only one output bit
-# depth. Meaning, one has to rebuild libx265 if (s)he wants to produce HEVC
-# files with a different bit depth, which is annoying. However, upstream
-# supports proper namespacing for 8bits, 10bits & 12bits HEVC and linking all
-# that together so that the resulting library can produce all three of them
-# instead of only one.
-# The API requires the bit depth parameter, so that libx265 can then chose 
which
-# variant of the encoder to use.
-# To achieve this, we have to build one (static) library for each non-main
-# variant, and link it into the main library.
-# Upstream documents using the 8bit variant as main library, hence we do not
-# allow disabling it: "main" *MUST* come last in the following list.
-
-x265_get_variants() {
-       local variants=""
-       use 12bit && variants+="main12 "
-       use 10bit && variants+="main10 "
-       variants+="main"
-       echo "${variants}"
-}
-
-x265_variant_src_configure() {
-       mkdir -p "${BUILD_DIR}" || die
-       pushd "${BUILD_DIR}" >/dev/null || die
-
-       local mycmakeargs=( "${myabicmakeargs[@]}" )
-       case "${MULTIBUILD_VARIANT}" in
-               "main12")
-                       mycmakeargs+=(
-                               -DHIGH_BIT_DEPTH=ON
-                               -DEXPORT_C_API=OFF
-                               -DENABLE_SHARED=OFF
-                               -DENABLE_CLI=OFF
-                               -DMAIN12=ON
-                       )
-                       if [[ ${ABI} = x86 ]] ; then
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-                       fi
-                       if [[ ${ABI} = arm ]] ; then
-                               # 589674
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-                       fi
-                       if [[ ${ABI} = ppc64 ]] ; then
-                               # 
https://bugs.gentoo.org/show_bug.cgi?id=607802#c5
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF 
-DENABLE_ALTIVEC=OFF )
-                       fi
-                       ;;
-               "main10")
-                       mycmakeargs+=(
-                               -DHIGH_BIT_DEPTH=ON
-                               -DEXPORT_C_API=OFF
-                               -DENABLE_SHARED=OFF
-                               -DENABLE_CLI=OFF
-                       )
-                       if [[ ${ABI} = x86 ]] ; then
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-                       fi
-                       if [[ ${ABI} = arm ]] ; then
-                               # 589674
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-                       fi
-                       if [[ ${ABI} = ppc64 ]] ; then
-                               # 
https://bugs.gentoo.org/show_bug.cgi?id=607802#c5
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF 
-DENABLE_ALTIVEC=OFF )
-                       fi
-                       ;;
-               "main")
-                       if (( "${#MULTIBUILD_VARIANTS[@]}" > 1 )) ; then
-                               local myvariants=( "${MULTIBUILD_VARIANTS[@]}" )
-                               unset myvariants[${#MULTIBUILD_VARIANTS[@]}-1]
-                               local liblist=""
-                               for v in "${myvariants[@]}" ; do
-                                       ln -s "${BUILD_DIR%-*}-${v}/libx265.a" 
"libx265_${v}.a" ||      die
-                                       liblist+="libx265_${v}.a;"
-                               done
-                               mycmakeargs+=(
-                                       -DEXTRA_LIB="${liblist}"
-                                       -DEXTRA_LINK_FLAGS=-L.
-                                       -DLINKED_10BIT=$(usex 10bit)
-                                       -DLINKED_12BIT=$(usex 12bit)
-                               )
-                       fi
-                       ;;
-               *)
-                       die "Unknown variant: ${MULTIBUILD_VARIANT}";;
-       esac
-       cmake-utils_src_configure
-       popd >/dev/null || die
-}
-
-multilib_src_configure() {
-       append-cflags -fPIC
-       append-cxxflags -fPIC
-       local myabicmakeargs=(
-               $(cmake-utils_use_enable test TESTS)
-               $(multilib_is_native_abi || echo "-DENABLE_CLI=OFF")
-               -DENABLE_LIBNUMA=$(usex numa ON OFF)
-               -DCPU_POWER8=$(usex power8 ON OFF)
-               -DENABLE_ALTIVEC=$(usex power8 ON OFF)
-               -DLIB_INSTALL_DIR="$(get_libdir)"
-       )
-
-       if [[ ${ABI} = x86 ]] ; then
-               # Bug #528202
-               if use pic ; then
-                       ewarn "PIC has been requested but x86 asm is not 
PIC-safe, disabling it."
-                       myabicmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-               fi
-       elif [[ ${ABI} = x32 ]] ; then
-               # bug #510890
-               myabicmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-       elif [[ ${ABI} = arm ]] ; then
-               myabicmakeargs+=( -DENABLE_ASSEMBLY=$(usex pic OFF $(usex 
cpu_flags_arm_neon ON OFF)) )
-               use cpu_flags_arm_neon && use pic && ewarn "PIC has been 
requested but arm neon asm is not PIC-safe, disabling it."
-       fi
-
-       local MULTIBUILD_VARIANTS=( $(x265_get_variants) )
-       multibuild_foreach_variant x265_variant_src_configure
-}
-
-multilib_src_compile() {
-       local MULTIBUILD_VARIANTS=( $(x265_get_variants) )
-       multibuild_foreach_variant cmake-utils_src_compile
-}
-
-x265_variant_src_test() {
-       if [ -x "${BUILD_DIR}/test/TestBench" ] ; then
-               "${BUILD_DIR}/test/TestBench" || die
-       else
-               einfo "Unit tests check only assembly."
-               einfo "You do not seem to have any for ABI=${ABI}, x265 
variant=${MULTIBUILD_VARIANT}"
-               einfo "Skipping tests."
-       fi
-}
-
-multilib_src_test() {
-       local MULTIBUILD_VARIANTS=( $(x265_get_variants) )
-       multibuild_foreach_variant x265_variant_src_test
-}
-
-multilib_src_install() {
-       # Install only "main" variant since the others are already linked into 
it.
-       local MULTIBUILD_VARIANTS=( "main" )
-       multibuild_foreach_variant cmake-utils_src_install
-}
-
-multilib_src_install_all() {
-       dodoc -r "${S}/../doc/"*
-}

diff --git a/media-libs/x265/x265-2.5.ebuild b/media-libs/x265/x265-2.5.ebuild
deleted file mode 100644
index 8036e309996..00000000000
--- a/media-libs/x265/x265-2.5.ebuild
+++ /dev/null
@@ -1,197 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils multilib-minimal multilib multibuild flag-o-matic
-
-if [[ ${PV} = 9999* ]]; then
-       inherit mercurial
-       EHG_REPO_URI="https://bitbucket.org/multicoreware/x265";
-else
-       SRC_URI="
-               
https://bitbucket.org/multicoreware/x265/downloads/${PN}_${PV}.tar.gz
-               
https://downloads.videolan.org/pub/videolan/x265/${PN}_${PV}.tar.gz";
-       KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
-fi
-
-DESCRIPTION="Library for encoding video streams into the H.265/HEVC format"
-HOMEPAGE="http://x265.org/";
-
-LICENSE="GPL-2"
-# subslot = libx265 soname
-SLOT="0/130"
-IUSE="+10bit +12bit cpu_flags_arm_neon numa pic power8 test"
-
-ASM_DEPEND=">=dev-lang/yasm-1.2.0"
-RDEPEND="numa? ( >=sys-process/numactl-2.0.10-r1[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-       abi_x86_32? ( ${ASM_DEPEND} )
-       abi_x86_64? ( ${ASM_DEPEND} )"
-
-PATCHES=(
-       "${FILESDIR}/arm.patch"
-       "${FILESDIR}/neon.patch"
-       "${FILESDIR}/ppc64.patch"
-)
-
-src_unpack() {
-       if [[ ${PV} = 9999* ]]; then
-               mercurial_src_unpack
-               # Can't set it at global scope due to mercurial.eclass 
limitations...
-               export S=${WORKDIR}/${P}/source
-       else
-               unpack ${A}
-               export S="$(echo "${WORKDIR}/${PN}_"*"/source")"
-       fi
-}
-
-# By default, the library and the encoder is configured for only one output bit
-# depth. Meaning, one has to rebuild libx265 if (s)he wants to produce HEVC
-# files with a different bit depth, which is annoying. However, upstream
-# supports proper namespacing for 8bits, 10bits & 12bits HEVC and linking all
-# that together so that the resulting library can produce all three of them
-# instead of only one.
-# The API requires the bit depth parameter, so that libx265 can then chose 
which
-# variant of the encoder to use.
-# To achieve this, we have to build one (static) library for each non-main
-# variant, and link it into the main library.
-# Upstream documents using the 8bit variant as main library, hence we do not
-# allow disabling it: "main" *MUST* come last in the following list.
-
-x265_get_variants() {
-       local variants=""
-       use 12bit && variants+="main12 "
-       use 10bit && variants+="main10 "
-       variants+="main"
-       echo "${variants}"
-}
-
-x265_variant_src_configure() {
-       mkdir -p "${BUILD_DIR}" || die
-       pushd "${BUILD_DIR}" >/dev/null || die
-
-       local mycmakeargs=( "${myabicmakeargs[@]}" )
-       case "${MULTIBUILD_VARIANT}" in
-               "main12")
-                       mycmakeargs+=(
-                               -DHIGH_BIT_DEPTH=ON
-                               -DEXPORT_C_API=OFF
-                               -DENABLE_SHARED=OFF
-                               -DENABLE_CLI=OFF
-                               -DMAIN12=ON
-                       )
-                       if [[ ${ABI} = x86 ]] ; then
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-                       fi
-                       if [[ ${ABI} = arm ]] ; then
-                               # 589674
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-                       fi
-                       if [[ ${ABI} = ppc64 ]] ; then
-                               # 
https://bugs.gentoo.org/show_bug.cgi?id=607802#c5
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF 
-DENABLE_ALTIVEC=OFF )
-                       fi
-                       ;;
-               "main10")
-                       mycmakeargs+=(
-                               -DHIGH_BIT_DEPTH=ON
-                               -DEXPORT_C_API=OFF
-                               -DENABLE_SHARED=OFF
-                               -DENABLE_CLI=OFF
-                       )
-                       if [[ ${ABI} = x86 ]] ; then
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-                       fi
-                       if [[ ${ABI} = arm ]] ; then
-                               # 589674
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-                       fi
-                       if [[ ${ABI} = ppc64 ]] ; then
-                               # 
https://bugs.gentoo.org/show_bug.cgi?id=607802#c5
-                               mycmakeargs+=( -DENABLE_ASSEMBLY=OFF 
-DENABLE_ALTIVEC=OFF )
-                       fi
-                       ;;
-               "main")
-                       if (( "${#MULTIBUILD_VARIANTS[@]}" > 1 )) ; then
-                               local myvariants=( "${MULTIBUILD_VARIANTS[@]}" )
-                               unset myvariants[${#MULTIBUILD_VARIANTS[@]}-1]
-                               local liblist=""
-                               for v in "${myvariants[@]}" ; do
-                                       ln -s "${BUILD_DIR%-*}-${v}/libx265.a" 
"libx265_${v}.a" ||      die
-                                       liblist+="libx265_${v}.a;"
-                               done
-                               mycmakeargs+=(
-                                       -DEXTRA_LIB="${liblist}"
-                                       -DEXTRA_LINK_FLAGS=-L.
-                                       -DLINKED_10BIT=$(usex 10bit)
-                                       -DLINKED_12BIT=$(usex 12bit)
-                               )
-                       fi
-                       ;;
-               *)
-                       die "Unknown variant: ${MULTIBUILD_VARIANT}";;
-       esac
-       cmake-utils_src_configure
-       popd >/dev/null || die
-}
-
-multilib_src_configure() {
-       append-cflags -fPIC
-       append-cxxflags -fPIC
-       local myabicmakeargs=(
-               $(cmake-utils_use_enable test TESTS)
-               $(multilib_is_native_abi || echo "-DENABLE_CLI=OFF")
-               -DENABLE_LIBNUMA=$(usex numa ON OFF)
-               -DCPU_POWER8=$(usex power8 ON OFF)
-               -DENABLE_ALTIVEC=$(usex power8 ON OFF)
-               -DLIB_INSTALL_DIR="$(get_libdir)"
-       )
-
-       if [[ ${ABI} = x86 ]] ; then
-               # Bug #528202
-               if use pic ; then
-                       ewarn "PIC has been requested but x86 asm is not 
PIC-safe, disabling it."
-                       myabicmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-               fi
-       elif [[ ${ABI} = x32 ]] ; then
-               # bug #510890
-               myabicmakeargs+=( -DENABLE_ASSEMBLY=OFF )
-       elif [[ ${ABI} = arm ]] ; then
-               myabicmakeargs+=( -DENABLE_ASSEMBLY=$(usex pic OFF $(usex 
cpu_flags_arm_neon ON OFF)) )
-               use cpu_flags_arm_neon && use pic && ewarn "PIC has been 
requested but arm neon asm is not PIC-safe, disabling it."
-       fi
-
-       local MULTIBUILD_VARIANTS=( $(x265_get_variants) )
-       multibuild_foreach_variant x265_variant_src_configure
-}
-
-multilib_src_compile() {
-       local MULTIBUILD_VARIANTS=( $(x265_get_variants) )
-       multibuild_foreach_variant cmake-utils_src_compile
-}
-
-x265_variant_src_test() {
-       if [ -x "${BUILD_DIR}/test/TestBench" ] ; then
-               "${BUILD_DIR}/test/TestBench" || die
-       else
-               einfo "Unit tests check only assembly."
-               einfo "You do not seem to have any for ABI=${ABI}, x265 
variant=${MULTIBUILD_VARIANT}"
-               einfo "Skipping tests."
-       fi
-}
-
-multilib_src_test() {
-       local MULTIBUILD_VARIANTS=( $(x265_get_variants) )
-       multibuild_foreach_variant x265_variant_src_test
-}
-
-multilib_src_install() {
-       # Install only "main" variant since the others are already linked into 
it.
-       local MULTIBUILD_VARIANTS=( "main" )
-       multibuild_foreach_variant cmake-utils_src_install
-}
-
-multilib_src_install_all() {
-       dodoc -r "${S}/../doc/"*
-}

Reply via email to