74169a1c4c8a529c5bafaceffc9350611aef98ae
[openwrt/openwrt.git] / package / network / services / lldpd / Makefile
1 #
2 # Copyright (C) 2008-2015 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.9.5
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_HASH:=e9585c52f14808f03f6b6c3a9163c95b542a47b18abe002992b155d143a1a247
17
18 PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
19 PKG_LICENSE:=ISC
20
21 PKG_FIXUP:=autoreconf
22 PKG_INSTALL:=1
23
24 TARGET_CFLAGS+=--std=c99
25
26 include $(INCLUDE_DIR)/package.mk
27
28 define Package/lldpd
29 SECTION:=net
30 CATEGORY:=Network
31 SUBMENU:=Routing and Redirection
32 TITLE:=Link Layer Discovery Protocol daemon
33 URL:=https://github.com/vincentbernat/lldpd/wiki
34 DEPENDS:=+libevent2 +USE_GLIBC:libbsd +LLDPD_WITH_JSON:libjson-c +LLDPD_WITH_SNMP:libnetsnmp
35 USERID:=lldp=121:lldp=129
36 MENU:=1
37 endef
38
39 define Package/lldpd/config
40 source "$(SOURCE)/Config.in"
41 endef
42
43 define Package/lldpd/description
44 LLDP (Link Layer Discovery Protocol) is an industry standard protocol designed
45 to supplant proprietary Link-Layer protocols such as
46 Extreme's EDP (Extreme Discovery Protocol) and
47 CDP (Cisco Discovery Protocol).
48 The goal of LLDP is to provide an inter-vendor compatible mechanism to deliver
49 Link-Layer notifications to adjacent network devices.
50 endef
51
52 define Build/InstallDev
53 $(INSTALL_DIR) $(1)/usr/lib
54 $(CP) $(PKG_INSTALL_DIR)/usr/lib/liblldpctl.so* $(1)/usr/lib/
55 $(INSTALL_DIR) $(1)/usr/include
56 $(CP) $(PKG_INSTALL_DIR)/usr/include/lldpctl.h $(1)/usr/include/lldpctl.h
57 $(CP) $(PKG_INSTALL_DIR)/usr/include/lldp-const.h $(1)/usr/include/lldp-const.h
58 endef
59
60 define Package/lldpd/install
61 $(INSTALL_DIR) $(1)/etc/init.d
62 $(INSTALL_DIR) $(1)/etc/lldpd.d
63 $(INSTALL_DIR) $(1)/etc/config
64 $(INSTALL_DIR) $(1)/usr/lib $(1)/usr/sbin
65 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/lldp{cli,ctl,d} $(1)/usr/sbin/
66 $(CP) $(PKG_INSTALL_DIR)/usr/lib/liblldpctl.so* $(1)/usr/lib/
67 $(INSTALL_BIN) ./files/lldpd.init $(1)/etc/init.d/lldpd
68 $(INSTALL_DATA) ./files/lldpd.config $(1)/etc/config/lldpd
69 ifneq ($(CONFIG_LLDPD_WITH_CDP),y)
70 sed -i -e '/cdp/d' $(1)/etc/init.d/lldpd $(1)/etc/config/lldpd
71 endif
72 ifneq ($(CONFIG_LLDPD_WITH_FDP),y)
73 sed -i -e '/fdp/d' $(1)/etc/init.d/lldpd $(1)/etc/config/lldpd
74 endif
75 ifneq ($(CONFIG_LLDPD_WITH_EDP),y)
76 sed -i -e '/edp/d' $(1)/etc/init.d/lldpd $(1)/etc/config/lldpd
77 endif
78 ifneq ($(CONFIG_LLDPD_WITH_SONMP),y)
79 sed -i -e '/sonmp/d' $(1)/etc/init.d/lldpd $(1)/etc/config/lldpd
80 endif
81 ifneq ($(CONFIG_LLDPD_WITH_SNMP),y)
82 sed -i -e '/agentxsocket/d' $(1)/etc/init.d/lldpd $(1)/etc/config/lldpd
83 endif
84 endef
85
86 define Package/lldpd/conffiles
87 /etc/config/lldpd
88 endef
89
90 CONFIGURE_ARGS += \
91 $(if $(CONFIG_LLDPD_WITH_PRIVSEP), \
92 --with-privsep-user=lldp \
93 --with-privsep-group=lldp \
94 --with-privsep-chroot=/var/run/lldp \
95 ,--disable-privsep) \
96 --with-readline=no \
97 --with-embedded-libevent=no \
98 --disable-hardening \
99 --without-xml \
100 --sysconfdir=/tmp \
101 $(if $(CONFIG_LLDPD_WITH_CDP),,--disable-cdp) \
102 $(if $(CONFIG_LLDPD_WITH_FDP),,--disable-fdp) \
103 $(if $(CONFIG_LLDPD_WITH_EDP),,--disable-edp) \
104 $(if $(CONFIG_LLDPD_WITH_LLDPMED),,--disable-lldpmed) \
105 $(if $(CONFIG_LLDPD_WITH_DOT1),,--disable-dot1) \
106 $(if $(CONFIG_LLDPD_WITH_DOT3),,--disable-dot3) \
107 $(if $(CONFIG_LLDPD_WITH_CUSTOM),,--disable-custom) \
108 $(if $(CONFIG_LLDPD_WITH_SONMP),,--disable-sonmp) \
109 $(if $(CONFIG_LLDPD_WITH_JSON),--with-json=json-c,--with-json=no) \
110 $(if $(CONFIG_LLDPD_WITH_SNMP),--with-snmp,)
111
112
113 $(eval $(call BuildPackage,lldpd))