diff options
author | Mike Baker <mbm@openwrt.org> | 2005-03-06 03:53:29 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2005-03-06 03:53:29 +0000 |
commit | b3be5eeb3e588bcba2191bd04504a68aeba9e834 (patch) | |
tree | 274deffea4eff7519a6519e05cc459c11ce3b514 /openwrt/package/dnsmasq/Makefile | |
parent | 6b93231c4f64a61103dfc16acebedd18b4c25171 (diff) | |
download | mtk-20170518-b3be5eeb3e588bcba2191bd04504a68aeba9e834.zip mtk-20170518-b3be5eeb3e588bcba2191bd04504a68aeba9e834.tar.gz mtk-20170518-b3be5eeb3e588bcba2191bd04504a68aeba9e834.tar.bz2 |
bring up to date with nbd's br2_test20.tar.bz2
SVN-Revision: 308
Diffstat (limited to 'openwrt/package/dnsmasq/Makefile')
-rw-r--r-- | openwrt/package/dnsmasq/Makefile | 48 |
1 files changed, 42 insertions, 6 deletions
diff --git a/openwrt/package/dnsmasq/Makefile b/openwrt/package/dnsmasq/Makefile index cd4cae4..3b6acb4 100644 --- a/openwrt/package/dnsmasq/Makefile +++ b/openwrt/package/dnsmasq/Makefile @@ -1,9 +1,45 @@ +############################################################# +# +# ebtables +# +############################################################# include $(TOPDIR)/rules.mk -include ./dnsmasq.mk +PKG_NAME:=dnsmasq +PKG_VERSION:=2.15 +PKG_RELEASE:=1 +PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_CAT:=zcat +PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk +PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg -source: dnsmasq-source -prepare: $(DNSMASQ_DIR)/.unpacked -compile: $(DNSMASQ_DIR)/src/dnsmasq -install: dnsmasq -clean: dnsmasq-dirclean +$(DL_DIR)/$(PKG_SOURCE): + $(WGET) -P $(DL_DIR) $(PKG_SOURCE_URL)/$(PKG_SOURCE) + +$(PKG_BUILD_DIR)/.patched: $(DL_DIR)/$(PKG_SOURCE) + $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - + $(PATCH) $(PKG_BUILD_DIR) ./patches + touch $(PKG_BUILD_DIR)/.patched + +$(PKG_BUILD_DIR)/src/$(PKG_NAME): $(PKG_BUILD_DIR)/.patched + $(MAKE) CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS)" \ + BINDIR=/usr/sbin MANDIR=/usr/man -C $(PKG_BUILD_DIR) + +$(PKG_IPK): $(PKG_BUILD_DIR)/src/$(PKG_NAME) + $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) + mkdir -p $(PKG_IPK_DIR)/usr/sbin + cp $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(PKG_IPK_DIR)/usr/sbin/ + $(STRIP) $(PKG_IPK_DIR)/usr/sbin/* + mkdir -p $(PACKAGE_DIR) + $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) + +source: $(DL_DIR)/$(PKG_SOURCE) +prepare: $(PKG_BUILD_DIR)/.patched +compile: $(PKG_IPK) +install: + $(IPKG) install $(PKG_IPK) +clean: + rm -rf $(PKG_BUILD_DIR) + rm -f $(PKG_IPK) |