diff options
author | Alexis Ballier <aballier@gentoo.org> | 2014-05-20 19:03:16 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2014-05-20 19:03:16 +0000 |
commit | 20d799bd27331f1a321bfb3fbb16b2e008f45c0b (patch) | |
tree | be66c44f79a8a918444f21804286503f62793a4d /media-libs/x265 | |
parent | Add ruby20. Drop arm, ia64 due to bug 510876. Drop alpha, sparc due to bug 46... (diff) | |
download | gentoo-2-20d799bd27331f1a321bfb3fbb16b2e008f45c0b.tar.gz gentoo-2-20d799bd27331f1a321bfb3fbb16b2e008f45c0b.tar.bz2 gentoo-2-20d799bd27331f1a321bfb3fbb16b2e008f45c0b.zip |
version bump, bug #509432
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs/x265')
-rw-r--r-- | media-libs/x265/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/x265/x265-1.0.ebuild | 72 |
2 files changed, 78 insertions, 1 deletions
diff --git a/media-libs/x265/ChangeLog b/media-libs/x265/ChangeLog index bd8143fd304c..2cb90a2ace35 100644 --- a/media-libs/x265/ChangeLog +++ b/media-libs/x265/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/x265 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v 1.6 2014/05/20 17:59:04 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v 1.7 2014/05/20 19:03:16 aballier Exp $ + +*x265-1.0 (20 May 2014) + + 20 May 2014; Alexis Ballier <aballier@gentoo.org> +x265-1.0.ebuild: + version bump, bug #509432 20 May 2014; Alexis Ballier <aballier@gentoo.org> x265-9999.ebuild: bump subslot according to soname change diff --git a/media-libs/x265/x265-1.0.ebuild b/media-libs/x265/x265-1.0.ebuild new file mode 100644 index 000000000000..2b43087d65cf --- /dev/null +++ b/media-libs/x265/x265-1.0.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.0.ebuild,v 1.1 2014/05/20 19:03:16 aballier Exp $ + +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" +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/16" +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() { + cd "${BUILD_DIR}/test" || die + for i in PoolTest TestBench ; do + ./${i} || die + done +} + +src_test() { + multilib_foreach_abi multilib_src_test +} + +src_install() { + cmake-multilib_src_install + dodoc -r "${S}/../doc/"* +} |