diff options
Diffstat (limited to 'meta-oe/recipes-support/systemd-netlogd/systemd-netlogd_1.4.4.bb')
-rw-r--r-- | meta-oe/recipes-support/systemd-netlogd/systemd-netlogd_1.4.4.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/systemd-netlogd/systemd-netlogd_1.4.4.bb b/meta-oe/recipes-support/systemd-netlogd/systemd-netlogd_1.4.4.bb new file mode 100644 index 0000000000..019098fdf7 --- /dev/null +++ b/meta-oe/recipes-support/systemd-netlogd/systemd-netlogd_1.4.4.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | SUMMARY = "Forwards messages from the journal to other hosts over the network using the Syslog Protocol" | ||
2 | |||
3 | LICENSE = "LGPL-2.1-or-later" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE.LGPL2.1;md5=4fbd65380cdd255951079008b364516c" | ||
5 | |||
6 | SRC_URI = "git://github.com/systemd/systemd-netlogd.git;protocol=https;branch=main" | ||
7 | SRCREV = "b03cc3b1a75048c7cf19467d8918a4b7320767e6" | ||
8 | |||
9 | inherit meson systemd pkgconfig useradd features_check | ||
10 | |||
11 | REQUIRED_DISTRO_FEATURES = "systemd" | ||
12 | COMPATIBLE_HOST:libc-musl = "null" | ||
13 | |||
14 | |||
15 | DEPENDS += "systemd" | ||
16 | DEPENDS += "openssl" | ||
17 | DEPENDS += "gperf-native" | ||
18 | DEPENDS += "python3-sphinx-native" | ||
19 | |||
20 | # systemd-netlogd uses prefix and sysconfdir in a weird way. | ||
21 | EXTRA_OEMESON += "--prefix ${libdir}/systemd --sysconfdir ${sysconfdir}/systemd" | ||
22 | |||
23 | FILES:${PN} += "${libdir}" | ||
24 | |||
25 | USERADD_PACKAGES = "${PN}" | ||
26 | GROUPADD_PARAM:${PN} = "-r systemd-journal" | ||
27 | USERADD_PARAM:${PN} = "--system -d / -M --shell /sbin/nologin -g systemd-journal systemd-journal-netlog" | ||