2010-05-28 08:27:01 +08:00
|
|
|
#
|
2014-05-29 17:22:52 +08:00
|
|
|
# Copyright (C) 2010-2014 OpenWrt.org
|
2010-05-28 08:27:01 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=6in4
|
2014-05-29 17:22:52 +08:00
|
|
|
PKG_VERSION:=16
|
2011-10-17 20:45:07 +08:00
|
|
|
PKG_RELEASE:=1
|
2010-05-28 08:27:01 +08:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/6in4
|
2013-05-14 23:02:31 +08:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2012-06-17 21:18:40 +08:00
|
|
|
DEPENDS:=+kmod-ipv6 +kmod-sit
|
2010-05-28 08:27:01 +08:00
|
|
|
TITLE:=IPv6-in-IPv4 configuration support
|
2010-09-30 18:48:37 +08:00
|
|
|
MAINTAINER:=Jo-Philipp Wich <xm@subsignal.org>
|
2010-05-28 08:27:01 +08:00
|
|
|
PKGARCH:=all
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/6in4/description
|
|
|
|
Provides support for 6in4 tunnels in /etc/config/network.
|
|
|
|
Refer to http://wiki.openwrt.org/doc/uci/network for
|
|
|
|
configuration details.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
2012-05-29 20:59:07 +08:00
|
|
|
define Package/6in4/install
|
2012-03-20 05:10:04 +08:00
|
|
|
$(INSTALL_DIR) $(1)/lib/netifd/proto
|
|
|
|
$(INSTALL_BIN) ./files/6in4.sh $(1)/lib/netifd/proto/6in4.sh
|
2012-05-29 20:59:07 +08:00
|
|
|
endef
|
2010-05-28 08:27:01 +08:00
|
|
|
|
|
|
|
$(eval $(call BuildPackage,6in4))
|