Merge pull request #361 from akru/cjdns-build-fixes
[feed/routing.git] / bmx7 / Makefile
1 #
2 # This program is free software; you can redistribute it and/or modify
3 # it under the terms of the GNU General Public License as published by
4 # the Free Software Foundation; either version 2 of the License, or
5 # (at your option) any later version.
6 #
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 # GNU General Public License for more details.
11 #
12 # You should have received a copy of the GNU General Public License along
13 # with this program; if not, write to the Free Software Foundation, Inc.,
14 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
15 #
16 # The full GNU General Public License is included in this distribution in
17 # the file called "COPYING".
18 #
19 # Contibutors:
20 # Axel Neumann, Simó Albert i Beltran, Pau Escrich
21 #
22
23
24 include $(TOPDIR)/rules.mk
25
26 PKG_NAME:=bmx7
27
28 PKG_SOURCE_PROTO:=git
29
30 PKG_SOURCE_URL:=git://github.com/bmx-routing/bmx7.git
31 #PKG_SOURCE_URL:=file:///usr/src/bmx-routing/bmx7.git
32
33 PKG_REV:=9883383dc26df16da67b9ef7ba99efe62f79c4e7
34 PKG_MIRROR_HASH:=012178aba42016d3e0961715f99bf1e322c2c6c22b1cc6635375468360cb4d68
35 PKG_VERSION:=r2018042501
36 PKG_RELEASE:=1
37 PKG_LICENSE:=GPL-2.0
38
39 PKG_SOURCE_VERSION:=$(PKG_REV)
40 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
41 PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
42 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SOURCE_SUBDIR)
43
44 include $(INCLUDE_DIR)/package.mk
45
46 TARGET_CFLAGS += $(FPIC)
47
48 MAKE_ARGS += EXTRA_CFLAGS="$(TARGET_CFLAGS) -I. -I$(STAGING_DIR)/usr/include -DCRYPTLIB=MBEDTLS_2_4_0 -DCORE_LIMIT=20000 -DTRAFFIC_DUMP -DNO_TRACE_FUNCTION_CALLS -DBMX7_LIB_IWINFO"
49
50 MAKE_ARGS += \
51 EXTRA_LDFLAGS="$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib -liwinfo" \
52 GIT_REV="$(PKG_REV)" \
53 CC="$(TARGET_CC)" \
54 INSTALL_DIR="$(PKG_INSTALL_DIR)" \
55 build_all
56
57 define Package/bmx7/Default
58 SECTION:=net
59 CATEGORY:=Network
60 SUBMENU:=Routing and Redirection
61 TITLE:=BMX7 layer 3 routing daemon
62 URL:=http://github.com/bmx-routing/bmx7
63 MAINTAINER:=Axel Neumann <neumann@cgws.de>
64 DEPENDS:=+zlib +libmbedtls +libiwinfo
65 endef
66
67 define Package/bmx7/description
68 BMX7 routing daemon supporting securely-entrusted IPv6 (and IPv4in6) routing
69 endef
70
71 define Package/bmx7
72 $(call Package/bmx7/Default)
73 MENU:=1
74 endef
75
76 define Package/bmx7-uci-config
77 $(call Package/bmx7/Default)
78 DEPENDS:=bmx7 +libuci
79 TITLE:=configuration plugin based on uci (recommended!)
80 endef
81
82 define Package/bmx7-iwinfo
83 $(call Package/bmx7/Default)
84 DEPENDS:=bmx7 +libiwinfo
85 TITLE:=link characteristics plugin based on libiwinfo (recommended!)
86 endef
87
88 define Package/bmx7-topology
89 $(call Package/bmx7/Default)
90 DEPENDS:=bmx7
91 TITLE:=topology plugin
92 endef
93
94 define Package/bmx7-json
95 $(call Package/bmx7/Default)
96 DEPENDS:=bmx7 +libjson-c
97 TITLE:=json plugin based on json-c
98 endef
99
100 define Package/bmx7-sms
101 $(call Package/bmx7/Default)
102 DEPENDS:=bmx7
103 TITLE:=sms plugin
104 endef
105
106 define Package/bmx7-tun
107 $(call Package/bmx7/Default)
108 DEPENDS:=bmx7 +kmod-ip6-tunnel +kmod-iptunnel6 +kmod-tun
109 TITLE:=ipip-based tunnel plugin (recommended!)
110 endef
111
112 define Package/bmx7-table
113 $(call Package/bmx7/Default)
114 DEPENDS:=bmx7 +bmx7-tun
115 TITLE:=plugin to announce routes from tables via tunnels
116 endef
117
118 define Build/Configure
119 mkdir -p $(PKG_INSTALL_DIR)
120 endef
121
122 define Build/Compile
123 $(MAKE) -C $(PKG_BUILD_DIR) $(MAKE_ARGS)
124 endef
125
126 define Package/bmx7/install
127 $(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/config $(1)/etc/init.d
128 $(INSTALL_BIN) $(PKG_BUILD_DIR)/bmx7 $(1)/usr/sbin/bmx7
129 endef
130
131 define Package/bmx7/postinst
132 #!/bin/sh
133 # # check if we are on real system
134 if [ -z "$${IPKG_INSTROOT}" ]; then
135 if [ -f /etc/sysupgrade.conf ] && ! grep bmx7 /etc/sysupgrade.conf; then
136 echo /etc/bmx7 >> /etc/sysupgrade.conf
137 fi
138 fi
139 endef
140
141
142 define Package/bmx7-uci-config/conffiles
143 /etc/config/bmx7
144 /etc/bmx7
145 endef
146
147 define Package/bmx7-uci-config/install
148 $(INSTALL_DIR) $(1)/usr/lib $(1)/etc/config $(1)/etc/init.d
149 $(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/bmx7_uci_config/bmx7_config.so $(1)/usr/lib/bmx7_config.so
150 $(INSTALL_BIN) ./files/etc/init.d/bmx7 $(1)/etc/init.d/bmx7
151 $(INSTALL_DATA) ./files/etc/config/bmx7 $(1)/etc/config/bmx7
152 endef
153
154 define Package/bmx7-iwinfo/install
155 $(INSTALL_DIR) $(1)/usr/lib
156 $(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/bmx7_iwinfo/bmx7_iwinfo.so $(1)/usr/lib/bmx7_iwinfo.so
157 endef
158
159 define Package/bmx7-topology/install
160 $(INSTALL_DIR) $(1)/usr/lib
161 $(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/bmx7_topology/bmx7_topology.so $(1)/usr/lib/bmx7_topology.so
162 endef
163
164 define Package/bmx7-json/install
165 $(INSTALL_DIR) $(1)/usr/lib
166 $(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/bmx7_json/bmx7_json.so $(1)/usr/lib/bmx7_json.so
167 endef
168
169 define Package/bmx7-sms/install
170 $(INSTALL_DIR) $(1)/usr/lib
171 $(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/bmx7_sms/bmx7_sms.so $(1)/usr/lib/bmx7_sms.so
172 endef
173
174 define Package/bmx7-tun/install
175 $(INSTALL_DIR) $(1)/usr/lib
176 $(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/bmx7_tun/bmx7_tun.so $(1)/usr/lib/bmx7_tun.so
177 endef
178
179 define Package/bmx7-table/install
180 $(INSTALL_DIR) $(1)/usr/lib
181 $(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/bmx7_table/bmx7_table.so $(1)/usr/lib/bmx7_table.so
182 endef
183
184
185 $(eval $(call BuildPackage,bmx7))
186 $(eval $(call BuildPackage,bmx7-uci-config))
187 $(eval $(call BuildPackage,bmx7-iwinfo))
188 $(eval $(call BuildPackage,bmx7-topology))
189 $(eval $(call BuildPackage,bmx7-json))
190 $(eval $(call BuildPackage,bmx7-sms))
191 $(eval $(call BuildPackage,bmx7-table))
192 $(eval $(call BuildPackage,bmx7-tun))