blob: 5d875d1bbede17294343544e68d62dd752603752 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson-multilib virtualx
DESCRIPTION="VDPAU wrapper and trace libraries"
HOMEPAGE="https://www.freedesktop.org/wiki/Software/VDPAU/"
SRC_URI="https://gitlab.freedesktop.org/vdpau/libvdpau/-/archive/${PV}/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 arm64 ~riscv x86"
IUSE="doc dri"
RDEPEND="
x11-libs/libX11[${MULTILIB_USEDEP}]
dri? ( x11-libs/libXext[${MULTILIB_USEDEP}] )"
DEPEND="
${RDEPEND}
x11-base/xorg-proto"
BDEPEND="
virtual/pkgconfig
doc? (
app-text/doxygen
media-gfx/graphviz
virtual/latex-base
)"
src_prepare() {
default
sed -i "/^docdir/s|${PN}|${PF}|" doc/meson.build || die
}
multilib_src_configure() {
local emesonargs=(
$(meson_native_use_bool doc documentation)
$(meson_use dri dri2)
)
meson_src_configure
}
multilib_src_test() {
virtx meson_src_test
}
|