2 # Copyright (C) 2008-2013 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR)/rules.mk
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://media.luffy.cx/files/lldpd
16 PKG_MD5SUM:=9031734c69940dd79a0a175123275f83
18 PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org>
23 TARGET_CFLAGS+=--std=c99
25 include $(INCLUDE_DIR)/package.mk
30 SUBMENU:=Routing and Redirection
31 TITLE:=Link Layer Discovery Protocol daemon
32 URL:=https://github.com/vincentbernat/lldpd/wiki
33 DEPENDS:=+libevent2 +USE_EGLIBC:libbsd
36 define Package/lldpd/description
37 LLDP (Link Layer Discovery Protocol) is an industry standard protocol designed
38 to supplant proprietary Link-Layer protocols such as
39 Extreme's EDP (Extreme Discovery Protocol) and
40 CDP (Cisco Discovery Protocol).
41 The goal of LLDP is to provide an inter-vendor compatible mechanism to deliver
42 Link-Layer notifications to adjacent network devices.
45 define Package/lldpd/install
46 $(INSTALL_DIR) $(1)/etc/init.d
47 $(INSTALL_DIR) $(1)/etc/config
48 $(INSTALL_DIR) $(1)/usr/lib $(1)/usr/sbin
49 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/lldp{ctl,d} $(1)/usr/sbin/
50 $(CP) $(PKG_INSTALL_DIR)/usr/lib/liblldpctl.so* $(1)/usr/lib/
51 $(INSTALL_BIN) ./files/lldpd.init $(1)/etc/init.d/lldpd
52 $(INSTALL_DATA) ./files/lldpd.config $(1)/etc/config/lldpd
55 define Package/lldpd/conffiles
60 --with-privsep-user=lldp \
61 --with-privsep-group=lldp \
62 --with-privsep-chroot=/var/run/lldp
64 $(eval $(call BuildPackage,lldpd))