X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/f77b88d124ea1c900f9cf5e04046939aad48bbe1..521e989c55c47e8c6b7b7cf2735718dc7f4e36a7:/package/arptables/Makefile diff --git a/package/arptables/Makefile b/package/arptables/Makefile index d6af30f33..be6cd8792 100644 --- a/package/arptables/Makefile +++ b/package/arptables/Makefile @@ -1,43 +1,42 @@ -############################################################# +# Copyright (C) 2006 OpenWrt.org # -# arptables +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. # -############################################################# +# $Id$ + include $(TOPDIR)/rules.mk PKG_NAME:=arptables -PKG_VERSION:=0.0.3 +PKG_VERSION:=0.0.3-2 PKG_RELEASE:=1 -PKG_SOURCE_URL:=http://umn.dl.sourceforge.net/sourceforge/ebtables/ + PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=@SF/ebtables +PKG_MD5SUM:=283d19292bd99913dc3a42842826c286 + PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-v$(PKG_VERSION) -PKG_CAT:=zcat -PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk -PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg -$(DL_DIR)/$(PKG_SOURCE): - $(WGET) -P $(DL_DIR) $(PKG_SOURCE_URL)/$(PKG_SOURCE) +include $(INCLUDE_DIR)/package.mk -$(PKG_BUILD_DIR)/.unpacked: $(DL_DIR)/$(PKG_SOURCE) - $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - - touch $(PKG_BUILD_DIR)/.unpacked +define Package/arptables + SECTION:=net + CATEGORY:=Network + TITLE:=ARP firewalling software + DEPENDS:=+kmod-arptables + URL:=http://ebtables.sourceforge.net +endef -$(PKG_BUILD_DIR)/arptables: $(PKG_BUILD_DIR)/.unpacked +define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ - CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld \ - CFLAGS="$(TARGET_CFLAGS) -Wall -I$(PKG_BUILD_DIR)/include/linux/include -I$(PKG_BUILD_DIR)/include -DARPTABLES_VERSION=\\\"$(PKG_VERSION)\\\" " - -$(PKG_IPK): $(PKG_BUILD_DIR)/arptables - $(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)/arptables $(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)/.unpacked -compile: $(PKG_IPK) -install: - $(IPKG) install $(PKG_IPK) -clean: - rm -rf $(PKG_BUILD_DIR) + $(TARGET_CONFIGURE_OPTS) \ + COPT_FLAGS="$(TARGET_CFLAGS)" \ + KERNEL_DIR="./include/linux" +endef + +define Package/arptables/install + $(INSTALL_DIR) $(1)/usr/sbin + $(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/ +endef + +$(eval $(call BuildPackage,arptables))