64c03d1d2eaf9e4e826f3d9c618eb28e928cdaad
[openwrt/svn-archive/archive.git] / ipv6 / wide-dhcpv6 / Makefile
1
2 include $(TOPDIR)/rules.mk
3
4 PKG_NAME:=wide-dhcpv6
5 PKG_VERSION:=20080615
6 PKG_RELEASE:=4
7
8 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
9 PKG_SOURCE_URL:=@SF/$(PKG_NAME)
10 PKG_MD5SUM:=1011e165850fe40d3e332dad2bfd30b3
11
12 include $(INCLUDE_DIR)/package.mk
13
14 define Package/wide-dhcpv6/Default
15 SECTION:=ipv6
16 CATEGORY:=IPv6
17 TITLE:=WIDE-DHCPv6
18 SUBMENU:=wide-dhcpv6
19 DEPENDS:=+kmod-ipv6
20 URL:=https://sourceforge.net/projects/wide-dhcpv6/
21 MAINTAINER:=Andrew Byrne <openwrt@andy.id.au>
22 endef
23
24 define Package/wide-dhcpv6-client
25 $(call Package/wide-dhcpv6/Default)
26 TITLE+= client
27 endef
28
29 define Package/wide-dhcpv6-client/description
30 WIDE-DHCPv6 is an open-source implementation of Dynamic Host Configuration Protocol
31 for IPv6 (DHCPv6) originally developed by the KAME project. The implementation
32 mainly conforms to the following standards: RFC3315,3319,3633,3646,4075,4272,etc.
33
34 This package installs the client component.
35 endef
36
37 define Package/wide-dhcpv6-server
38 $(call Package/wide-dhcpv6/Default)
39 TITLE+= server
40 endef
41
42 define Package/wide-dhcpv6-server/description
43 WIDE-DHCPv6 is an open-source implementation of Dynamic Host Configuration Protocol
44 for IPv6 (DHCPv6) originally developed by the KAME project. The implementation
45 mainly conforms to the following standards: RFC3315,3319,3633,3646,4075,4272,etc.
46
47 This package installs the server component.
48 endef
49
50 define Package/wide-dhcpv6-relay
51 $(call Package/wide-dhcpv6/Default)
52 TITLE+= relay
53 endef
54
55 define Package/wide-dhcpv6-relay/description
56 WIDE-DHCPv6 is an open-source implementation of Dynamic Host Configuration Protocol
57 for IPv6 (DHCPv6) originally developed by the KAME project. The implementation
58 mainly conforms to the following standards: RFC3315,3319,3633,3646,4075,4272,etc.
59
60 This package installs the relay component.
61 endef
62
63 define Package/wide-dhcpv6-control
64 $(call Package/wide-dhcpv6/Default)
65 TITLE+= client and server control utility
66 endef
67
68 define Package/wide-dhcpv6-control/description
69 WIDE-DHCPv6 is an open-source implementation of Dynamic Host Configuration Protocol
70 for IPv6 (DHCPv6) originally developed by the KAME project. The implementation
71 mainly conforms to the following standards: RFC3315,3319,3633,3646,4075,4272,etc.
72
73 This package installs the client and server control utility.
74 endef
75
76 define Build/Configure
77 $(call Build/Configure/Default,--with-localdbdir=/var)
78 endef
79
80 define Build/Compile
81 $(MAKE) -C $(PKG_BUILD_DIR) \
82 DESTDIR="$(PKG_INSTALL_DIR)" \
83 all
84 endef
85
86 define Package/wide-dhcpv6-client/conffiles
87 /etc/config/dhcp6c
88 endef
89
90 define Package/wide-dhcpv6-client/install
91 $(INSTALL_DIR) $(1)/usr/sbin
92 $(INSTALL_BIN) $(PKG_BUILD_DIR)/dhcp6c $(1)/usr/sbin
93 $(INSTALL_DIR) $(1)/etc/config
94 $(INSTALL_CONF) ./files/dhcp6c.conf $(1)/etc/config/dhcp6c
95 $(INSTALL_DIR) $(1)/etc/init.d
96 $(INSTALL_BIN) ./files/dhcp6c.init $(1)/etc/init.d/dhcp6c
97 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
98 $(INSTALL_DATA) ./files/dhcp6c.hotplug $(1)/etc/hotplug.d/iface/40-dhcp6c
99 $(INSTALL_DIR) $(1)/etc/hotplug.d/dhcp6c
100 $(INSTALL_DATA) ./files/dhcp6c-dnsmasq.hotplug $(1)/etc/hotplug.d/dhcp6c/10-dnsmasq
101 $(INSTALL_DATA) ./files/dhcp6c-radvd.hotplug $(1)/etc/hotplug.d/dhcp6c/20-radvd
102 $(INSTALL_DIR) $(1)/usr/bin
103 $(INSTALL_BIN) ./files/dhcp6c-state $(1)/usr/bin/dhcp6c-state
104 endef
105
106 define Package/wide-dhcpv6-server/conffiles
107 /etc/config/dhcp6s
108 endef
109
110 define Package/wide-dhcpv6-server/install
111 $(INSTALL_DIR) $(1)/usr/sbin
112 $(INSTALL_BIN) $(PKG_BUILD_DIR)/dhcp6s $(1)/usr/sbin
113 $(INSTALL_DIR) $(1)/etc
114 $(INSTALL_CONF) $(PKG_BUILD_DIR)/dhcp6s.conf.sample $(1)/etc
115 $(INSTALL_DIR) $(1)/etc/config
116 $(INSTALL_CONF) ./files/dhcp6s.conf $(1)/etc/config/dhcp6s
117 $(INSTALL_DIR) $(1)/etc/init.d
118 $(INSTALL_BIN) ./files/dhcp6s.init $(1)/etc/init.d/dhcp6s
119 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
120 $(INSTALL_DATA) ./files/dhcp6s.hotplug $(1)/etc/hotplug.d/iface/50-dhcp6s
121 endef
122
123 define Package/wide-dhcpv6-relay/install
124 $(INSTALL_DIR) $(1)/usr/sbin
125 $(INSTALL_BIN) $(PKG_BUILD_DIR)/dhcp6relay $(1)/usr/sbin
126 endef
127
128 define Package/wide-dhcpv6-control/install
129 $(INSTALL_DIR) $(1)/usr/sbin
130 $(INSTALL_BIN) $(PKG_BUILD_DIR)/dhcp6ctl $(1)/usr/sbin
131 endef
132
133 $(eval $(call BuildPackage,wide-dhcpv6-client))
134 $(eval $(call BuildPackage,wide-dhcpv6-server))
135 $(eval $(call BuildPackage,wide-dhcpv6-relay))
136 $(eval $(call BuildPackage,wide-dhcpv6-control))