X-Git-Url: http://git.openwrt.org/?p=feed%2Frouting.git;a=blobdiff_plain;f=nat46%2FMakefile;h=65b92c2dd08101611fe20b8db944c58f0159790a;hp=6f5a7e372a7cdeff010f43c48f8c404f09dd8ea2;hb=4e0fa4f572fbb925fc5d6d8b759202a7f024a14e;hpb=e291dcb7c382306e2d38378fbcce5b7f12c0f648 diff --git a/nat46/Makefile b/nat46/Makefile index 6f5a7e3..65b92c2 100644 --- a/nat46/Makefile +++ b/nat46/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2014 OpenWrt.org +# Copyright (C) 2014-2015 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,15 +9,16 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=nat46 -PKG_VERSION:=1 +PKG_VERSION:=6 PKG_RELEASE:=$(PKG_SOURCE_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE_URL:=https://github.com/ayourtch/nat46.git PKG_SOURCE_PROTO:=git -PKG_SOURCE_VERSION:=758a02e6f9e4c43553e0fc37d83c286c77febe94 +PKG_SOURCE_VERSION:=8ff2ae59ec9840a7b8b45f976c51cae80abe0226 PKG_MAINTAINER:=Steven Barth +PKG_LICENSE:=GPL-2.0 include $(INCLUDE_DIR)/package.mk @@ -28,6 +29,13 @@ define Package/map-t TITLE:=MAP-T configuration support endef +define Package/464xlat + SECTION:=net + CATEGORY:=Network + DEPENDS:=+kmod-nat46 + TITLE:=464xlat CLAT support +endef + define KernelPackage/nat46 DEPENDS:=+kmod-ipv6 TITLE:=Stateless NAT46 translation kernel module @@ -39,9 +47,19 @@ endef include $(INCLUDE_DIR)/kernel-defaults.mk +define Build/Prepare + $(call Build/Prepare/Default) + $(CP) ./src/* $(PKG_BUILD_DIR)/ +endef + define Build/Compile + $(MAKE) -C $(PKG_BUILD_DIR) \ + CC="$(TARGET_CC)" \ + CFLAGS="$(TARGET_CFLAGS) -Wall" \ + LDFLAGS="$(TARGET_LDFLAGS)" $(MAKE) $(KERNEL_MAKEOPTS) SUBDIRS="$(PKG_BUILD_DIR)/nat46/modules" \ MODFLAGS="-DMODULE -mlong-calls" \ + EXTRA_CFLAGS="-DNAT46_VERSION=\\\"$(PKG_SOURCE_VERSION)\\\"" \ modules endef @@ -49,5 +67,13 @@ define Package/map-t/install true endef +define Package/464xlat/install + $(INSTALL_DIR) $(1)/lib/netifd/proto + $(INSTALL_BIN) ./files/464xlat.sh $(1)/lib/netifd/proto/464xlat.sh + $(INSTALL_DIR) $(1)/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/464xlatcfg $(1)/sbin +endef + $(eval $(call KernelPackage,nat46)) $(eval $(call BuildPackage,map-t)) +$(eval $(call BuildPackage,464xlat))