forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Leonardo Hernández Hernández <[email protected]> Signed-off-by: Sam James <[email protected]>
- Loading branch information
1 parent
9a8a428
commit 6314c19
Showing
2 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit meson | ||
|
||
DESCRIPTION="Pluggable, composable, unopinionated modules for building a Wayland compositor" | ||
HOMEPAGE="https://gitlab.freedesktop.org/wlroots/wlroots" | ||
|
||
if [[ ${PV} == 9999 ]]; then | ||
EGIT_REPO_URI="https://gitlab.freedesktop.org/${PN}/${PN}.git" | ||
inherit git-r3 | ||
SLOT="0/9999" | ||
else | ||
SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/releases/${PV}/downloads/${P}.tar.gz" | ||
KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" | ||
SLOT="0/$(ver_cut 2)" | ||
fi | ||
|
||
LICENSE="MIT" | ||
IUSE="liftoff +libinput +drm +session tinywl vulkan x11-backend xcb-errors X" | ||
REQUIRED_USE=" | ||
drm? ( session ) | ||
libinput? ( session ) | ||
xcb-errors? ( || ( x11-backend X ) ) | ||
" | ||
|
||
DEPEND=" | ||
>=dev-libs/wayland-1.22.0 | ||
media-libs/mesa[egl(+),gles2] | ||
>=x11-libs/libdrm-2.4.114 | ||
x11-libs/libxkbcommon | ||
>=x11-libs/pixman-0.42.0 | ||
drm? ( | ||
media-libs/libdisplay-info | ||
sys-apps/hwdata | ||
liftoff? ( >=dev-libs/libliftoff-0.4 ) | ||
) | ||
libinput? ( >=dev-libs/libinput-1.14.0:= ) | ||
session? ( | ||
sys-auth/seatd:= | ||
virtual/libudev | ||
) | ||
vulkan? ( | ||
dev-util/glslang:= | ||
dev-util/vulkan-headers | ||
media-libs/vulkan-loader | ||
) | ||
xcb-errors? ( x11-libs/xcb-util-errors ) | ||
x11-backend? ( | ||
x11-libs/libxcb:= | ||
x11-libs/xcb-util-renderutil | ||
) | ||
X? ( | ||
x11-libs/libxcb:= | ||
x11-libs/xcb-util-wm | ||
x11-base/xwayland | ||
) | ||
" | ||
RDEPEND=" | ||
${DEPEND} | ||
" | ||
BDEPEND=" | ||
>=dev-libs/wayland-protocols-1.32 | ||
dev-util/wayland-scanner | ||
virtual/pkgconfig | ||
" | ||
|
||
src_configure() { | ||
local backends=( | ||
$(usev drm) | ||
$(usev libinput) | ||
$(usev x11-backend 'x11') | ||
) | ||
local meson_backends=$(IFS=','; echo "${backends[*]}") | ||
local emesonargs=( | ||
$(meson_feature xcb-errors) | ||
$(meson_use tinywl examples) | ||
-Drenderers=$(usex vulkan 'gles2,vulkan' gles2) | ||
$(meson_feature X xwayland) | ||
-Dbackends=${meson_backends} | ||
$(meson_feature session) | ||
) | ||
|
||
meson_src_configure | ||
} | ||
|
||
src_install() { | ||
meson_src_install | ||
dodoc docs/* | ||
|
||
if use tinywl; then | ||
dobin "${BUILD_DIR}"/tinywl/tinywl | ||
fi | ||
} | ||
|
||
pkg_postinst() { | ||
elog "You must be in the input group to allow your compositor" | ||
elog "to access input devices via libinput." | ||
} |