mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
7081e8f1ca
* merge PID support (4+6) * merge correct limit checking (4+6) * merge some OSPF fixes (4+6) * merge BSD P2P masks fix (4) Approved by: az
33 lines
665 B
Makefile
33 lines
665 B
Makefile
# Created by: Pav Lucistnik <pav@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bird6
|
|
PORTVERSION= 1.3.11
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://bird.network.cz/pub/bird/ \
|
|
http://bird.mpls.in/distfiles/bird/
|
|
DISTNAME= bird-${PORTVERSION}
|
|
|
|
MAINTAINER= melifaro@ipfw.ru
|
|
COMMENT= Dynamic IP routing daemon (IPv6 version)
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= bison gmake
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-ipv6 --localstatedir=/var
|
|
USE_CSTD= gnu89
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
USE_RC_SUBR= bird6
|
|
|
|
NO_STAGE= yes
|
|
post-install:
|
|
@if [ ! -f ${PREFIX}/etc/bird6.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/bird6.conf.example ${PREFIX}/etc/bird6.conf ; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|