From 93b1bc36e28f512f9f0786297006f8d134bd9107 Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Mon, 3 Sep 2007 14:14:58 +0000 Subject: [PATCH] add babel (another Ad-Hoc network routing daemon) SVN-Revision: 8595 --- ipv6/babel/Makefile | 54 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 ipv6/babel/Makefile diff --git a/ipv6/babel/Makefile b/ipv6/babel/Makefile new file mode 100644 index 000000000..dce8e32b6 --- /dev/null +++ b/ipv6/babel/Makefile @@ -0,0 +1,54 @@ +# +# Copyright (C) 2007 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=babel +PKG_VERSION:=0.2 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://www.pps.jussieu.fr/~jch/software/files/ +PKG_MD5SUM:=6d626b414fac86c11e6f57e52bdedb9b + +include $(INCLUDE_DIR)/package.mk + +define Package/babel + SECTION:=ipv6 + CATEGORY:=IPv6 + TITLE:=Ad-Hoc network routing daemon + URL:=http://www.pps.jussieu.fr/~jch/software/ahcp/ + DEPENDS:=+kmod-ipv6 +endef + +define Package/babel/description + Babel is a loop-avoiding distance-vector routing protocol roughly based + on DSDV and AODV, but with provisions for link cost estimation and + redistribution of routes from other routing protocols. + While it is optimised for wireless mesh networks, Babel will also work + efficiently on wired networks. It will generate between roughly the same + and double the amount of routing traffic that RIPng would generate, while + never counting to infinity. +endef + +define Build/Configure +endef + +define Build/Compile + $(MAKE) -C $(PKG_BUILD_DIR) \ + CC="$(TARGET_CC)" \ + CFLAGS="$(TARGET_CFLAGS)" \ + all +endef + +define Package/babel/install + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/babel $(1)/usr/sbin/ +endef + +$(eval $(call BuildPackage,babel)) -- 2.30.2