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