230bbfc220
Since version 10, the weston-launch command has been deprecated, and can only be built with -Ddeprecated-weston-launch=true, which Buildroot does not do. So the only launcher currently available is logind, provided by systemd. But weston provides an alternate way, based on the seatd daemon. This commit enables this possibility by adding an optional dependency on BR2_PACKAGE_SEATD and using -Dlauncher-libseat=true. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
190 lines
4.7 KiB
Makefile
190 lines
4.7 KiB
Makefile
################################################################################
|
|
#
|
|
# weston
|
|
#
|
|
################################################################################
|
|
|
|
WESTON_VERSION = 10.0.1
|
|
WESTON_SITE = https://gitlab.freedesktop.org/wayland/weston/-/releases/$(WESTON_VERSION)/downloads
|
|
WESTON_SOURCE = weston-$(WESTON_VERSION).tar.xz
|
|
WESTON_LICENSE = MIT
|
|
WESTON_LICENSE_FILES = COPYING
|
|
WESTON_CPE_ID_VENDOR = wayland
|
|
|
|
WESTON_DEPENDENCIES = host-pkgconf wayland wayland-protocols \
|
|
libxkbcommon pixman libpng udev cairo libinput libdrm
|
|
|
|
WESTON_CONF_OPTS = \
|
|
-Dbackend-headless=false \
|
|
-Dcolor-management-colord=false \
|
|
-Ddoc=false \
|
|
-Dremoting=false \
|
|
-Dtools=calibrator,debug,info,terminal,touch-calibrator
|
|
|
|
# Uses VIDIOC_EXPBUF, only available from 3.8+
|
|
ifeq ($(BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8),y)
|
|
WESTON_CONF_OPTS += -Dsimple-clients=dmabuf-v4l
|
|
else
|
|
WESTON_CONF_OPTS += -Dsimple-clients=
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DBUS)$(BR2_PACKAGE_SYSTEMD),yy)
|
|
WESTON_CONF_OPTS += -Dlauncher-logind=true
|
|
WESTON_DEPENDENCIES += dbus systemd
|
|
else
|
|
WESTON_CONF_OPTS += -Dlauncher-logind=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SEATD),y)
|
|
WESTON_CONF_OPTS += -Dlauncher-libseat=true
|
|
WESTON_DEPENDENCIES += seatd
|
|
else
|
|
WESTON_CONF_OPTS += -Dlauncher-libseat=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
|
WESTON_CONF_OPTS += -Dimage-jpeg=true
|
|
WESTON_DEPENDENCIES += jpeg
|
|
else
|
|
WESTON_CONF_OPTS += -Dimage-jpeg=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WEBP),y)
|
|
WESTON_CONF_OPTS += -Dimage-webp=true
|
|
WESTON_DEPENDENCIES += webp
|
|
else
|
|
WESTON_CONF_OPTS += -Dimage-webp=false
|
|
endif
|
|
|
|
# weston-launch must be u+s root in order to work properly
|
|
ifeq ($(BR2_PACKAGE_LINUX_PAM),y)
|
|
define WESTON_PERMISSIONS
|
|
/usr/bin/weston-launch f 4755 0 0 - - - - -
|
|
endef
|
|
define WESTON_USERS
|
|
- - weston-launch -1 - - - - Weston launcher group
|
|
endef
|
|
WESTON_CONF_OPTS += -Ddeprecated-weston-launch=true
|
|
WESTON_DEPENDENCIES += linux-pam
|
|
else
|
|
WESTON_CONF_OPTS += -Ddeprecated-weston-launch=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_LIBEGL_WAYLAND)$(BR2_PACKAGE_HAS_LIBGLES),yy)
|
|
WESTON_CONF_OPTS += -Drenderer-gl=true
|
|
WESTON_DEPENDENCIES += libegl libgles
|
|
ifeq ($(BR2_PACKAGE_PIPEWIRE)$(BR2_PACKAGE_WESTON_DRM),yy)
|
|
WESTON_CONF_OPTS += -Dpipewire=true
|
|
WESTON_DEPENDENCIES += pipewire
|
|
else
|
|
WESTON_CONF_OPTS += -Dpipewire=false
|
|
endif
|
|
else
|
|
WESTON_CONF_OPTS += \
|
|
-Drenderer-gl=false \
|
|
-Dpipewire=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WESTON_RDP),y)
|
|
WESTON_DEPENDENCIES += freerdp
|
|
WESTON_CONF_OPTS += -Dbackend-rdp=true
|
|
else
|
|
WESTON_CONF_OPTS += -Dbackend-rdp=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WESTON_DRM),y)
|
|
WESTON_CONF_OPTS += -Dbackend-drm=true
|
|
else
|
|
WESTON_CONF_OPTS += -Dbackend-drm=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WESTON_HEADLESS),y)
|
|
WESTON_CONF_OPTS += -Dbackend-headless=true
|
|
else
|
|
WESTON_CONF_OPTS += -Dbackend-headless=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WESTON_WAYLAND),y)
|
|
WESTON_CONF_OPTS += -Dbackend-wayland=true
|
|
else
|
|
WESTON_CONF_OPTS += -Dbackend-wayland=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WESTON_X11),y)
|
|
WESTON_CONF_OPTS += -Dbackend-x11=true
|
|
WESTON_DEPENDENCIES += libxcb xlib_libX11
|
|
else
|
|
WESTON_CONF_OPTS += -Dbackend-x11=false
|
|
endif
|
|
|
|
# We're guaranteed to have at least one backend
|
|
WESTON_CONF_OPTS += -Dbackend-default=$(call qstrip,$(BR2_PACKAGE_WESTON_DEFAULT_COMPOSITOR))
|
|
|
|
ifeq ($(BR2_PACKAGE_WESTON_XWAYLAND),y)
|
|
WESTON_CONF_OPTS += -Dxwayland=true
|
|
WESTON_DEPENDENCIES += cairo libepoxy libxcb xlib_libX11 xlib_libXcursor
|
|
else
|
|
WESTON_CONF_OPTS += -Dxwayland=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBVA),y)
|
|
WESTON_CONF_OPTS += -Dbackend-drm-screencast-vaapi=true
|
|
WESTON_DEPENDENCIES += libva
|
|
else
|
|
WESTON_CONF_OPTS += -Dbackend-drm-screencast-vaapi=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LCMS2),y)
|
|
WESTON_CONF_OPTS += -Dcolor-management-lcms=true
|
|
WESTON_DEPENDENCIES += lcms2
|
|
else
|
|
WESTON_CONF_OPTS += -Dcolor-management-lcms=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
WESTON_CONF_OPTS += -Dsystemd=true
|
|
WESTON_DEPENDENCIES += systemd
|
|
else
|
|
WESTON_CONF_OPTS += -Dsystemd=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBXML2),y)
|
|
WESTON_CONF_OPTS += -Dtest-junit-xml=true
|
|
WESTON_DEPENDENCIES += libxml2
|
|
else
|
|
WESTON_CONF_OPTS += -Dtest-junit-xml=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WESTON_SHELL_DESKTOP),y)
|
|
WESTON_CONF_OPTS += -Dshell-desktop=true
|
|
else
|
|
WESTON_CONF_OPTS += -Dshell-desktop=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WESTON_SHELL_FULLSCREEN),y)
|
|
WESTON_CONF_OPTS += -Dshell-fullscreen=true
|
|
else
|
|
WESTON_CONF_OPTS += -Dshell-fullscreen=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WESTON_SHELL_IVI),y)
|
|
WESTON_CONF_OPTS += -Dshell-ivi=true
|
|
else
|
|
WESTON_CONF_OPTS += -Dshell-ivi=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WESTON_SHELL_KIOSK),y)
|
|
WESTON_CONF_OPTS += -Dshell-kiosk=true
|
|
else
|
|
WESTON_CONF_OPTS += -Dshell-kiosk=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WESTON_DEMO_CLIENTS),y)
|
|
WESTON_CONF_OPTS += -Ddemo-clients=true
|
|
WESTON_DEPENDENCIES += pango
|
|
else
|
|
WESTON_CONF_OPTS += -Ddemo-clients=false
|
|
endif
|
|
|
|
$(eval $(meson-package))
|