blob: 9c5277ecec57db86b24d7c663ca17f25903b2f2e (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson-multilib
MY_PN="${PN/progs/demos}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Mesa's OpenGL utility and demo programs (glxgears and glxinfo)"
HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/ https://gitlab.freedesktop.org/mesa/demos"
if [[ ${PV} = 9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/demos.git"
else
SRC_URI="https://mesa.freedesktop.org/archive/demos/${MY_P}.tar.bz2
https://mesa.freedesktop.org/archive/demos/${PV}/${MY_P}.tar.bz2"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
S="${WORKDIR}/${MY_P}"
fi
LICENSE="LGPL-2"
SLOT="0"
IUSE="gles2 vulkan wayland X"
RDEPEND="
media-libs/mesa[${MULTILIB_USEDEP},egl(+),gles2?,vulkan?,wayland?,X?]
wayland? ( dev-libs/wayland[${MULTILIB_USEDEP}] )
X? (
x11-libs/libX11[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
)
"
DEPEND="${RDEPEND}
vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )
wayland? ( >=dev-libs/wayland-protocols-1.12 )
X? ( x11-base/xorg-proto )
"
BDEPEND="
virtual/pkgconfig
vulkan? ( dev-util/glslang )
wayland? ( dev-util/wayland-scanner )
"
PATCHES=(
"${FILESDIR}"/9999-Disable-things-we-don-t-want.patch
)
pkg_setup() {
MULTILIB_CHOST_TOOLS+=(
/usr/bin/eglinfo
)
use X && MULTILIB_CHOST_TOOLS+=(
/usr/bin/glxgears
/usr/bin/glxinfo
)
use gles2 && use X && MULTILIB_CHOST_TOOLS+=(
/usr/bin/es2_info
/usr/bin/es2gears
)
use vulkan && MULTILIB_CHOST_TOOLS+=(
/usr/bin/vkgears
)
}
multilib_src_configure() {
local emesonargs=(
-Dlibdrm=disabled
-Degl=enabled
-Dgles1=disabled
$(meson_feature gles2)
-Dosmesa=disabled
$(meson_feature vulkan)
$(meson_feature wayland)
$(meson_feature X x11)
)
meson_src_configure
}
|