2012-10-30 07:14:07 +00:00
|
|
|
#
|
|
|
|
# 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
|
2012-11-16 09:27:56 +00:00
|
|
|
PKG_VERSION:=2012-11-16
|
2012-10-30 07:14:07 +00:00
|
|
|
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
|
2012-11-16 09:27:56 +00:00
|
|
|
PKG_SOURCE_VERSION:=f0fec4df02e3310de134e46e9826dbeedb86119a
|
2012-10-30 07:14:07 +00:00
|
|
|
|
|
|
|
PKG_MAINTAINER:=Steven Barth <steven@midlink.org>
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
|
|
|
|
define Package/6relayd
|
|
|
|
SECTION:=ipv6
|
|
|
|
CATEGORY:=IPv6
|
2012-11-16 09:27:56 +00:00
|
|
|
TITLE:=IPv6-Relay and Server (RD-, DHCPv6- & NDP-Proxy)
|
2012-10-30 07:14:07 +00:00
|
|
|
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.
|
2012-11-16 09:27:56 +00:00
|
|
|
|
|
|
|
It can also be used as a lightweight router advertisement daemon and provide
|
|
|
|
stateless DHCPv6 service where size matters.
|
2012-10-30 07:14:07 +00:00
|
|
|
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
|
2012-11-16 09:27:56 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
|
|
$(INSTALL_DATA) ./files/6relayd.config $(1)/etc/config/6relayd
|
2012-10-30 07:14:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/6relayd.init $(1)/etc/init.d/6relayd
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,6relayd))
|