1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-23 01:19:19 +03:00
openwrt-xburst/package/network/ipv6/6relayd/Makefile
cyrus d3309f03fc ipv6: add 6relayd (RD-, DHCPv6- & NDP-Proxy)
6relayd is an IPv6-tool that relays IPv6-management protocols like router
discovery, neighbor discovery and DHCPv6 so that clients on routed
(non-bridged) interfaces can use the public address prefix, DHCPv6 and
DNS-service of a master interface. This is useful to avoid NAT in chained
IPv6-routers.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34008 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-10-30 07:14:07 +00:00

49 lines
1.4 KiB
Makefile

#
# Copyright (C) 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:=6relayd
PKG_VERSION:=2012-10-29
PKG_RELEASE=$(PKG_SOURCE_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE_URL:=git://nbd.name/6relayd.git
PKG_SOURCE_PROTO:=git
PKG_SOURCE_VERSION:=1e86a847a9aa2c31e6871b657c4d241a4650e290
PKG_MAINTAINER:=Steven Barth <steven@midlink.org>
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/cmake.mk
define Package/6relayd
SECTION:=ipv6
CATEGORY:=IPv6
TITLE:=IPv6-Relay (RD-, DHCPv6- & NDP-Proxy)
DEPENDS:=+kmod-ipv6
endef
define Package/6relayd/description
6relayd is an IPv6-tool that relays IPv6-management protocols like router
discovery, neighbor discovery and DHCPv6 so that clients on routed (non-
bridged) interfaces can use the public address prefix, DHCPv6 and DNS-service
of a master interface. This is useful to avoid NAT in chained IPv6-routers.
endef
define Package/6relayd/install
$(INSTALL_DIR) $(1)/usr/sbin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/6relayd $(1)/usr/sbin/
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
$(INSTALL_DATA) ./files/6relayd.hotplug $(1)/etc/hotplug.d/iface/30-6relay
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/6relayd.init $(1)/etc/init.d/6relayd
endef
$(eval $(call BuildPackage,6relayd))