2011-02-19 16:50:15 +08:00
|
|
|
#
|
2013-01-02 23:14:19 +08:00
|
|
|
# Copyright (C) 2006-2013 OpenWrt.org
|
2006-06-27 08:35:46 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-03-21 16:12:49 +08:00
|
|
|
|
2005-03-06 11:34:52 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2005-03-06 11:53:29 +08:00
|
|
|
PKG_NAME:=dnsmasq
|
2014-09-26 16:57:36 +08:00
|
|
|
PKG_VERSION:=2.72
|
|
|
|
PKG_RELEASE:=1
|
2005-03-21 16:12:49 +08:00
|
|
|
|
2006-05-10 07:19:52 +08:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq
|
2014-09-26 16:57:36 +08:00
|
|
|
PKG_MD5SUM:=cf82f81cf09ad3d47612985012240483
|
2012-07-17 19:48:27 +08:00
|
|
|
|
2014-11-03 17:56:44 +08:00
|
|
|
PKG_LICENSE:=GPL-2.0
|
|
|
|
PKG_LICENSE_FILES:=COPYING
|
2012-10-19 23:34:28 +08:00
|
|
|
|
2012-07-17 19:48:27 +08:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
|
2011-11-25 08:53:13 +08:00
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
2012-09-15 19:36:58 +08:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
2005-03-06 11:34:52 +08:00
|
|
|
|
2006-06-21 10:32:39 +08:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-03-06 11:53:29 +08:00
|
|
|
|
2012-07-17 19:48:27 +08:00
|
|
|
define Package/dnsmasq/Default
|
2006-09-23 21:41:42 +08:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Base system
|
2014-06-18 18:04:34 +08:00
|
|
|
TITLE:=DNS and DHCP server
|
2006-09-23 21:41:42 +08:00
|
|
|
URL:=http://www.thekelleys.org.uk/dnsmasq/
|
2006-05-10 07:19:52 +08:00
|
|
|
endef
|
|
|
|
|
2012-07-17 19:48:27 +08:00
|
|
|
define Package/dnsmasq
|
|
|
|
$(call Package/dnsmasq/Default)
|
|
|
|
VARIANT:=nodhcpv6
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/dnsmasq-dhcpv6
|
|
|
|
$(call Package/dnsmasq/Default)
|
|
|
|
TITLE += (with DHCPv6 support)
|
|
|
|
DEPENDS:=@IPV6 +kmod-ipv6
|
|
|
|
VARIANT:=dhcpv6
|
|
|
|
endef
|
|
|
|
|
2014-06-18 18:04:25 +08:00
|
|
|
define Package/dnsmasq-full
|
|
|
|
$(call Package/dnsmasq/Default)
|
2014-06-18 18:04:34 +08:00
|
|
|
TITLE += (with DNSSEC, DHCPv6, Auth DNS, IPSET)
|
2014-06-18 18:04:25 +08:00
|
|
|
DEPENDS:=@IPV6 +kmod-ipv6 +libnettle
|
|
|
|
VARIANT:=full
|
|
|
|
endef
|
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define Package/dnsmasq/description
|
2011-09-30 20:55:23 +08:00
|
|
|
It is intended to provide coupled DNS and DHCP service to a LAN.
|
2007-09-07 16:34:51 +08:00
|
|
|
endef
|
|
|
|
|
2012-07-17 19:48:27 +08:00
|
|
|
define Package/dnsmasq-dhcpv6/description
|
|
|
|
$(call Package/dnsmasq/description)
|
|
|
|
|
|
|
|
This is a variant with DHCPv6 support
|
|
|
|
endef
|
|
|
|
|
2014-06-18 18:04:25 +08:00
|
|
|
define Package/dnsmasq-full/description
|
|
|
|
$(call Package/dnsmasq/description)
|
|
|
|
|
2014-06-18 18:04:34 +08:00
|
|
|
This is a variant with DHCPv6, DNSSEC, Authroitative DNS and IPSET support
|
2014-06-18 18:04:25 +08:00
|
|
|
endef
|
|
|
|
|
2009-02-04 06:27:44 +08:00
|
|
|
define Package/dnsmasq/conffiles
|
|
|
|
/etc/config/dhcp
|
2009-09-21 21:25:11 +08:00
|
|
|
/etc/dnsmasq.conf
|
2009-02-04 06:27:44 +08:00
|
|
|
endef
|
|
|
|
|
2012-07-17 19:48:27 +08:00
|
|
|
Package/dnsmasq-dhcpv6/conffiles = $(Package/dnsmasq/conffiles)
|
2014-06-18 18:04:25 +08:00
|
|
|
Package/dnsmasq-full/conffiles = $(Package/dnsmasq/conffiles)
|
2012-07-17 19:48:27 +08:00
|
|
|
|
2014-06-18 18:04:02 +08:00
|
|
|
TARGET_CFLAGS += -ffunction-sections -fdata-sections
|
2014-06-18 18:04:17 +08:00
|
|
|
TARGET_LDFLAGS += -Wl,--gc-sections
|
2014-06-18 18:04:02 +08:00
|
|
|
|
2014-06-18 18:04:34 +08:00
|
|
|
COPTS = $(if $(CONFIG_IPV6),,-DNO_IPV6)
|
2011-03-02 20:47:57 +08:00
|
|
|
|
2012-07-17 19:48:27 +08:00
|
|
|
ifeq ($(BUILD_VARIANT),nodhcpv6)
|
2014-06-18 18:04:02 +08:00
|
|
|
COPTS += -DNO_DHCP6
|
2012-07-17 19:48:27 +08:00
|
|
|
endif
|
|
|
|
|
2014-06-18 18:04:25 +08:00
|
|
|
ifeq ($(BUILD_VARIANT),full)
|
|
|
|
COPTS += -DHAVE_DNSSEC
|
|
|
|
COPTS += $(if $(CONFIG_LIBNETTLE_MINI),-DNO_GMP,)
|
2014-06-18 18:04:34 +08:00
|
|
|
else
|
|
|
|
COPTS += -DNO_AUTH -DNO_IPSET
|
2014-06-18 18:04:25 +08:00
|
|
|
endif
|
|
|
|
|
2011-11-25 08:53:13 +08:00
|
|
|
MAKE_FLAGS := \
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
2014-06-18 18:04:17 +08:00
|
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
2014-06-18 18:04:02 +08:00
|
|
|
COPTS="$(COPTS)" \
|
2011-11-25 08:53:13 +08:00
|
|
|
PREFIX="/usr"
|
2006-06-19 02:27:23 +08:00
|
|
|
|
2006-05-10 07:19:52 +08:00
|
|
|
define Package/dnsmasq/install
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2011-11-25 08:53:13 +08:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/dnsmasq $(1)/usr/sbin/
|
2007-03-17 21:31:13 +08:00
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
|
|
$(INSTALL_DATA) ./files/dhcp.conf $(1)/etc/config/dhcp
|
2009-09-21 21:25:11 +08:00
|
|
|
$(INSTALL_DATA) ./files/dnsmasq.conf $(1)/etc/dnsmasq.conf
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/dnsmasq.init $(1)/etc/init.d/dnsmasq
|
2013-12-21 21:31:28 +08:00
|
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
|
|
|
|
$(INSTALL_DATA) ./files/dnsmasq.hotplug $(1)/etc/hotplug.d/iface/25-dnsmasq
|
2006-05-10 07:19:52 +08:00
|
|
|
endef
|
2005-05-13 03:41:18 +08:00
|
|
|
|
2012-07-17 19:48:27 +08:00
|
|
|
Package/dnsmasq-dhcpv6/install = $(Package/dnsmasq/install)
|
|
|
|
|
2014-06-18 18:04:25 +08:00
|
|
|
define Package/dnsmasq-full/install
|
|
|
|
$(call Package/dnsmasq/install,$(1))
|
|
|
|
$(INSTALL_DIR) $(1)/usr/share/dnsmasq
|
|
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/trust-anchors.conf $(1)/usr/share/dnsmasq
|
|
|
|
endef
|
|
|
|
|
2006-05-10 07:19:52 +08:00
|
|
|
$(eval $(call BuildPackage,dnsmasq))
|
2012-07-17 19:48:27 +08:00
|
|
|
$(eval $(call BuildPackage,dnsmasq-dhcpv6))
|
2014-06-18 18:04:25 +08:00
|
|
|
$(eval $(call BuildPackage,dnsmasq-full))
|