mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
11b250a50b
added manpage entries in Makefile Highlights: o OSPF neighbor is supported. o IPv6 inteface's address information propagation bug is fixed. o BGP's various MED comparison methods are added. o BGP read lock problem is fixed. Release / contribution information (I think its maybe of interest concerning the status of zebra): From: Kunihiro Ishiguro <kunihiro@zebra.org> Date: Mon, 02 Oct 2000 19:46:41 -0700 I've not yet merged below contributions as of zebra-0.89: o OSPF Demand Circuits K N Sridhar <sridhar@euler.ece.iisc.ernet.in> o Kerberos 4, Kerberos 5 auth and DES CFB64 encryption. Magnus Ahltorp <ahltorp@nada.kth.se> These will be merged as soon as possible. o PIM-SM Robert.Olsson@data.slu.se Jens.Laas@data.slu.se Will be added after zebra-1.0 release.
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
# New ports collection makefile for: zebra
|
|
# Date created: So 31 Mai 1998 11:00:30 CEST
|
|
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= zebra
|
|
PORTVERSION= 0.89
|
|
CATEGORIES= net ipv6
|
|
MASTER_SITES= ftp://ftp.zebra.org/pub/zebra/
|
|
# you might need debugging, it's a developer release !
|
|
#CFLAGS+= -g
|
|
|
|
MAINTAINER= andreas@FreeBSD.org
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--sysconfdir=${PREFIX}/etc/zebra
|
|
|
|
MAN1= vtysh.1
|
|
MAN8= bgpd.8 ospf6d.8 ospfd.8 ripd.8 ripngd.8 zebra.8
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} >= 400014
|
|
PLIST:= ${WRKDIR}/PLIST
|
|
pre-install:
|
|
@${CAT} ${PKGDIR}/PLIST.v6 > ${PLIST}
|
|
@${CAT} ${PKGDIR}/PLIST >> ${PLIST}
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-ospf6d --disable-ripngd
|
|
.endif
|
|
|
|
post-install:
|
|
@${ECHO} "===> installing zebra startup file..."
|
|
@${SED} -e "s=!!PREFIX!!=${PREFIX}=" \
|
|
< ${FILESDIR}/zebractl.sh \
|
|
> ${PREFIX}/sbin/zebractl
|
|
@${CHMOD} 555 ${PREFIX}/sbin/zebractl
|
|
@${ECHO} "Make these entries in /etc/rc.conf to start zebra:"
|
|
@${ECHO} "defaultrouter=\"NO\""
|
|
@${ECHO} "router_enable=\"YES\""
|
|
@${ECHO} "router=\"${PREFIX}/sbin/zebractl\""
|
|
@${ECHO} "router_flags=\"start\""
|
|
@${ECHO} "done."
|
|
|
|
.include <bsd.port.post.mk>
|