fc36d0f1521bf583a23594e79497bcb79fad0210
[openwrt/svn-archive/archive.git] / package / 6to4 / Makefile
1 #
2 # Copyright (C) 2010-2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=6to4
11 PKG_VERSION:=8
12 PKG_RELEASE:=1
13
14 include $(INCLUDE_DIR)/package.mk
15
16 define Package/6to4
17 SECTION:=ipv6
18 CATEGORY:=IPv6
19 DEPENDS:=+ip +kmod-ipv6 +kmod-sit
20 TITLE:=IPv6-to-IPv4 configuration support
21 MAINTAINER:=Jo-Philipp Wich <xm@subsignal.org>
22 PKGARCH:=all
23 endef
24
25 define Package/6to4/description
26 Provides support for 6to4 tunnels in /etc/config/network.
27 Refer to http://wiki.openwrt.org/doc/uci/network for
28 configuration details.
29 endef
30
31 define Build/Compile
32 endef
33
34 define Build/Configure
35 endef
36
37 ifneq ($(CONFIG_PACKAGE_netifd),)
38 define Package/6to4/install
39 $(INSTALL_DIR) $(1)/lib/netifd/proto
40 $(INSTALL_BIN) ./files/6to4.sh $(1)/lib/netifd/proto/6to4.sh
41 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
42 $(INSTALL_DATA) ./files/6to4.hotplug $(1)/etc/hotplug.d/iface/91-6to4
43 endef
44 else
45 define Package/6to4/install
46 $(INSTALL_DIR) $(1)/lib/network
47 $(INSTALL_DATA) ./files.old/6to4.sh $(1)/lib/network/6to4.sh
48 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
49 $(INSTALL_DATA) ./files.old/6to4.hotplug $(1)/etc/hotplug.d/iface/91-6to4
50 endef
51 endif
52
53 $(eval $(call BuildPackage,6to4))