blob: e1ce2e764cfb604000e14542b1be1a4d066c4f64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
SUMMARY = "GENIVI Node Startup Controller"
DESCRIPTION = "The GENIVI Node Startup Controller \
- manages the Last User Context (LUC) \
- monitors node startup \
and \
- manages legacy applications within a node \
"
HOMEPAGE = "https://www.genivi.org/"
SECTION = "base"
LICENSE = "MPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=88220bd246a0e7bb266ce0330a7b2bfa"
SRCREV = "34a421a9267df08d0e72037396b515fe31de5523"
SRC_URI = "git://github.com/GENIVI/${BPN}.git;protocol=https \
file://use-systemd-unit-dir.patch \
"
S = "${WORKDIR}/git"
DEPENDS = "glib-2.0 dlt-daemon systemd glib-2.0-native"
RDEPENDS_${PN} = "node-state-manager"
inherit autotools gtk-doc systemd
do_configure_prepend () {
mkdir -p ${S}/m4
}
SYSTEMD_PACKAGES = "${PN}"
SYSTEMD_SERVICE_${PN} = "node-startup-controller.service"
SYSTEMD_AUTO_ENABLE = "enable"
FILES_${PN} += "\
${libdir}/${BPN}-1/${BPN} \
${libdir}/${BPN}-1/legacy-app-handler \
${datadir}/dbus-1/system-services/org.genivi.NodeStartupController1.service \
${sysconfdir}/dbus-1/system.d/org.genivi.NodeStartupController1.conf \
${systemd_unitdir}/system/node-startup-controller.service \
"
FILES_${PN}-dbg += "\
${libdir}/${BPN}-1/.debug/*ler \
"
|