seatd: align to new option names in meson

This commit is contained in:
Markus Volk 2021-07-07 07:20:13 +02:00
parent c294630f72
commit 7c73ec8ccf

View File

@ -8,20 +8,23 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=715a99d2dd552e6188e74d4ed2914d5a"
SRC_URI = "git://git.sr.ht/~kennylevinsen/seatd;protocol=https" SRC_URI = "git://git.sr.ht/~kennylevinsen/seatd;protocol=https"
# On systems without logind/elogind, you need to suid the sway binary.
# Sway will drop root permissions shortly after startup.
PACKAGECONFIG[systemd] = ",,systemd" PACKAGECONFIG[systemd] = ",,systemd"
PACKAGECONFIG[elogind] = ",,elogind" PACKAGECONFIG[sysvinit] = ",,elogind"
PACKAGECONFIG[standalone] = "-Dbuiltin=enabled,-Dbuiltin=disabled"
# On systems without logind/elogind, you need to use libseat-builtin.
# You have to suid the sway binary. Sway will drop root permissions shortly after startup.
PACKAGECONFIG[libseat-builtin] = "-Dlibseat-builtin=enabled -Dlibseat-logind=disabled,-Dlibseat-builtin=disabled"
PACKAGECONFIG[man-pages] = ",,scdoc-native" PACKAGECONFIG[man-pages] = ",,scdoc-native"
PACKAGECONFIG ?= " \ PACKAGECONFIG ?= " \
${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \ ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \
${@bb.utils.filter('DISTRO_FEATURES', 'sysvinit', d)} \
" "
S = "${WORKDIR}/git" S = "${WORKDIR}/git"
PV = "0.5.0+${SRCREV}" PV = "0.5.0+${SRCREV}"
SRCREV = "fc97206df9b8fbba09de8b320fab6f75235a5c7f" SRCREV = "2204db5531ed16bf32f969645e7177f6118f8a8e"
inherit meson inherit meson