diff options
author | andreas <andreas@FreeBSD.org> | 1999-06-26 12:01:35 +0000 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1999-06-26 12:01:35 +0000 |
commit | 11b6c125388e23765f4247e5102f2cb59c4e7fea (patch) | |
tree | 3973dc6d2d008790b37de9d671dff3be9c23f778 /net/bb | |
parent | 9cec24e405a7d53608b061e2e6196bb1e563afe5 (diff) | |
download | FreeBSD-ports-11b6c125388e23765f4247e5102f2cb59c4e7fea.zip FreeBSD-ports-11b6c125388e23765f4247e5102f2cb59c4e7fea.tar.gz |
Upgrade zebra to 0.70.
0.70 is a bugfix release to 0.69
from the announcement on the zebra mailinglist:
I've just fixed critical bug of zebra's routing information base
calculation which introduced in zebra-0.69. ospfd bugs which causes
core dump are also fixed. Configuration search path bug is fixed by
NAGUCHI kay. RIPng in filter bug is fixed by itojun.
* Changes in zebra-0.70
* Changes in zebra
** Critical routing information base calculation bug check is fixed.
** zebra ipv4 message is extended to support external/internal route flavor.
** Now if internal route doesn't has direct connected nexthop, then nexthop
is calculated by looking up IGP routing table.
* Changes in bgpd
** `neighbor PEER update-source IFNAME' command added as ALIAS to
`neighbor PEER interface IFNAME'.
* Changes in ospfd
** DD null pointer bug is fixed.
Diffstat (limited to 'net/bb')
-rw-r--r-- | net/bb/Makefile | 72 | ||||
-rw-r--r-- | net/bb/distinfo | 2 | ||||
-rw-r--r-- | net/bb/pkg-comment | 2 |
3 files changed, 7 insertions, 69 deletions
diff --git a/net/bb/Makefile b/net/bb/Makefile index 29749b8..d9788f4 100644 --- a/net/bb/Makefile +++ b/net/bb/Makefile @@ -3,10 +3,10 @@ # Date created: So 17 Nov 1996 16:59:23 MET # Whom: Andreas Klemm <andreas@klemm.gtn.com> # -# $Id: Makefile,v 1.29 1998/09/22 17:22:12 asami Exp $ +# $Id: Makefile,v 1.30 1998/10/10 04:11:25 steve Exp $ # -DISTNAME= bb-1.08a +DISTNAME= bb-1.2a CATEGORIES= net MASTER_SITES= http://maclawran.ca/~sean/bb-dnld/ \ http://freefall.freebsd.org/~andreas/download/ @@ -32,68 +32,10 @@ post-configure: @${CP} ${FILESDIR}/Makefile ${WRKSRC} do-install: - @${MKDIR} ${PREFIX}/www/cgi-bin - @${MKDIR} ${PREFIX}/www/data - @${MKDIR} ${PREFIX}/bb/bin - @${MKDIR} ${PREFIX}/bb/etc - @${MKDIR} ${PREFIX}/bb/web - @${MKDIR} ${PREFIX}/bb/www/gifs - @${MKDIR} ${PREFIX}/bb/www/logs - @${MKDIR} ${PREFIX}/bb/www/notes - @${MKDIR} ${PREFIX}/bb/tmp - @${MKDIR} ${PREFIX}/share/doc/bb - @${TOUCH} ${PREFIX}/bb/tmp/.keep_me - ${INSTALL_SCRIPT} ${WRKSRC}/runbb.sh \ - ${PREFIX}/bb - ${INSTALL_DATA} ${WRKSRC}/README \ - ${PREFIX}/bb/README -.for file in bb-local.sh bb-network.sh bb-page.sh sendmsg - ${INSTALL_SCRIPT} ${WRKSRC}/bin/$(file) \ - ${PREFIX}/bb/bin -.endfor -.for file in bb bbd bbnet touchtime - ${INSTALL_PROGRAM} ${WRKSRC}/bin/$(file) \ - ${PREFIX}/bb/bin -.endfor -.for file in FAQ README README.SMS STRUCTURE bbclient bbconfig - ${INSTALL_DATA} ${WRKSRC}/doc/$(file) \ - ${PREFIX}/share/doc/bb -.endfor -.for file in bb-hosts bbdef.sh bbinc.sh bbsys.aix bbsys.freebsd bbsys.hpux \ - bbsys.hpux9 bbsys.irix bbsys.linux bbsys.local bbsys.netbsd \ - bbsys.osf bbsys.redhat bbsys.sco bbsys.sco3 bbsys.sh \ - bbsys.solaris bbsys.sunos bbsys.ultrix bbsys.unixware \ - numeric.scr security.INFO sms.scr - ${INSTALL_DATA} ${WRKSRC}/etc/$(file) \ - ${PREFIX}/bb/etc -.endfor -.for file in mkbb.bkg mkbb.cols mkbb.comp mkbb.sh mkbb2.sh - ${INSTALL_SCRIPT} ${WRKSRC}/web/$(file) \ - ${PREFIX}/bb/web -.endfor -.for file in bb-faq.html bb-help.html bb-info.html bb-page.html - ${INSTALL_DATA} ${WRKSRC}/www/$(file) \ - ${PREFIX}/bb/www -.endfor - ${INSTALL_SCRIPT} ${WRKSRC}/www/bb-pager.sh \ - ${PREFIX}/www/cgi-bin/bb-pager.sh -.for file in bb-diag.gif bb.gif bb2.gif bbbut.gif bkg-green.gif \ - bkg-purple.gif bkg-red.gif bkg-yellow.gif blue.gif \ - buthelp.gif butinfo.gif butpage.gif butview.gif clear.gif \ - green.gif nb-bbbut.gif nb-red.gif nb-yellow.gif purple.gif \ - red.gif yellow.gif - ${INSTALL_DATA} ${WRKSRC}/www/gifs/$(file) \ - ${PREFIX}/bb/www/gifs -.endfor - ${INSTALL_DATA} ${WRKSRC}/www/logs/later \ - ${PREFIX}/bb/www/logs/later -.for file in README footer iti-s01 iti-s01.html iti-s01.iti.qc.ca \ - iti-s01.iti.qc.ca.html router-000.htm - ${INSTALL_DATA} ${WRKSRC}/www/notes/$(file) \ - ${PREFIX}/bb/www/notes -.endfor - @${LN} -fs ${PREFIX}/bb/www ${PREFIX}/www/data/bb + cd ${WRKDIR}; tar cf - bb | ( cd ${PREFIX}; tar xpf - ) + @${LN} -fs ${PREFIX}/bb/www ${PREFIX}/share/apache/htdocs/bb @${LN} -fs bb.html ${PREFIX}/bb/www/index.html + mv -f ${PREFIX}/bb/doc ${PREFIX}/share/doc/bb @echo "" @echo "================================================================" @echo "==== Configuration Notes: ===" @@ -115,9 +57,5 @@ do-install: @echo "and watching your systems status by viewing this URL with" @echo "Netscape or another WWW browser" @echo " http://localhost/bb" - @echo "" - @echo "Look here for a life sample:" - @echo " http://maclawran.ca/bb/bb.html" - @echo "" .include <bsd.port.mk> diff --git a/net/bb/distinfo b/net/bb/distinfo index 3916df6..98bdbe4 100644 --- a/net/bb/distinfo +++ b/net/bb/distinfo @@ -1 +1 @@ -MD5 (bb-1.08a.tar.gz) = 7a50f180800af26e455e70a5470e4edb +MD5 (bb-1.2a.tar.gz) = 59d36875647c2cfcd3bee93510732be1 diff --git a/net/bb/pkg-comment b/net/bb/pkg-comment index a28d69e..619a4e8 100644 --- a/net/bb/pkg-comment +++ b/net/bb/pkg-comment @@ -1 +1 @@ -big brother Unix Network Monitor +Monitoring and Notofocation for Systems and Networks |