aboutsummaryrefslogtreecommitdiffstats
path: root/package/ipv6-support/Makefile
blob: efa2fb0fcf09e8c5aa80b6962f444dbee19e02dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#
# Copyright (C) 2010-2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=ipv6-support
PKG_VERSION:=2013-05-23
PKG_RELEASE:=1

include $(INCLUDE_DIR)/package.mk

define Package/ipv6-support
  SECTION:=ipv6
  CATEGORY:=IPv6
  DEPENDS:=+kmod-ipv6 +6relayd +odhcp6c +ip6tables
  TITLE:=Basic IPv6-support for Customer Edge Routers
  MAINTAINER:=Steven Barth <steven@midlink.org>
  PKGARCH:=all
endef

define Package/ipv6-support/description
This package provides basic IPv6 support including Router Discovery,
DHCPv6 (client & server), prefix delegation and distribution.
endef

define Build/Compile
endef

define Build/Configure
endef

define Package/ipv6-support/postinst
#!/bin/sh
[ -n "$${IPKG_INSTROOT}" ] || /etc/init.d/ipv6-boot start || true
[ -n "$${IPKG_INSTROOT}" ] || /etc/uci-defaults/10_network-enable-ipv6 || true
[ -n "$${IPKG_INSTROOT}" ] || rm -f /etc/uci-defaults/10_network-enable-ipv6 || true
endef

define Package/ipv6-support/install
	$(INSTALL_DIR) $(1)/etc/uci-defaults
	$(INSTALL_DIR) $(1)/etc/init.d
	$(INSTALL_BIN) ./files/network-enable-ipv6.defaults $(1)/etc/uci-defaults/10_network-enable-ipv6
	$(INSTALL_BIN) ./files/ipv6-boot $(1)/etc/init.d/ipv6-boot
endef

$(eval $(call BuildPackage,ipv6-support))