2006-06-27 03:35:46 +03: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 10:12:49 +02:00
|
|
|
# $Id$
|
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2005-03-06 05:53:29 +02:00
|
|
|
PKG_NAME:=dnsmasq
|
2007-07-12 16:58:25 +03:00
|
|
|
PKG_VERSION:=2.39
|
2005-10-20 16:52:02 +03:00
|
|
|
PKG_RELEASE:=1
|
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
|
2007-07-12 16:58:25 +03:00
|
|
|
PKG_MD5SUM:=1ffccc1f0d9b8a08f2b99e03ba9cc08b
|
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
|
|
|
|
|
2006-06-18 21:27:23 +03:00
|
|
|
define Package/dnsmasq/conffiles
|
|
|
|
/etc/dnsmasq.conf
|
|
|
|
endef
|
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define Package/dnsmasq/description
|
|
|
|
It is intended to provide coupled DNS and DHCP service to a LAN.
|
|
|
|
endef
|
|
|
|
|
2006-06-18 21:27:23 +03:00
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2006-08-04 08:30:27 +03:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2006-09-03 21:11:10 +03:00
|
|
|
CFLAGS="$(TARGET_CFLAGS) -DHAVE_ISC_READER=1" \
|
2006-06-18 21:27:23 +03:00
|
|
|
BINDIR="/usr/sbin" MANDIR="/usr/man" \
|
|
|
|
all
|
|
|
|
endef
|
|
|
|
|
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
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/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
|
2006-11-23 02:29:07 +02:00
|
|
|
$(INSTALL_DATA) ./files/dnsmasq.conf $(1)/etc/dnsmasq.conf
|
|
|
|
$(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))
|