freebsd-ports/net/bird/Makefile
Pav Lucistnik 7e5d5230b6 - Update to 1.3.1
- Add optional patches (to ipv4 port) to enable multiple fibs support, and to
  enable a simultaneous operation with other routing software
- Sign over a maintainership to an enthusiastic user

PR:		ports/157001
Submitted by:	Alexander V. Chernikov <melifaro@ipfw.ru>
2011-06-02 19:52:40 +00:00

42 lines
852 B
Makefile

# New ports collection makefile for: bird
# Date created: 12th May 2005
# Whom: Pav Lucistnik <pav@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= bird
PORTVERSION= 1.3.1
CATEGORIES= net
MASTER_SITES= ftp://bird.network.cz/pub/bird/
MAINTAINER= melifaro@ipfw.ru
COMMENT= Dynamic IP routing daemon (IPv4 version)
USE_BISON= build
USE_GMAKE= yes
GNU_CONFIGURE= yes
OPTIONS= FIBS "Enable multiple fib support" Off \
LEARN_FIX "Support multiple routing daemons" Off
MAKE_JOBS_UNSAFE= yes
USE_RC_SUBR= bird
.include <bsd.port.pre.mk>
.if defined(WITH_FIBS)
EXTRA_PATCHES+= ${FILESDIR}/fibs.diff
.endif
.if defined(WITH_LEARN_FIX)
EXTRA_PATCHES+= ${FILESDIR}/learn-krt-sock.c
.endif
post-install:
@if [ ! -f ${PREFIX}/etc/bird.conf ]; then \
${CP} -p ${PREFIX}/etc/bird.conf.example ${PREFIX}/etc/bird.conf ; \
fi
.include <bsd.port.post.mk>