diff options
Diffstat (limited to 'media-libs/x265/x265-1.5.ebuild')
-rw-r--r-- | media-libs/x265/x265-1.5.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/media-libs/x265/x265-1.5.ebuild b/media-libs/x265/x265-1.5.ebuild new file mode 100644 index 000000000000..2ca373a3f259 --- /dev/null +++ b/media-libs/x265/x265-1.5.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit cmake-multilib multilib flag-o-matic + +if [[ ${PV} = 9999* ]]; then + inherit mercurial + EHG_REPO_URI="http://bitbucket.org/multicoreware/x265" +else + SRC_URI="https://bitbucket.org/multicoreware/x265/get/${PV}.tar.bz2 -> ${P}.tar.bz2" + KEYWORDS="amd64 arm hppa ~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/43" +IUSE="+10bit test" + +ASM_DEPEND=">=dev-lang/yasm-1.2.0" +RDEPEND="" +DEPEND="${RDEPEND} + abi_x86_32? ( ${ASM_DEPEND} ) + abi_x86_64? ( ${ASM_DEPEND} )" + +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 +} + +multilib_src_configure() { + append-cflags -fPIC + append-cxxflags -fPIC + local mycmakeargs=( + $(cmake-utils_use_enable test TESTS) + $(multilib_is_native_abi || echo "-DENABLE_CLI=OFF") + -DHIGH_BIT_DEPTH=$(usex 10bit "ON" "OFF") + -DLIB_INSTALL_DIR="$(get_libdir)" + ) + cmake-utils_src_configure +} + +src_configure() { + multilib_parallel_foreach_abi multilib_src_configure +} + +multilib_src_test() { + if has ${MULTILIB_ABI_FLAG} abi_x86_32 abi_x86_64 ; then + cd "${BUILD_DIR}/test" || die + for i in TestBench ; do + ./${i} || die + done + fi +} + +src_test() { + multilib_foreach_abi multilib_src_test +} + +src_install() { + cmake-multilib_src_install + dodoc -r "${S}/../doc/"* +} |