From: Felix Fietkau Date: Wed, 20 Apr 2005 18:14:29 +0000 (+0000) Subject: add olsrd X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=8090b5e04566571697ce30e76e42b05f70ba60f0 add olsrd SVN-Revision: 689 --- diff --git a/openwrt/package/Config.in b/openwrt/package/Config.in index d1a626922e..0437e05d28 100644 --- a/openwrt/package/Config.in +++ b/openwrt/package/Config.in @@ -48,6 +48,7 @@ source "package/openswan/Config.in" source "package/shfs/Config.in" source "package/asterisk/Config.in" source "package/snort/Config.in" +source "package/olsrd/Config.in" comment "Libraries" source "package/libgcc/Config.in" diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile index 4008d434cb..2042c5737d 100644 --- a/openwrt/package/Makefile +++ b/openwrt/package/Makefile @@ -35,6 +35,7 @@ package-$(BR2_PACKAGE_NCURSES) += ncurses package-$(BR2_PACKAGE_NFSD) += nfs-server package-$(BR2_PACKAGE_NOCATSPLASH) += nocatsplash package-$(BR2_PACKAGE_NTPCLIENT) += ntpclient +package-$(BR2_PACKAGE_OLSRD) += olsrd package-$(BR2_PACKAGE_OPENSSL) += openssl package-$(BR2_PACKAGE_OPENSWAN) += openswan package-$(BR2_PACKAGE_OPENNTPD) += openntpd diff --git a/openwrt/package/olsrd/Config.in b/openwrt/package/olsrd/Config.in new file mode 100644 index 0000000000..e598c2c89b --- /dev/null +++ b/openwrt/package/olsrd/Config.in @@ -0,0 +1,5 @@ +config BR2_PACKAGE_OLSRD + tristate "olsrd" + default m if CONFIG_DEVEL + help + The Optimized Link State Routing daemon diff --git a/openwrt/package/olsrd/Makefile b/openwrt/package/olsrd/Makefile new file mode 100644 index 0000000000..9317d55022 --- /dev/null +++ b/openwrt/package/olsrd/Makefile @@ -0,0 +1,60 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=olsrd +PKG_VERSION:=0.4.9 +PKG_RELEASE:=1 +PKG_MD5SUM:=593c0861fa10d2a8d0e7d8617479c5cf + +PKG_SOURCE_URL:=http://www.olsr.org/releases/0.4 +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_CAT:=bzcat +PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk +PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg + +$(DL_DIR)/$(PKG_SOURCE): + $(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL) + +$(PKG_BUILD_DIR)/.unpacked: $(DL_DIR)/$(PKG_SOURCE) + $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - + touch $(PKG_BUILD_DIR)/.unpacked + +$(PKG_BUILD_DIR)/$(PKG_NAME): $(PKG_BUILD_DIR)/.unpacked + $(MAKE) -C "$(PKG_BUILD_DIR)" \ + OS="linux" \ + CC="$(TARGET_CC)" \ + CFLAGS="$(TARGET_CFLAGS) -DOLSR_PLUGIN -I. -Isrc -Dlinux -I../../src -DNODEBUG" \ + libs + $(MAKE) -C "$(PKG_BUILD_DIR)" \ + OS="linux" \ + CC="$(TARGET_CC)" \ + CFLAGS="$(TARGET_CFLAGS) -I. -Isrc -Dlinux -I../../src -DNODEBUG" \ + all + +$(PKG_IPK): $(PKG_BUILD_DIR)/$(PKG_NAME) + $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) + mkdir -p $(PKG_IPK_DIR)/usr/sbin + mkdir -p $(PKG_IPK_DIR)/usr/lib + cp $(PKG_BUILD_DIR)/$(PKG_NAME) $(PKG_IPK_DIR)/usr/sbin/ + cp $(PKG_BUILD_DIR)/lib/dyn_gw/olsrd_dyn_gw.so.0.3 $(PKG_IPK_DIR)/usr/lib/ + cp $(PKG_BUILD_DIR)/lib/nameservice/olsrd_nameservice.so.0.2 $(PKG_IPK_DIR)/usr/lib/ + cp $(PKG_BUILD_DIR)/lib/httpinfo/olsrd_httpinfo.so.0.1 $(PKG_IPK_DIR)/usr/lib/ + cp $(PKG_BUILD_DIR)/lib/secure/olsrd_secure.so.0.5 $(PKG_IPK_DIR)/usr/lib/ + $(STRIP) $(PKG_IPK_DIR)/usr/sbin/* + $(STRIP) $(PKG_IPK_DIR)/usr/lib/* + mkdir -p $(PACKAGE_DIR) + $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) + +$(IPKG_STATE_DIR)/info/$(PKG_NAME).list: $(PKG_IPK) + $(IPKG) install $(PKG_IPK) + +source: $(DL_DIR)/$(PKG_SOURCE) +prepare: $(PKG_BUILD_DIR)/.unpacked +compile: $(PKG_IPK) +install: $(IPKG_STATE_DIR)/info/$(PKG_NAME).list + +clean: + rm -rf $(PKG_BUILD_DIR) + rm -f $(PKG_IPK) diff --git a/openwrt/package/olsrd/olsrd.control b/openwrt/package/olsrd/olsrd.control new file mode 100644 index 0000000000..0d2a2bc149 --- /dev/null +++ b/openwrt/package/olsrd/olsrd.control @@ -0,0 +1,10 @@ +Package: olsrd +Priority: optional +Section: net +Maintainer: Felix Fietkau +Source: buildroot internal +Description: The olsr.org OLSR daemon + olsrd is an implementation of the Optimized Link State Routing protocol. + OLSR is a routing protocol for mobile ad-hoc networks. The protocol is + pro-active, table driven and utilizes a technique called multipoint + relaying for message flooding.