2010-11-15 01:51:16 +02:00
|
|
|
#
|
2012-04-23 13:12:00 +03:00
|
|
|
# Copyright (C) 2010-2012 OpenWrt.org
|
2010-11-15 01:51:16 +02:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=6to4
|
2012-06-17 16:17:39 +03:00
|
|
|
PKG_VERSION:=9
|
2011-07-17 18:43:18 +03:00
|
|
|
PKG_RELEASE:=1
|
2010-11-15 01:51:16 +02:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/6to4
|
|
|
|
SECTION:=ipv6
|
|
|
|
CATEGORY:=IPv6
|
2012-06-17 16:18:40 +03:00
|
|
|
DEPENDS:=+kmod-ipv6 +kmod-sit
|
2010-11-15 01:51:16 +02:00
|
|
|
TITLE:=IPv6-to-IPv4 configuration support
|
|
|
|
MAINTAINER:=Jo-Philipp Wich <xm@subsignal.org>
|
|
|
|
PKGARCH:=all
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/6to4/description
|
|
|
|
Provides support for 6to4 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 15:59:15 +03:00
|
|
|
define Package/6to4/install
|
2012-03-15 11:49:33 +02:00
|
|
|
$(INSTALL_DIR) $(1)/lib/netifd/proto
|
|
|
|
$(INSTALL_BIN) ./files/6to4.sh $(1)/lib/netifd/proto/6to4.sh
|
2012-05-29 15:59:15 +03:00
|
|
|
endef
|
2010-11-15 01:51:16 +02:00
|
|
|
|
|
|
|
$(eval $(call BuildPackage,6to4))
|