summaryrefslogtreecommitdiff
blob: b0b6c174a5500066eee4f3f26b47bef65c45968c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"
inherit eutils autotools

PLEVEL=${PV##*_p}
MY_PV=${PV/_p*}
MY_P=${PN}-${MY_PV}

DESCRIPTION="Video Acceleration (VA) API for Linux"
HOMEPAGE="http://www.splitted-desktop.com/~gbeauchesne/libva/"
SRC_URI="http://www.splitted-desktop.com/~gbeauchesne/${PN}/${PN}_${MY_PV}-1+sds${PLEVEL}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="opengl"

VIDEO_CARDS="intel dummy"
for x in ${VIDEO_CARDS}; do
	IUSE+=" video_cards_${x}"
done

DEPEND=">=x11-libs/libdrm-2.4
x11-libs/libX11
x11-libs/libXext
x11-libs/libXfixes
opengl? (
	virtual/opengl
	x11-libs/libXdamage
	x11-libs/libXxf86vm
	)
x11-libs/libXau
x11-libs/libXdmcp
x11-libs/libxcb"

RDEPEND="$DEPEND
video_cards_intel? ( x11-drivers/xf86-video-intel )"

S=${WORKDIR}/${MY_P}

#RESTRICT="test"

src_prepare() {
	EPATCH_SOURCE="${S}/debian/patches" EPATCH_SUFFIX="patch" \
	EPATCH_FORCE="yes" EPATCH_OPTS="-g0 -E --no-backup-if-mismatch -p1" epatch
	epatch "${FILESDIR}"/libva-dont-install-tests.patch
	eautoreconf
}

src_configure() {
	econf \
	$(use_enable video_cards_dummy dummy-driver) \
	$(use_enable video_cards_intel i965-driver) \
	$(use_enable opengl glx)
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"
}