2006-06-27 08:35:46 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# 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
|
|
|
# $Id$
|
|
|
|
|
2005-03-06 11:34:52 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2005-03-06 11:53:29 +08:00
|
|
|
PKG_NAME:=dnsmasq
|
2008-11-29 02:20:19 +08:00
|
|
|
PKG_VERSION:=2.46
|
2005-10-20 21:52:02 +08:00
|
|
|
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
|
2008-11-29 02:20:19 +08:00
|
|
|
PKG_MD5SUM:=79ec740d1a10ee75f13efa4ff36d0250
|
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
|
|
|
|
2006-05-10 07:19:52 +08:00
|
|
|
define Package/dnsmasq
|
2006-09-23 21:41:42 +08:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Base system
|
|
|
|
TITLE:=A lightweight DNS and DHCP server
|
|
|
|
URL:=http://www.thekelleys.org.uk/dnsmasq/
|
2006-05-10 07:19:52 +08:00
|
|
|
endef
|
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define Package/dnsmasq/description
|
|
|
|
It is intended to provide coupled DNS and DHCP service to a LAN.
|
|
|
|
endef
|
|
|
|
|
2009-02-04 06:27:44 +08:00
|
|
|
define Package/dnsmasq/conffiles
|
|
|
|
/etc/config/dhcp
|
|
|
|
endef
|
|
|
|
|
2006-06-19 02:27:23 +08:00
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2006-08-04 13:30:27 +08:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2006-09-04 02:11:10 +08:00
|
|
|
CFLAGS="$(TARGET_CFLAGS) -DHAVE_ISC_READER=1" \
|
2006-06-19 02:27:23 +08:00
|
|
|
BINDIR="/usr/sbin" MANDIR="/usr/man" \
|
2008-04-01 05:17:45 +08:00
|
|
|
AWK="awk" \
|
2006-06-19 02:27:23 +08:00
|
|
|
all
|
|
|
|
endef
|
|
|
|
|
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
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/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
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/dnsmasq.init $(1)/etc/init.d/dnsmasq
|
2006-05-10 07:19:52 +08:00
|
|
|
endef
|
2005-05-13 03:41:18 +08:00
|
|
|
|
2006-05-10 07:19:52 +08:00
|
|
|
$(eval $(call BuildPackage,dnsmasq))
|