mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
5db0acfb5c
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. PR: ports/79612 Submitted by: David Cornejo <dave@dogwood.com>
42 lines
721 B
Makefile
42 lines
721 B
Makefile
# New ports collection makefile for: olsrd
|
|
# Date created: 6 April 2005
|
|
# Whom: dave@dogwood.com
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= olsrd
|
|
PORTVERSION= 0.4.9
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.olsr.org/releases/0.4/
|
|
|
|
MAINTAINER= dave@dogwood.com
|
|
COMMENT= OLSR routing daemon
|
|
|
|
BUILD_DEPENDS= makedepend:${PORTSDIR}/devel/makedepend
|
|
|
|
.if defined(WITH_MULTI_IF)
|
|
BUILD_DEPENDS+= libnet-config:${PORTSDIR}/net/libnet-devel
|
|
.endif
|
|
|
|
USE_BISON= yes
|
|
USE_GMAKE= yes
|
|
|
|
MAN8= olsrd.8
|
|
MAN5= olsrd.conf.5
|
|
MANCOMPRESSED= yes
|
|
|
|
.if defined(WITH_MULTI_IF)
|
|
MAKE_ARGS+= OS=fbsd-ll
|
|
.else
|
|
MAKE_ARGS+= OS=fbsd
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 502000
|
|
IGNORE= needs ieee80211.h headers
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|