a44572db8e0b00d761092f37aa30ca7f157bcfdb
[openwrt/staging/mkresin.git] / package / network / utils / iproute2 / Makefile
1 #
2 # Copyright (C) 2006-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:=iproute2
11 PKG_VERSION:=3.11.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
15 PKG_SOURCE_URL:=http://kernel.org/pub/linux/utils/net/iproute2/
16 PKG_MD5SUM:=d7ffb27bc9f0d80577b1f3fb9d1a7689
17 PKG_BUILD_PARALLEL:=1
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/iproute2-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/iproute2/Default
24 SECTION:=net
25 CATEGORY:=Network
26 URL:=http://linux-net.osdl.org/index.php/Iproute2
27 endef
28
29 define Package/ip
30 $(call Package/iproute2/Default)
31 SUBMENU:=Routing and Redirection
32 DEPENDS:= +libnl-tiny
33 TITLE:=Routing control utility
34 endef
35
36 define Package/ip/conffiles
37 /etc/iproute2/rt_tables
38 endef
39
40 define Package/tc
41 $(call Package/iproute2/Default)
42 TITLE:=Traffic control utility
43 DEPENDS:=+kmod-sched-core
44 endef
45
46 define Package/genl
47 $(call Package/iproute2/Default)
48 TITLE:=General netlink utility frontend
49 endef
50
51 define Package/ss
52 $(call Package/iproute2/Default)
53 TITLE:=Socket statistics utility
54 endef
55
56 define Build/Configure
57 $(SED) "s,-I/usr/include/db3,," $(PKG_BUILD_DIR)/Makefile
58 $(SED) "s,^KERNEL_INCLUDE.*,KERNEL_INCLUDE=$(LINUX_DIR)/include," \
59 $(PKG_BUILD_DIR)/Makefile
60 $(SED) "s,^LIBC_INCLUDE.*,LIBC_INCLUDE=$(STAGING_DIR)/include," \
61 $(PKG_BUILD_DIR)/Makefile
62 echo "static const char SNAPSHOT[] = \"$(PKG_VERSION)-$(PKG_RELEASE)-openwrt\";" \
63 > $(PKG_BUILD_DIR)/include/SNAPSHOT.h
64 endef
65
66 ifdef CONFIG_USE_EGLIBC
67 ifndef CONFIG_EGLIBC_VERSION_2_13
68 TARGET_CFLAGS += -DHAVE_SETNS
69 endif
70 endif
71
72 TARGET_CFLAGS += -ffunction-sections -fdata-sections
73
74 MAKE_FLAGS += \
75 EXTRA_CCOPTS="$(TARGET_CFLAGS) -I../include -I$(STAGING_DIR)/usr/include/libnl-tiny" \
76 KERNEL_INCLUDE="$(LINUX_DIR)/include" \
77 SHARED_LIBS="" \
78 LDFLAGS="-Wl,--gc-sections" \
79 IP_CONFIG_TINY=y \
80 FPIC=""
81
82 define Build/Compile
83 +$(MAKE_VARS) $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) $(MAKE_FLAGS)
84 endef
85
86 define Build/InstallDev
87 $(INSTALL_DIR) $(1)/usr/include
88 $(CP) $(PKG_BUILD_DIR)/include/libnetlink.h $(1)/usr/include/
89 $(INSTALL_DIR) $(1)/usr/lib
90 $(CP) $(PKG_BUILD_DIR)/lib/libnetlink.a $(1)/usr/lib/
91 endef
92
93 define Package/ip/install
94 $(INSTALL_DIR) $(1)/usr/sbin
95 $(INSTALL_DIR) $(1)/etc/iproute2
96 $(INSTALL_DATA) $(PKG_BUILD_DIR)/etc/iproute2/rt_tables $(1)/etc/iproute2
97 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ip/ip $(1)/usr/sbin/
98 endef
99
100 define Package/tc/install
101 $(INSTALL_DIR) $(1)/usr/sbin
102 $(INSTALL_BIN) $(PKG_BUILD_DIR)/tc/tc $(1)/usr/sbin/
103 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
104 $(INSTALL_BIN) ./files/15-teql $(1)/etc/hotplug.d/iface/
105 endef
106
107 define Package/genl/install
108 $(INSTALL_DIR) $(1)/usr/sbin
109 $(INSTALL_BIN) $(PKG_BUILD_DIR)/genl/genl $(1)/usr/sbin/
110 endef
111
112 define Package/ss/install
113 $(INSTALL_DIR) $(1)/usr/sbin
114 $(INSTALL_BIN) $(PKG_BUILD_DIR)/misc/ss $(1)/usr/sbin/
115 endef
116
117 $(eval $(call BuildPackage,ip))
118 $(eval $(call BuildPackage,tc))
119 $(eval $(call BuildPackage,genl))
120 $(eval $(call BuildPackage,ss))