# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-0.8.0-r1.ebuild,v 1.3 2012/12/26 11:33:31 ulm Exp $ EAPI=5 EGIT_REPO_URI="git://anongit.freedesktop.org/vaapi/xvba-driver" [[ ${PV} = 9999 ]] && inherit git-2 inherit eutils autotools python DESCRIPTION="XVBA Backend for Video Acceleration (VA) API" HOMEPAGE="http://www.freedesktop.org/wiki/Software/vaapi" SRC_URI="http://dev.gentooexperimental.org/~scarabeus/xvba-driver-${PV}.tar.bz2" # No source release yet, the src_uri is theoretical at best right now #[[ ${PV} = 9999 ]] || SRC_URI="http://www.freedesktop.org/software/vaapi/releases/${PN}/${P}.tar.bz2" PYTHON_DEPEND="2:2.7" LICENSE="GPL-2+ MIT" SLOT="0" # newline is needed for broken ekeyword [[ ${PV} = 9999 ]] || \ KEYWORDS="~amd64 ~x86" IUSE="debug opengl" RDEPEND=" >=x11-libs/libva-1.1.0[X,opengl?] x11-libs/libvdpau x11-drivers/ati-drivers " DEPEND="${DEPEND} virtual/pkgconfig" DOCS=( NEWS README AUTHORS ) S="${WORKDIR}/xvba-driver-${PV}" pkg_setup() { python_set_active_version 2 python_pkg_setup } src_prepare() { eautoreconf } src_configure() { econf \ $(use_enable debug) \ $(use_enable opengl glx) } src_install() { default prune_libtool_files --all }