mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-11 20:26:36 +00:00
ports: remove abandoned ports subdirectory
This subdirectory is outdated in all possible ways. Remove it. FRR already has a FreeBSD port and it's maintained separately. Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
This commit is contained in:
parent
3c7940063b
commit
13b5e99ce4
@ -207,7 +207,6 @@ EXTRA_DIST += \
|
|||||||
ospfd/Makefile \
|
ospfd/Makefile \
|
||||||
pbrd/Makefile \
|
pbrd/Makefile \
|
||||||
pimd/Makefile \
|
pimd/Makefile \
|
||||||
ports/Makefile \
|
|
||||||
qpb/Makefile \
|
qpb/Makefile \
|
||||||
ripd/Makefile \
|
ripd/Makefile \
|
||||||
ripngd/Makefile \
|
ripngd/Makefile \
|
||||||
|
@ -1,59 +0,0 @@
|
|||||||
# New ports collection makefile for: zebra
|
|
||||||
# Version required: 2.1.5
|
|
||||||
# Date created: 28 Feb 1998
|
|
||||||
# Whom: seirios@matrix.iri.co.jp
|
|
||||||
#
|
|
||||||
|
|
||||||
#DISTNAME= zebra-980224
|
|
||||||
DISTNAME= zebra-current
|
|
||||||
PKGNAME= zebra
|
|
||||||
CATEGORIES= net
|
|
||||||
MASTER_SITES= ftp://ftp.zebra.org/pub/zebra/
|
|
||||||
|
|
||||||
MAINTAINER= seirios@matrix.iri.co.jp
|
|
||||||
|
|
||||||
WRKSRC= ${WRKDIR}/zebra-current
|
|
||||||
|
|
||||||
#### Under constructing, We cannot support md5
|
|
||||||
NO_CHECKSUM= yes
|
|
||||||
|
|
||||||
do-build:
|
|
||||||
@(cd ${WRKSRC}; sh ./configure; make)
|
|
||||||
|
|
||||||
post-install:
|
|
||||||
@if [ ! -f ${PREFIX}/etc/rc.d/zebra.sh ]; then \
|
|
||||||
echo "Installing ${PREFIX}/etc/rc.d/zebra.sh startup file."; \
|
|
||||||
echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo "# zebra" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo "if [ -x /usr/local/sbin/zebra -a ! -f /var/run/zebra.pid -a -f /usr/local/etc/zebra.conf ]; then" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo " /usr/local/sbin/zebra -d -f /usr/local/etc/zebra.conf" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo " echo -n ' zebra'" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo "fi" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo "# bgpd" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo "if [ -x /usr/local/sbin/bgpd -a ! -f /var/run/bgpd.pid -a -f /usr/local/etc/bgpd.conf ]; then" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo " /usr/local/sbin/bgpd -d -f /usr/local/etc/bgpd.conf" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo " echo -n ' bgpd'" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo "fi" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo "# ripd" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo "if [ -x /usr/local/sbin/ripd -a ! -f /var/run/ripd.pid -a -f /usr/local/etc/ripd.conf ]; then" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo " /usr/local/sbin/ripd -d -f /usr/local/etc/ripd.conf" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo " echo -n ' ripd'" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo "fi" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo "# ripngd" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo "if [ -x /usr/local/sbin/ripngd -a ! -f /var/run/ripd.pid -a -f /usr/local/etc/ripd.conf ]; then" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo " /usr/local/sbin/ripngd -d -f /usr/local/etc/ripd.conf" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo " echo -n ' ripngd'" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
echo "fi" >> ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
chmod 751 ${PREFIX}/etc/rc.d/zebra.sh; \
|
|
||||||
fi
|
|
||||||
@echo "If you will access zebra,bgpd,ripd,ripngd with telnet,";
|
|
||||||
@echo "then you add some line (written under this line) to /etc/services";
|
|
||||||
@echo " zebrasrv 2600/tcp # zebra service";
|
|
||||||
@echo " zebra 2601/tcp # zebra vty";
|
|
||||||
@echo " ripd 2602/tcp # RIPd vty";
|
|
||||||
@echo " ripngd 2603/tcp # RIPngd vty";
|
|
||||||
@echo " ospfd 2604/tcp # OSPFd vty";
|
|
||||||
@echo " bgpd 2605/tcp # BGPd vty";
|
|
||||||
@echo " pimd 2611/tcp # PIMd vty";
|
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
|
@ -1 +0,0 @@
|
|||||||
This directory contain files for making FreeBSD package.
|
|
@ -1 +0,0 @@
|
|||||||
MD5 (zebra-980224.tar.gz) = c6887645741200c43341156c168c7034
|
|
@ -1 +0,0 @@
|
|||||||
Zebra Routing protocol daemon
|
|
@ -1,76 +0,0 @@
|
|||||||
=============
|
|
||||||
WHAT IS ZEBRA
|
|
||||||
=============
|
|
||||||
Zebra is a free software that manages TCP/IP based routing protocol.
|
|
||||||
It takes multi-server and multi-thread approach to resolve the current
|
|
||||||
complexity of the Internet.
|
|
||||||
|
|
||||||
Currently zebra is still under development, so If you want to use zebra,
|
|
||||||
I strongly recommend you to get the latest version of zebra.
|
|
||||||
Zebra snapshot is released on every monday.
|
|
||||||
|
|
||||||
===================
|
|
||||||
SUPPORTED Protocols
|
|
||||||
===================
|
|
||||||
Zebra supports both IPv4 and IPv6 :-)
|
|
||||||
For supporting IPv4 Routing protocols is here
|
|
||||||
RIP (both version1 and version2)
|
|
||||||
RIPv2 supports both Multicast and Broadcast
|
|
||||||
BGP (only support BGP4)
|
|
||||||
|
|
||||||
For supporting IPv6 Routing protocols is here
|
|
||||||
RIPng
|
|
||||||
BGP4+
|
|
||||||
|
|
||||||
===================
|
|
||||||
Supported plat-home
|
|
||||||
===================
|
|
||||||
Now zebra is testing on
|
|
||||||
o FreeBSD 2.2.8
|
|
||||||
-- without IPv6 ;-)
|
|
||||||
-- with KAME
|
|
||||||
-- with INRIA IPv6 protocol stack.
|
|
||||||
|
|
||||||
o GNU/Linux 2.2.2
|
|
||||||
o GNU/Linux 2.0.36
|
|
||||||
|
|
||||||
===========
|
|
||||||
ZEBRA Ports
|
|
||||||
===========
|
|
||||||
Each daemon has each own terminal interface. Also zebra has communication
|
|
||||||
port which provides several services to other daemons. Below is zebra ports
|
|
||||||
list.
|
|
||||||
|
|
||||||
zebrasrv 2600/tcp # zebra service
|
|
||||||
zebra 2601/tcp # zebra vty
|
|
||||||
ripd 2602/tcp # RIPd vty
|
|
||||||
ripngd 2603/tcp # RIPngd vty
|
|
||||||
ospfd 2604/tcp # OSPFd vty
|
|
||||||
bgpd 2605/tcp # BGPd vty
|
|
||||||
pimd 2611/tcp # PIMd vty
|
|
||||||
|
|
||||||
I recommend you to add upper list to /etc/services.
|
|
||||||
|
|
||||||
====================
|
|
||||||
For More Information
|
|
||||||
====================
|
|
||||||
Web page is located at:
|
|
||||||
http://www.zebra.org/
|
|
||||||
|
|
||||||
Alpha version source file can be found at:
|
|
||||||
ftp://ftp.zebra.org/pub/zebra/
|
|
||||||
|
|
||||||
Mailing List is here
|
|
||||||
zebra@zebra.org
|
|
||||||
zebra-jp@zebra.org
|
|
||||||
|
|
||||||
If you want to join zebra mailing list, mail to
|
|
||||||
majordomo@zebra.org
|
|
||||||
and you write
|
|
||||||
subscribe zebra
|
|
||||||
-- if you want to talk with English
|
|
||||||
subscribe zebra-jp
|
|
||||||
-- if you want to talk with Japanese
|
|
||||||
on Mail BODY (Not Subject).
|
|
||||||
|
|
||||||
Enjoy.
|
|
@ -1,8 +0,0 @@
|
|||||||
sbin/zebra
|
|
||||||
sbin/bgpd
|
|
||||||
sbin/ripd
|
|
||||||
etc/bgpd.conf.sample
|
|
||||||
etc/ripd.conf.sample
|
|
||||||
etc/zebra.conf.sample
|
|
||||||
etc/rc.d/zebra.sh
|
|
||||||
info/zebra.info
|
|
Loading…
Reference in New Issue
Block a user