2011-02-19 08:50:15 +00:00
|
|
|
#
|
2012-03-23 11:26:47 +00:00
|
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-03-21 08:12:49 +00:00
|
|
|
|
2005-03-06 03:34:52 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2005-03-06 03:53:29 +00:00
|
|
|
PKG_NAME:=dnsmasq
|
2012-07-17 11:48:27 +00:00
|
|
|
PKG_VERSION:=2.62
|
2012-08-22 09:14:42 +00:00
|
|
|
PKG_RELEASE:=2
|
2005-03-21 08:12:49 +00:00
|
|
|
|
2006-05-09 23:19:52 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq
|
2012-07-17 11:48:27 +00:00
|
|
|
PKG_MD5SUM:=f47e5cb8f5bac6343f24b2dbe317ab40
|
|
|
|
|
2012-10-19 15:34:28 +00:00
|
|
|
PKG_LICENSE:=GPLv2
|
|
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
|
2012-07-17 11:48:27 +00:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
|
2011-11-25 00:53:13 +00:00
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
2012-09-15 11:36:58 +00:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
2005-03-06 03:34:52 +00:00
|
|
|
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-03-06 03:53:29 +00:00
|
|
|
|
2012-07-17 11:48:27 +00:00
|
|
|
define Package/dnsmasq/Default
|
2006-09-23 13:41:42 +00:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Base system
|
|
|
|
TITLE:=A lightweight DNS and DHCP server
|
|
|
|
URL:=http://www.thekelleys.org.uk/dnsmasq/
|
2006-05-09 23:19:52 +00:00
|
|
|
endef
|
|
|
|
|
2012-07-17 11:48:27 +00: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
|
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define Package/dnsmasq/description
|
2011-09-30 12:55:23 +00:00
|
|
|
It is intended to provide coupled DNS and DHCP service to a LAN.
|
2007-09-07 08:34:51 +00:00
|
|
|
endef
|
|
|
|
|
2012-07-17 11:48:27 +00:00
|
|
|
define Package/dnsmasq-dhcpv6/description
|
|
|
|
$(call Package/dnsmasq/description)
|
|
|
|
|
|
|
|
This is a variant with DHCPv6 support
|
|
|
|
endef
|
|
|
|
|
2009-02-03 22:27:44 +00:00
|
|
|
define Package/dnsmasq/conffiles
|
|
|
|
/etc/config/dhcp
|
2009-09-21 13:25:11 +00:00
|
|
|
/etc/dnsmasq.conf
|
2009-02-03 22:27:44 +00:00
|
|
|
endef
|
|
|
|
|
2012-07-17 11:48:27 +00:00
|
|
|
Package/dnsmasq-dhcpv6/conffiles = $(Package/dnsmasq/conffiles)
|
|
|
|
|
2012-01-18 19:00:53 +00:00
|
|
|
TARGET_CFLAGS += \
|
|
|
|
-ffunction-sections -fdata-sections \
|
|
|
|
$(if $(CONFIG_IPV6),,-DNO_IPV6)
|
2011-03-02 12:47:57 +00:00
|
|
|
|
2012-07-17 11:48:27 +00:00
|
|
|
ifeq ($(BUILD_VARIANT),nodhcpv6)
|
|
|
|
TARGET_CFLAGS += -DNO_DHCP6
|
|
|
|
endif
|
|
|
|
|
2011-11-25 00:53:13 +00:00
|
|
|
MAKE_FLAGS := \
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
LDFLAGS="-Wl,--gc-sections" \
|
|
|
|
PREFIX="/usr"
|
2006-06-18 18:27:23 +00:00
|
|
|
|
2006-05-09 23:19:52 +00:00
|
|
|
define Package/dnsmasq/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2011-11-25 00:53:13 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/dnsmasq $(1)/usr/sbin/
|
2007-03-17 13:31:13 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
|
|
$(INSTALL_DATA) ./files/dhcp.conf $(1)/etc/config/dhcp
|
2009-09-21 13:25:11 +00:00
|
|
|
$(INSTALL_DATA) ./files/dnsmasq.conf $(1)/etc/dnsmasq.conf
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/dnsmasq.init $(1)/etc/init.d/dnsmasq
|
2006-05-09 23:19:52 +00:00
|
|
|
endef
|
2005-05-12 19:41:18 +00:00
|
|
|
|
2012-07-17 11:48:27 +00:00
|
|
|
Package/dnsmasq-dhcpv6/install = $(Package/dnsmasq/install)
|
|
|
|
|
2006-05-09 23:19:52 +00:00
|
|
|
$(eval $(call BuildPackage,dnsmasq))
|
2012-07-17 11:48:27 +00:00
|
|
|
$(eval $(call BuildPackage,dnsmasq-dhcpv6))
|