iproute2: workaround compile issues with gcc 4.8.x
[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.9.0
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://kernel.org/pub/linux/utils/net/iproute2/
16 PKG_MD5SUM:=b53376db94c8d66f9d540c69ed84f13b
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 MAKE_FLAGS += \
73 EXTRA_CCOPTS="$(TARGET_CFLAGS) -I../include -I$(STAGING_DIR)/usr/include/libnl-tiny" \
74 KERNEL_INCLUDE="$(LINUX_DIR)/include" \
75 FPIC="$(FPIC)"
76
77 define Build/Compile
78 +$(MAKE_VARS) $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) $(MAKE_FLAGS)
79 endef
80
81 define Build/InstallDev
82 $(INSTALL_DIR) $(1)/usr/include
83 $(CP) $(PKG_BUILD_DIR)/include/libnetlink.h $(1)/usr/include/
84 $(INSTALL_DIR) $(1)/usr/lib
85 $(CP) $(PKG_BUILD_DIR)/lib/libnetlink.a $(1)/usr/lib/
86 endef
87
88 define Package/ip/install
89 $(INSTALL_DIR) $(1)/usr/sbin
90 $(INSTALL_DIR) $(1)/etc/iproute2
91 $(INSTALL_DATA) $(PKG_BUILD_DIR)/etc/iproute2/rt_tables $(1)/etc/iproute2
92 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ip/ip $(1)/usr/sbin/
93 endef
94
95 define Package/tc/install
96 $(INSTALL_DIR) $(1)/usr/sbin
97 $(INSTALL_BIN) $(PKG_BUILD_DIR)/tc/tc $(1)/usr/sbin/
98 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
99 $(INSTALL_BIN) ./files/15-teql $(1)/etc/hotplug.d/iface/
100 endef
101
102 define Package/genl/install
103 $(INSTALL_DIR) $(1)/usr/sbin
104 $(INSTALL_BIN) $(PKG_BUILD_DIR)/genl/genl $(1)/usr/sbin/
105 endef
106
107 define Package/ss/install
108 $(INSTALL_DIR) $(1)/usr/sbin
109 $(INSTALL_BIN) $(PKG_BUILD_DIR)/misc/ss $(1)/usr/sbin/
110 endef
111
112 $(eval $(call BuildPackage,ip))
113 $(eval $(call BuildPackage,tc))
114 $(eval $(call BuildPackage,genl))
115 $(eval $(call BuildPackage,ss))