summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-daemons/lldpd/lldpd_0.7.19.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-networking/recipes-daemons/lldpd/lldpd_0.7.19.bb')
-rw-r--r--meta-networking/recipes-daemons/lldpd/lldpd_0.7.19.bb67
1 files changed, 67 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/lldpd/lldpd_0.7.19.bb b/meta-networking/recipes-daemons/lldpd/lldpd_0.7.19.bb
new file mode 100644
index 0000000000..7d5462625a
--- /dev/null
+++ b/meta-networking/recipes-daemons/lldpd/lldpd_0.7.19.bb
@@ -0,0 +1,67 @@
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/${PN}/${PN}-${PV}.tar.gz \
10 file://lldpd.init.d \
11 file://lldpd.default \
12 "
13
14SRC_URI[md5sum] = "4e924420e00ccd5dc289506f43221820"
15SRC_URI[sha256sum] = "aac11cb1fdc037709517372c70c9bf89c752ab8e5eaab9ce140b84ed5a0507c8"
16
17inherit autotools update-rc.d useradd systemd pkgconfig
18
19USERADD_PACKAGES = "${PN}"
20USERADD_PARAM_${PN} = "--system -g lldpd --shell /bin/false lldpd"
21GROUPADD_PARAM_${PN} = "--system lldpd"
22
23EXTRA_OECONF += "--without-embedded-libevent \
24 --disable-oldies \
25 --with-privsep-user=lldpd \
26 --with-privsep-group=lldpd"
27
28PACKAGECONFIG ??= "cdp fdp edp sonmp lldpmed dot1 dot3"
29PACKAGECONFIG[json] = "--with-json,--without-json,jansson"
30PACKAGECONFIG[xml] = "--with-xml,--without-xml,libxm2"
31PACKAGECONFIG[snmp] = "--with-snmp,--without-snmp,net-snmp"
32PACKAGECONFIG[readline] = "--with-readline,--without-readline,readline"
33PACKAGECONFIG[seccomp] = "--with-seccomp,--without-seccomp,libseccomp"
34PACKAGECONFIG[cdp] = "--enable-cdp,--disable-cdp"
35PACKAGECONFIG[fdp] = "--enable-fdp,--disable-fdp"
36PACKAGECONFIG[edp] = "--enable-edp,--disable-edp"
37PACKAGECONFIG[sonmp] = "--enable-sonmp,--disable-sonmp"
38PACKAGECONFIG[lldpmed] = "--enable-lldpmed,--disable-lldpmed"
39PACKAGECONFIG[dot1] = "--enable-dot1,--disable-dot1"
40PACKAGECONFIG[dot3] = "--enable-dot3,--disable-dot3"
41PACKAGECONFIG[custom] = "--enable-custom,--disable-custom"
42
43INITSCRIPT_NAME = "lldpd"
44INITSCRIPT_PARAMS = "defaults"
45
46SYSTEMD_SERVICE_${PN} = "lldpd.service"
47
48do_install_append() {
49 install -Dm 0755 ${WORKDIR}/lldpd.init.d ${D}${sysconfdir}/init.d/lldpd
50 install -Dm 0644 ${WORKDIR}/lldpd.default ${D}${sysconfdir}/default/lldpd
51 # Make an empty configuration file
52 touch ${D}${sysconfdir}/lldpd.conf
53}
54
55PACKAGES =+ "${PN}-bash-completion ${PN}-zsh-completion"
56
57FILES_${PN} += "${libdir}/sysusers.d"
58RDEPENDS_${PN} += "os-release"
59
60FILES_${PN}-bash-completion += "${sysconfdir}/bash_completion.d/ \
61 ${datadir}/bash-completion/ \
62 "
63RDEPENDS_${PN}-bash-completion += "bash"
64
65FILES_${PN}-zsh-completion += "${datadir}/zsh/"
66# FIXME: zsh is broken in meta-oe so this cannot be enabled for now
67#RDEPENDS_${PN}-zsh-completion += "zsh"