X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/7ff55e66a5f759cabb1e1b85e02979ec03e85bc2..f80d70ea2134ecf98f3056325cd7cfbfac6a4c58:/package/arptables/Makefile

diff --git a/package/arptables/Makefile b/package/arptables/Makefile
index b4bfe18a7..1b7a53729 100644
--- a/package/arptables/Makefile
+++ b/package/arptables/Makefile
@@ -1,23 +1,20 @@
-# Copyright (C) 2006 OpenWrt.org
+# Copyright (C) 2006-2010 OpenWrt.org
 #
 # 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-4
 PKG_RELEASE:=1
-PKG_MD5SUM:=1672244603c8979577aa4738be35a759
 
-PKG_SOURCE_URL:=@SF/ebtables
 PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
-PKG_CAT:=zcat
+PKG_SOURCE_URL:=@SF/ebtables
+PKG_MD5SUM:=1d4ab05761f063b0751645d8f2b8f8e5
 
 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-v$(PKG_VERSION)
-PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
 
 include $(INCLUDE_DIR)/package.mk
 
@@ -25,21 +22,19 @@ define Package/arptables
   SECTION:=net
   CATEGORY:=Network
   TITLE:=ARP firewalling software
-  DESCRIPTION:=ARP firewalling software
+  DEPENDS:=+kmod-arptables
   URL:=http://ebtables.sourceforge.net
 endef
 
 define Build/Compile
-	rm -rf $(PKG_INSTALL_DIR)
-	mkdir -p $(PKG_INSTALL_DIR)
 	$(MAKE) -C $(PKG_BUILD_DIR) \
-		CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld \
+		$(TARGET_CONFIGURE_OPTS) \
 		COPT_FLAGS="$(TARGET_CFLAGS)" \
 		KERNEL_DIR="./include/linux"
 endef
 
 define Package/arptables/install
-	install -m0755 -d $(1)/usr/sbin
+	$(INSTALL_DIR) $(1)/usr/sbin
 	$(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
 endef