aboutsummaryrefslogtreecommitdiff
path: root/net/isc-dhcp/Makefile
blob: 48e63da16c133bae955b84bffc97a07c0b97768b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
#
# Copyright (C) 2006-2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=isc-dhcp
UPSTREAM_NAME:=dhcp
PKG_VERSION:=4.3.5
PKG_RELEASE:=2

PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=LICENSE
PKG_MAINTAINER:=Philip Prindeville <philipp@redfish-solutions.com>

PKG_SOURCE:=$(UPSTREAM_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=ftp://ftp.isc.org/isc/dhcp/$(PKG_VERSION) \
		http://ftp.funet.fi/pub/mirrors/ftp.isc.org/isc/dhcp/$(PKG_VERSION) \
		http://ftp.iij.ad.jp/pub/network/isc/dhcp/$(PKG_VERSION)
PKG_MD5SUM:=2b5e5b2fa31c2e27e487039d86f83d3f
PKG_HASH:=eb95936bf15d2393c55dd505bc527d1d4408289cec5a9fa8abb99f7577e7f954

PKG_FIXUP:=autoreconf
PKG_BUILD_PARALLEL:=1

PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(UPSTREAM_NAME)-$(PKG_VERSION)

include $(INCLUDE_DIR)/package.mk

define Package/isc-dhcp/Default
  SECTION:=net
  CATEGORY:=Network
  SUBMENU:=IP Addresses and Names
  TITLE:=ISC's DHCP
  URL:=https://www.isc.org/software/dhcp
endef

define Package/isc-dhcp-relay-ipv4
  $(call Package/isc-dhcp/Default)
  TITLE+= relay (without IPv6)
  VARIANT:=ipv4
endef

define Package/isc-dhcp-relay-ipv6
  $(call Package/isc-dhcp/Default)
  TITLE+= relay (with IPv6)
  VARIANT:=ipv6
endef

define Package/isc-dhcp-relay/description
 provides a means for relaying DHCP and BOOTP requests from a subnet to which
 no DHCP server is directly connected to one or more DHCP servers on other
 subnets.
endef

define Package/isc-dhcp-relay-ipv4/description
$(call Package/isc-dhcp-relay-ipv6/description)
 This package is compiled with IPv4 support only.
endef

define Package/isc-dhcp-relay-ipv4/conffiles
/etc/config/dhcrelay
endef

define Package/isc-dhcp-relay-ipv6/description
$(call Package/isc-dhcp-relay/description)
 This package is compiled with IPv4 and IPv6 support.
endef

define Package/isc-dhcp-relay-ipv6/conffiles
/etc/config/dhcrelay
endef

define Package/isc-dhcp-client-ipv4
  $(call Package/isc-dhcp/Default)
  TITLE+= client (without IPv6)
  VARIANT:=ipv4
endef

define Package/isc-dhcp-client-ipv6
  $(call Package/isc-dhcp/Default)
  TITLE+= client (with IPv6)
  VARIANT:=ipv6
endef

define Package/isc-dhcp-client/description
 provides a means for configuring one or more network interfaces using the
 Dynamic Host Configuration Protocol, BOOTP protocol, or if these protocols
 fail, by statically assigning an address.
endef

define Package/isc-dhcp-client-ipv4/description
$(call Package/isc-dhcp-client/description)
 This package is compiled with IPv4 support only.
endef

define Package/isc-dhcp-client-ipv6/description
$(call Package/isc-dhcp-client/description)
 This package is compiled with IPv4 and IPv6 support.
endef

define Package/isc-dhcp-server-ipv4
  $(call Package/isc-dhcp/Default)
  TITLE+= server (without IPv6)
  VARIANT:=ipv4
endef

define Package/isc-dhcp-server-ipv6
  $(call Package/isc-dhcp/Default)
  TITLE+= server (with IPv6)
  VARIANT:=ipv6
endef

define Package/isc-dhcp-server/description
 implements the Dynamic Host Configuration Protocol (DHCP) and the Internet
 Bootstrap Protocol (BOOTP).
endef

define Package/isc-dhcp-server-ipv4/description
$(call Package/isc-dhcp-server/description)
 This package is compiled with IPv4 support only.
endef

define Package/isc-dhcp-server-ipv6/description
$(call Package/isc-dhcp-server/description)
 This package is compiled with IPv4 and IPv6 support.
endef

define Package/isc-dhcp-omshell-ipv4
  $(call Package/isc-dhcp/Default)
  DEPENDS:= +isc-dhcp-server-ipv4
  TITLE+= omshell (without IPv6)
  VARIANT:=ipv4
endef

define Package/isc-dhcp-omshell-ipv6
  $(call Package/isc-dhcp/Default)
  DEPENDS:= +isc-dhcp-server-ipv6
  TITLE+= omshell (with IPv6)
  VARIANT:=ipv6
endef

define Package/isc-dhcp-omshell/description
 provides an interactive way to connect to, query, and possibly change, the ISC
 DHCP Server's state via OMAPI, the Object Management API.
endef

define Package/isc-dhcp-omshell-ipv4/description
$(call Package/isc-dhcp-omshell/description)
 This package is compiled with IPv4 support only.
endef

define Package/isc-dhcp-omshell-ipv6/description
$(call Package/isc-dhcp-omshell/description)
 This package is compiled with IPv4 and IPv6 support.
endef

CONFIGURE_ARGS += \
	--disable-tracing 		\
	--enable-paranoia		\
	--disable-dependency-tracking	\
	--with-randomdev=/dev/urandom \
	ac_cv_file__dev_random=yes

ifeq ($(BUILD_VARIANT),ipv4)
  CONFIGURE_ARGS += --disable-dhcpv6
endif
ifeq ($(BUILD_VARIANT),ipv6)
  CONFIGURE_ARGS += --enable-dhcpv6
endif

define Build/Compile
	$(MAKE) -C $(PKG_BUILD_DIR)			\
		BUILD_CC="$(HOSTCC_NOCACHE)"		\
		CROSS_CC="$(TARGET_CC)"			\
		host_alias="$(GNU_TARGET_NAME)"		\
		target_alias="$(GNU_TARGET_NAME)"	\
		build_alias="$(GNU_HOST_NAME)"		\
		all
	$(MAKE) -C $(PKG_BUILD_DIR)			\
		DESTDIR="$(PKG_INSTALL_DIR)"		\
		BUILD_CC="$(HOSTCC_NOCACHE)"		\
		CROSS_CC="$(TARGET_CC)"			\
		host_alias="$(GNU_TARGET_NAME)"		\
		target_alias="$(GNU_TARGET_NAME)"	\
		build_alias="$(GNU_HOST_NAME)"		\
		install-exec
endef

define Package/isc-dhcp-relay-$(BUILD_VARIANT)/install
	$(INSTALL_DIR) $(1)/usr/sbin
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/dhcrelay $(1)/usr/sbin
	$(INSTALL_DIR) $(1)/etc/config
	$(INSTALL_DATA) ./files/etc/config/dhcrelay $(1)/etc/config
	$(INSTALL_DIR) $(1)/etc/init.d
	$(INSTALL_BIN) ./files/dhcrelay4.init $(1)/etc/init.d/dhcrelay4
endef

define Package/isc-dhcp-server-$(BUILD_VARIANT)/install
	$(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d $(1)/etc/uci-defaults
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/dhcpd $(1)/usr/sbin
	$(INSTALL_BIN) ./files/dhcpd.init $(1)/etc/init.d/dhcpd
	$(INSTALL_BIN) ./files/dhcpd.defaults $(1)/etc/uci-defaults
ifeq ($(BUILD_VARIANT),ipv6)
	$(INSTALL_BIN) ./files/dhcpd6.init $(1)/etc/init.d/dhcpd6
	$(INSTALL_BIN) ./files/dhcpd6.conf $(1)/etc
endif
endef

define Package/isc-dhcp-server-ipv4/conffiles
/etc/dhcpd.conf
endef

define Package/isc-dhcp-server-ipv6/conffiles
/etc/dhcpd6.conf
endef

define Package/isc-dhcp-client-$(BUILD_VARIANT)/install
	$(INSTALL_DIR) $(1)/usr/sbin $(1)/etc
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/dhclient $(1)/usr/sbin
	$(INSTALL_BIN) ./files/dhclient-script $(1)/usr/sbin/
ifeq ($(BUILD_VARIANT),ipv6)
	$(INSTALL_BIN) ./files/dhclient6.conf $(1)/etc
endif
endef

define Package/isc-dhcp-client-ipv4/conffiles
/etc/dhclient.conf
endef

define Package/isc-dhcp-client-ipv6/conffiles
/etc/dhclient6.conf
endef

define Package/isc-dhcp-omshell-$(BUILD_VARIANT)/install
	$(INSTALL_DIR) $(1)/usr/bin
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/omshell $(1)/usr/bin
endef

$(eval $(call BuildPackage,isc-dhcp-relay-ipv4))
$(eval $(call BuildPackage,isc-dhcp-server-ipv4))
$(eval $(call BuildPackage,isc-dhcp-client-ipv4))
$(eval $(call BuildPackage,isc-dhcp-omshell-ipv4))
$(eval $(call BuildPackage,isc-dhcp-relay-ipv6))
$(eval $(call BuildPackage,isc-dhcp-server-ipv6))
$(eval $(call BuildPackage,isc-dhcp-client-ipv6))
$(eval $(call BuildPackage,isc-dhcp-omshell-ipv6))