4febb75d046b9dbf08ca13e17da2a96964072512
[openwrt/staging/yousong.git] / package / network / services / lldpd / Makefile
1 #
2 # Copyright (C) 2008-2013 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=lldpd
11 PKG_VERSION:=0.7.7
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://media.luffy.cx/files/lldpd
16 PKG_MD5SUM:=9031734c69940dd79a0a175123275f83
17
18 PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org>
19
20 PKG_FIXUP:=autoreconf
21 PKG_INSTALL:=1
22
23 TARGET_CFLAGS+=--std=c99
24
25 include $(INCLUDE_DIR)/package.mk
26
27 define Package/lldpd
28 SECTION:=net
29 CATEGORY:=Network
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
34 USERID:=lldp=121:lldp=129
35 endef
36
37 define Package/lldpd/description
38 LLDP (Link Layer Discovery Protocol) is an industry standard protocol designed
39 to supplant proprietary Link-Layer protocols such as
40 Extreme's EDP (Extreme Discovery Protocol) and
41 CDP (Cisco Discovery Protocol).
42 The goal of LLDP is to provide an inter-vendor compatible mechanism to deliver
43 Link-Layer notifications to adjacent network devices.
44 endef
45
46 define Package/lldpd/install
47 $(INSTALL_DIR) $(1)/etc/init.d
48 $(INSTALL_DIR) $(1)/etc/config
49 $(INSTALL_DIR) $(1)/usr/lib $(1)/usr/sbin
50 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/lldp{cli,ctl,d} $(1)/usr/sbin/
51 $(CP) $(PKG_INSTALL_DIR)/usr/lib/liblldpctl.so* $(1)/usr/lib/
52 $(INSTALL_BIN) ./files/lldpd.init $(1)/etc/init.d/lldpd
53 $(INSTALL_DATA) ./files/lldpd.config $(1)/etc/config/lldpd
54 endef
55
56 define Package/lldpd/conffiles
57 /etc/config/lldpd
58 endef
59
60 CONFIGURE_ARGS += \
61 --with-privsep-user=lldp \
62 --with-privsep-group=lldp \
63 --with-privsep-chroot=/var/run/lldp \
64 --with-readline=no
65
66 $(eval $(call BuildPackage,lldpd))