# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=2 inherit eutils multilib toolchain-funcs flag-o-matic git EGIT_REPO_URI="git://review.webmproject.org/libvpx.git" DESCRIPTION="WebM VP8 Codec SDK" HOMEPAGE="http://www.webmproject.org" LICENSE="BSD" SLOT="0" KEYWORDS="" IUSE="debug doc postproc +threads" RDEPEND="" DEPEND="dev-lang/yasm doc? ( app-doc/doxygen dev-lang/php ) " src_configure() { tc-export CC ./configure \ --enable-pic \ --enable-vp8 \ --enable-psnr \ $(use_enable debug) \ $(use_enable debug debug-libs) \ $(use_enable doc install-docs) \ $(use_enable postproc) \ $(use_enable threads multithread) \ --disable-install-srcs \ --disable-install-libs \ || die } src_install() { append-flags "-fPIC" emake DIST_DIR="${D}usr" install || die sudo mkdir /usr/include/vpx sudo cp vp8/*.h /usr/include/vpx sudo cp vpx_codec/*.h /usr/include/vpx sudo cp vpx_ports/*.h /usr/include/vpx sudo cp libvpx.a /usr/lib/ dodoc AUTHORS CHANGELOG LICENSE README || die # clean find "${D}" -name md5sums.txt -type f -exec rm {} \; }