summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-daemons/lldpd/lldpd_1.0.15.bb
diff options
context:
space:
mode:
authorAlex Kiernan <alex.kiernan@gmail.com>2022-10-22 10:17:09 +0100
committerKhem Raj <raj.khem@gmail.com>2022-10-22 16:01:22 -0700
commitc782674d3f4575817c2c7222adc188ea5aca44f2 (patch)
treeee73a5220b4dafd98d64a44a397706ad74272c80 /meta-networking/recipes-daemons/lldpd/lldpd_1.0.15.bb
parentded3e642e3da1f6b4eb6840c93273455eb218919 (diff)
downloadmeta-openembedded-c782674d3f4575817c2c7222adc188ea5aca44f2.tar.gz
lldpd: Upgrade 1.0.14 -> 1.0.15
Add github-releases to make new releases discoverable. Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-daemons/lldpd/lldpd_1.0.15.bb')
-rw-r--r--meta-networking/recipes-daemons/lldpd/lldpd_1.0.15.bb63
1 files changed, 63 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/lldpd/lldpd_1.0.15.bb b/meta-networking/recipes-daemons/lldpd/lldpd_1.0.15.bb
new file mode 100644
index 0000000000..6a3687cf72
--- /dev/null
+++ b/meta-networking/recipes-daemons/lldpd/lldpd_1.0.15.bb
@@ -0,0 +1,63 @@
1SUMMARY = "A 802.1ab implementation (LLDP) to help you locate neighbors of all your equipments"
2SECTION = "net/misc"
3LICENSE = "ISC"
4LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/ISC;md5=f3b90e78ea0cffb20bf5cca7947a896d"
5
6DEPENDS = "libbsd libevent"
7
8SRC_URI = "\
9 http://media.luffy.cx/files/${BPN}/${BPN}-${PV}.tar.gz \
10 file://lldpd.init.d \
11 file://lldpd.default \
12 "
13
14SRC_URI[sha256sum] = "f7fe3a130be98a19c491479ef60f36b8ee41a9e6bc4d7f2c41033f63956a3126"
15
16inherit autotools update-rc.d useradd systemd pkgconfig bash-completion github-releases
17
18USERADD_PACKAGES = "${PN}"
19USERADD_PARAM:${PN} = "--system -g lldpd --shell /bin/false lldpd"
20GROUPADD_PARAM:${PN} = "--system lldpd"
21
22EXTRA_OECONF += "--without-embedded-libevent \
23 --disable-oldies \
24 --with-privsep-user=lldpd \
25 --with-privsep-group=lldpd \
26 --with-systemdsystemunitdir=${systemd_system_unitdir} \
27 --without-sysusersdir \
28"
29
30PACKAGECONFIG ??= "cdp fdp edp sonmp lldpmed dot1 dot3"
31PACKAGECONFIG[xml] = "--with-xml,--without-xml,libxm2"
32PACKAGECONFIG[snmp] = "--with-snmp,--without-snmp,net-snmp"
33PACKAGECONFIG[readline] = "--with-readline,--without-readline,readline"
34PACKAGECONFIG[seccomp] = "--with-seccomp,--without-seccomp,libseccomp"
35PACKAGECONFIG[cdp] = "--enable-cdp,--disable-cdp"
36PACKAGECONFIG[fdp] = "--enable-fdp,--disable-fdp"
37PACKAGECONFIG[edp] = "--enable-edp,--disable-edp"
38PACKAGECONFIG[sonmp] = "--enable-sonmp,--disable-sonmp"
39PACKAGECONFIG[lldpmed] = "--enable-lldpmed,--disable-lldpmed"
40PACKAGECONFIG[dot1] = "--enable-dot1,--disable-dot1"
41PACKAGECONFIG[dot3] = "--enable-dot3,--disable-dot3"
42PACKAGECONFIG[custom] = "--enable-custom,--disable-custom"
43
44INITSCRIPT_NAME = "lldpd"
45INITSCRIPT_PARAMS = "defaults"
46
47SYSTEMD_SERVICE:${PN} = "lldpd.service"
48
49do_install:append() {
50 install -Dm 0755 ${WORKDIR}/lldpd.init.d ${D}${sysconfdir}/init.d/lldpd
51 install -Dm 0644 ${WORKDIR}/lldpd.default ${D}${sysconfdir}/default/lldpd
52 # Make an empty configuration file
53 touch ${D}${sysconfdir}/lldpd.conf
54}
55
56PACKAGES =+ "${PN}-zsh-completion"
57
58FILES:${PN} += "${libdir}/sysusers.d"
59RDEPENDS:${PN} += "os-release"
60
61FILES:${PN}-zsh-completion += "${datadir}/zsh/"
62# FIXME: zsh is broken in meta-oe so this cannot be enabled for now
63#RDEPENDS:${PN}-zsh-completion += "zsh"