lldpd does not compile with linux 2.4
[openwrt/svn-archive/archive.git] / net / lldpd / Makefile
1 #
2 # Copyright (C) 2008 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.3
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.luffy.cx/lldpd/
16 PKG_MD5SUM:=317e1144ec7d2781ff123ec16845a2fc
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
19 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/lldpd
24 SECTION:=net
25 CATEGORY:=Network
26 TITLE:=Link Layer Discovery Protocol damon
27 DEPENDS:=@!LINUX_2_4
28 URL:=http://www.bitwizard.nl/lldpd/
29 endef
30
31 define Package/lldpd/description
32 LLDP (Link Layer Discovery Protocol) is an industry standard protocol designed
33 to supplant proprietary Link-Layer protocols such as
34 Extreme's EDP (Extreme Discovery Protocol) and
35 CDP (Cisco Discovery Protocol).
36 The goal of LLDP is to provide an inter-vendor compatible mechanism to deliver
37 Link-Layer notifications to adjacent network devices.
38 endef
39
40 CONFIGURE_ARGS += \
41 --enable-cdp \
42 --enable-fdp \
43 --enable-edp \
44 --enable-lldpmed \
45 --enable-dot1 \
46 --enable-dot3 \
47
48 CONFIGURE_VARS += \
49 ac_cv_lib_nl_nl_connect=no
50
51 define Package/lldpd/install
52 $(INSTALL_DIR) $(1)/etc/init.d
53 $(INSTALL_DIR) $(1)/etc/config
54 $(INSTALL_DIR) $(1)/usr/sbin
55 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/lldpd $(1)/usr/sbin/
56 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/lldpctl $(1)/usr/sbin/
57 $(INSTALL_BIN) ./files/lldpd.init $(1)/etc/init.d/lldpd
58 $(INSTALL_DATA) ./files/lldpd.config $(1)/etc/config/lldpd
59 endef
60
61 $(eval $(call BuildPackage,lldpd))