Package ayourtch's nat46 kernel module
[feed/routing.git] / hnetd / Makefile
1 #
2 # Copyright (C) 2012-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 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=hnetd
10 PKG_SOURCE_VERSION:=c6da40c19d0e550cd1e2dd1a459ef6cab9b15cae
11 PKG_VERSION:=2014-06-02-$(PKG_SOURCE_VERSION)
12 PKG_RELEASE:=1
13
14 PKG_SOURCE_PROTO:=git
15 PKG_SOURCE_URL:=git://github.com/sbyx/hnetd.git
16 PKG_MAINTAINER:=Steven Barth <cyrus@openwrt.org>
17
18 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
19 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22 include $(INCLUDE_DIR)/cmake.mk
23
24 # Spammy debug builds for now
25 CMAKE_OPTIONS += -DL_LEVEL=7
26
27 # OpenWRT target
28 CMAKE_OPTIONS += -DBACKEND=openwrt
29
30 define Package/hnetd
31 SECTION:=net
32 CATEGORY:=Network
33 TITLE:=HNCP Homenet daemon
34 URL:=https://github.com/sbyx/hnetd
35 DEPENDS:=+odhcpd +odhcp6c +netifd
36 DEPENDS+=+@IPV6
37 endef
38
39 define Package/hnet-full
40 SECTION:=net
41 CATEGORY:=Network
42 TITLE:=HNCP Homenet metapackage
43 URL:=https://github.com/sbyx/hnetd
44 DEPENDS:=+hnetd
45 # Routing
46 DEPENDS+=+babels
47 # Service discovery
48 DEPENDS+=+ohybridproxy
49 # Distributed PCP support
50 DEPENDS+=+miniupnpd +minimalist-pcproxy
51 endef
52
53 define Package/hnetd/description
54 This package provides a daemon which implementats distributed prefix assignment
55 and service discovery for a home network consisting of multiple routers
56 connected to multiple service providers. It provides a netifd protocol "hnet"
57 for use in /etc/config/network.
58 endef
59
60 define Package/hnetd/install
61 $(INSTALL_DIR) $(1)/usr/sbin/
62 $(INSTALL_BIN) $(PKG_BUILD_DIR)/hnetd $(1)/usr/sbin/
63 $(INSTALL_DIR) $(1)/lib/netifd/proto
64 $(INSTALL_BIN) $(PKG_BUILD_DIR)/openwrt/hnet.sh $(1)/lib/netifd/proto
65 ln -s hnetd $(1)/usr/sbin/hnet-call
66 $(INSTALL_DIR) $(1)/etc/init.d
67 $(INSTALL_BIN) ./files/hnetd.init $(1)/etc/init.d/hnetd
68 $(INSTALL_BIN) ./files/ohp-script $(1)/usr/sbin/hnetd-ohp-script
69 $(INSTALL_BIN) ./files/pcp-script $(1)/usr/sbin/hnetd-pcp-script
70 $(INSTALL_BIN) $(PKG_BUILD_DIR)/generic/hnetd-routing $(1)/usr/sbin/hnetd-routing
71 $(INSTALL_DIR) $(1)/etc/uci-defaults
72 $(INSTALL_BIN) ./files/hnetd.defaults $(1)/etc/uci-defaults/x-hnetd.defaults
73 endef
74
75 define Package/hnet-full/install
76 true
77 endef
78
79 define Package/hnetd/postinst
80 #!/bin/sh
81 [ -n "$${IPKG_INSTROOT}" ] || {
82 (. /etc/uci-defaults/x-hnetd.defaults) && rm -f /etc/uci-defaults/x-hnetd.defaults
83 [ -x /etc/init.d/dnsmasq ] && /etc/init.d/dnsmasq restart
84 /etc/init.d/hnetd enable
85 /etc/init.d/hnetd start
86 }
87 exit 0
88 endef
89
90 $(eval $(call BuildPackage,hnetd))
91 $(eval $(call BuildPackage,hnet-full))