diff options
Diffstat (limited to 'meta-networking/recipes-daemons/lldpd/lldpd_0.9.2.bb')
| -rw-r--r-- | meta-networking/recipes-daemons/lldpd/lldpd_0.9.2.bb | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/lldpd/lldpd_0.9.2.bb b/meta-networking/recipes-daemons/lldpd/lldpd_0.9.2.bb new file mode 100644 index 0000000000..77ed09f542 --- /dev/null +++ b/meta-networking/recipes-daemons/lldpd/lldpd_0.9.2.bb | |||
| @@ -0,0 +1,65 @@ | |||
| 1 | SUMMARY = "A 802.1ab implementation (LLDP) to help you locate neighbors of all your equipments" | ||
| 2 | SECTION = "net/misc" | ||
| 3 | LICENSE = "ISC" | ||
| 4 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/ISC;md5=f3b90e78ea0cffb20bf5cca7947a896d" | ||
| 5 | |||
| 6 | DEPENDS = "libbsd libevent" | ||
| 7 | |||
| 8 | SRC_URI = "\ | ||
| 9 | http://media.luffy.cx/files/${BPN}/${BPN}-${PV}.tar.gz \ | ||
| 10 | file://lldpd.init.d \ | ||
| 11 | file://lldpd.default \ | ||
| 12 | " | ||
| 13 | |||
| 14 | SRC_URI[md5sum] = "b809887bc927fb558fd5dd64b6c0a494" | ||
| 15 | SRC_URI[sha256sum] = "6054f29d41faf32186a22331853a299c87f4419b4332df4a564f76a139305a32" | ||
| 16 | |||
| 17 | inherit autotools update-rc.d useradd systemd pkgconfig bash-completion | ||
| 18 | |||
| 19 | USERADD_PACKAGES = "${PN}" | ||
| 20 | USERADD_PARAM_${PN} = "--system -g lldpd --shell /bin/false lldpd" | ||
| 21 | GROUPADD_PARAM_${PN} = "--system lldpd" | ||
| 22 | |||
| 23 | EXTRA_OECONF += "--without-embedded-libevent \ | ||
| 24 | --disable-oldies \ | ||
| 25 | --with-privsep-user=lldpd \ | ||
| 26 | --with-privsep-group=lldpd \ | ||
| 27 | --with-systemdsystemunitdir=${systemd_system_unitdir} \ | ||
| 28 | --without-sysusersdir \ | ||
| 29 | " | ||
| 30 | |||
| 31 | PACKAGECONFIG ??= "cdp fdp edp sonmp lldpmed dot1 dot3" | ||
| 32 | PACKAGECONFIG[json] = "--with-json,--without-json,jansson" | ||
| 33 | PACKAGECONFIG[xml] = "--with-xml,--without-xml,libxm2" | ||
| 34 | PACKAGECONFIG[snmp] = "--with-snmp,--without-snmp,net-snmp" | ||
| 35 | PACKAGECONFIG[readline] = "--with-readline,--without-readline,readline" | ||
| 36 | PACKAGECONFIG[seccomp] = "--with-seccomp,--without-seccomp,libseccomp" | ||
| 37 | PACKAGECONFIG[cdp] = "--enable-cdp,--disable-cdp" | ||
| 38 | PACKAGECONFIG[fdp] = "--enable-fdp,--disable-fdp" | ||
| 39 | PACKAGECONFIG[edp] = "--enable-edp,--disable-edp" | ||
| 40 | PACKAGECONFIG[sonmp] = "--enable-sonmp,--disable-sonmp" | ||
| 41 | PACKAGECONFIG[lldpmed] = "--enable-lldpmed,--disable-lldpmed" | ||
| 42 | PACKAGECONFIG[dot1] = "--enable-dot1,--disable-dot1" | ||
| 43 | PACKAGECONFIG[dot3] = "--enable-dot3,--disable-dot3" | ||
| 44 | PACKAGECONFIG[custom] = "--enable-custom,--disable-custom" | ||
| 45 | |||
| 46 | INITSCRIPT_NAME = "lldpd" | ||
| 47 | INITSCRIPT_PARAMS = "defaults" | ||
| 48 | |||
| 49 | SYSTEMD_SERVICE_${PN} = "lldpd.service" | ||
| 50 | |||
| 51 | do_install_append() { | ||
| 52 | install -Dm 0755 ${WORKDIR}/lldpd.init.d ${D}${sysconfdir}/init.d/lldpd | ||
| 53 | install -Dm 0644 ${WORKDIR}/lldpd.default ${D}${sysconfdir}/default/lldpd | ||
| 54 | # Make an empty configuration file | ||
| 55 | touch ${D}${sysconfdir}/lldpd.conf | ||
| 56 | } | ||
| 57 | |||
| 58 | PACKAGES =+ "${PN}-zsh-completion" | ||
| 59 | |||
| 60 | FILES_${PN} += "${libdir}/sysusers.d" | ||
| 61 | RDEPENDS_${PN} += "os-release" | ||
| 62 | |||
| 63 | FILES_${PN}-zsh-completion += "${datadir}/zsh/" | ||
| 64 | # FIXME: zsh is broken in meta-oe so this cannot be enabled for now | ||
| 65 | #RDEPENDS_${PN}-zsh-completion += "zsh" | ||
