mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
(From OE-Core rev: 6a44e9192ded342e8c9f69a1f661519ae75823ca) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
1.3 KiB
BlitzBasic
36 lines
1.3 KiB
BlitzBasic
SUMMARY = "A minimal seat management daemon, and a universal seat management library."
|
|
DESCRIPTION = "Seat management takes care of mediating access to shared devices (graphics, input), without requiring the applications needing access to be root."
|
|
HOMEPAGE = "https://git.sr.ht/~kennylevinsen/seatd"
|
|
|
|
LICENSE = "MIT"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=715a99d2dd552e6188e74d4ed2914d5a"
|
|
|
|
SRC_URI = "git://git.sr.ht/~kennylevinsen/seatd;protocol=https;branch=master \
|
|
file://init"
|
|
SRCREV = "3e9ef69f14f630a719dd464f3c90a7932f1c8296"
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit meson pkgconfig update-rc.d
|
|
|
|
# https://www.openwall.com/lists/musl/2020/01/20/3
|
|
CFLAGS:append:libc-musl:powerpc64le = " -Wno-error=overflow"
|
|
|
|
PACKAGECONFIG ?= " \
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \
|
|
libseat-builtin \
|
|
"
|
|
|
|
PACKAGECONFIG[libseat-builtin] = "-Dlibseat-builtin=enabled,-Dlibseat-builtin=disabled"
|
|
PACKAGECONFIG[systemd] = ",,systemd"
|
|
|
|
do_install:append() {
|
|
if [ "${VIRTUAL-RUNTIME_init_manager}" != "systemd" ]; then
|
|
install -Dm755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/seatd
|
|
fi
|
|
}
|
|
|
|
INITSCRIPT_NAME = "seatd"
|
|
INITSCRIPT_PARAMS = "start 9 5 2 . stop 20 0 1 6 ."
|
|
INHIBIT_UPDATERCD_BBCLASS = "${@oe.utils.conditional('VIRTUAL-RUNTIME_init_manager', 'systemd', '1', '', d)}"
|