2010-05-28 03:27:01 +03:00
|
|
|
#
|
2012-06-17 15:18:39 +03:00
|
|
|
# Copyright (C) 2010-2012 OpenWrt.org
|
2010-05-28 03:27:01 +03: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
|
2012-06-17 15:18:39 +03:00
|
|
|
PKG_VERSION:=11
|
2011-10-17 15:45:07 +03:00
|
|
|
PKG_RELEASE:=1
|
2010-05-28 03:27:01 +03:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/6in4
|
|
|
|
SECTION:=ipv6
|
|
|
|
CATEGORY:=IPv6
|
2012-06-17 16:18:40 +03:00
|
|
|
DEPENDS:=+kmod-ipv6 +kmod-sit
|
2010-05-28 03:27:01 +03:00
|
|
|
TITLE:=IPv6-in-IPv4 configuration support
|
2010-09-30 13:48:37 +03:00
|
|
|
MAINTAINER:=Jo-Philipp Wich <xm@subsignal.org>
|
2010-05-28 03:27:01 +03: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 15:59:07 +03:00
|
|
|
define Package/6in4/install
|
2012-03-19 23:10:04 +02:00
|
|
|
$(INSTALL_DIR) $(1)/lib/netifd/proto
|
|
|
|
$(INSTALL_BIN) ./files/6in4.sh $(1)/lib/netifd/proto/6in4.sh
|
2012-05-29 15:59:07 +03:00
|
|
|
endef
|
2010-05-28 03:27:01 +03:00
|
|
|
|
|
|
|
$(eval $(call BuildPackage,6in4))
|