Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "A daemon for delivering ACPI events" |
Brad Bishop | a34c030 | 2019-09-23 22:34:48 -0400 | [diff] [blame] | 2 | DESCRIPTION = "ACPID is a completely flexible, totally extensible daemon for \ |
| 3 | delivering ACPI events. It listens on netlink interface (or on the \ |
| 4 | deprecated file /proc/acpi/event), and when an event occurs, executes programs \ |
| 5 | to handle the event. The programs it executes are configured through a set of \ |
| 6 | configuration files, which can be dropped into place by packages or by the \ |
| 7 | admin." |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 8 | HOMEPAGE = "http://sourceforge.net/projects/acpid2" |
| 9 | BUGTRACKER = "http://sourceforge.net/p/acpid2/tickets/?source=navbar" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 10 | SECTION = "base" |
| 11 | LICENSE = "GPLv2+" |
| 12 | |
| 13 | SRC_URI = "${SOURCEFORGE_MIRROR}/acpid2/acpid-${PV}.tar.xz \ |
| 14 | file://init \ |
| 15 | file://acpid.service \ |
| 16 | " |
| 17 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 18 | CVE_PRODUCT = "acpid2" |
| 19 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 20 | inherit autotools update-rc.d systemd |
| 21 | |
| 22 | INITSCRIPT_NAME = "acpid" |
| 23 | INITSCRIPT_PARAMS = "defaults" |
| 24 | |
| 25 | SYSTEMD_SERVICE_${PN} = "acpid.service" |
| 26 | |
| 27 | do_install_append () { |
| 28 | install -d ${D}${sysconfdir}/init.d |
| 29 | sed -e 's,/usr/sbin,${sbindir},g' ${WORKDIR}/init > ${D}${sysconfdir}/init.d/acpid |
| 30 | chmod 755 ${D}${sysconfdir}/init.d/acpid |
| 31 | |
| 32 | install -d ${D}${sysconfdir}/acpi |
| 33 | install -d ${D}${sysconfdir}/acpi/events |
| 34 | |
| 35 | install -d ${D}${systemd_unitdir}/system |
| 36 | install -m 0644 ${WORKDIR}/acpid.service ${D}${systemd_unitdir}/system |
| 37 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/acpid.service |
| 38 | } |