summaryrefslogtreecommitdiff
path: root/net/zebra-pj
diff options
context:
space:
mode:
Diffstat (limited to 'net/zebra-pj')
-rw-r--r--net/zebra-pj/Makefile44
-rw-r--r--net/zebra-pj/distinfo1
-rw-r--r--net/zebra-pj/files/zebractl.sh51
-rw-r--r--net/zebra-pj/pkg-comment1
-rw-r--r--net/zebra-pj/pkg-descr15
-rw-r--r--net/zebra-pj/pkg-plist15
-rw-r--r--net/zebra-pj/pkg-plist.v64
7 files changed, 0 insertions, 131 deletions
diff --git a/net/zebra-pj/Makefile b/net/zebra-pj/Makefile
deleted file mode 100644
index 40664d910805..000000000000
--- a/net/zebra-pj/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-# 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.86
-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
-
-.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>
diff --git a/net/zebra-pj/distinfo b/net/zebra-pj/distinfo
deleted file mode 100644
index af8001960820..000000000000
--- a/net/zebra-pj/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (zebra-0.86.tar.gz) = 139ef0c70339788cfaee4acfa1945562
diff --git a/net/zebra-pj/files/zebractl.sh b/net/zebra-pj/files/zebractl.sh
deleted file mode 100644
index 7df63067bf3f..000000000000
--- a/net/zebra-pj/files/zebractl.sh
+++ /dev/null
@@ -1,51 +0,0 @@
-#! /bin/sh
-#
-# $FreeBSD: /tmp/pcvs/ports/net/zebra-pj/files/Attic/zebractl.sh,v 1.1 1999-12-24 15:56:31 andreas Exp $
-#
-# zebra start/stop script by "Andreas Klemm <andreas@FreeBSD.ORG>"
-#
-
-usage()
-{
- echo "$0: usage: $0 [ start | stop ]"
- exit 1
-}
-
-if [ $# -lt 1 ]; then
- echo "$0: error: one argument needed"; usage
-elif [ $# -gt 1 ]; then
- echo "$0: error: only one argument needed"; usage
-fi
-
-case $1 in
- start)
- [ -f !!PREFIX!!/etc/zebra/zebra.conf ] && ( \
- !!PREFIX!!/sbin/zebra > /dev/null 2>&1 & \
- echo -n ' zebra' )
- [ -f !!PREFIX!!/etc/zebra/ripd.conf ] && ( \
- !!PREFIX!!/sbin/ripd > /dev/null 2>&1 & \
- echo -n ' ripd' )
- [ -f !!PREFIX!!/etc/zebra/ospfd.conf ] && ( \
- !!PREFIX!!/sbin/ospfd > /dev/null 2>&1 & \
- echo -n ' ospfd' )
- [ -f !!PREFIX!!/etc/zebra/bgpd.conf ] && ( \
- !!PREFIX!!/sbin/bgpd > /dev/null 2>&1 & \
- echo -n ' bgpd' )
- ;;
-
- stop)
- [ -f !!PREFIX!!/etc/zebra/ripd.conf ] && killall ripd
- [ -f !!PREFIX!!/etc/zebra/ospfd.conf ] && killall ospfd
- [ -f !!PREFIX!!/etc/zebra/bgpd.conf ] && killall bgpd
- [ -f !!PREFIX!!/etc/zebra/zebra.conf ] && killall zebra
- ;;
- restart)
- $0 stop
- $0 start
- ;;
-
- *) echo "$0: error: unknown option $1"
- usage
- ;;
-esac
-exit 0
diff --git a/net/zebra-pj/pkg-comment b/net/zebra-pj/pkg-comment
deleted file mode 100644
index 2394a0df46d2..000000000000
--- a/net/zebra-pj/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-Free multithreaded RIPv1, RIPv2, OSPFv2, BGP4 route software (server/reflector)
diff --git a/net/zebra-pj/pkg-descr b/net/zebra-pj/pkg-descr
deleted file mode 100644
index 005d35bc4f1b..000000000000
--- a/net/zebra-pj/pkg-descr
+++ /dev/null
@@ -1,15 +0,0 @@
-GNU Zebra is a free software (distributed under GNU Generic Public
-License) which manages TCP/IP based routing protocols.
-
-It supports BGP-4 protocol as described in RFC1771 (A Border Gateway
-Protocol 4) and RIPv1, RIPv2 and OSPFv2.
-
-Zebra uses multithread technology under multithread supported UNIX
-kernels. However it can be run under not-multithread supported
-UNIX kernels.
-
-Zebra is intended to be used as a Route Server and a Route Reflector.
-Zebra is not a toolkit, it provides full routing power under a new
-architecture.
-
-WWW: http://www.zebra.org/
diff --git a/net/zebra-pj/pkg-plist b/net/zebra-pj/pkg-plist
deleted file mode 100644
index 14dbb9f31e54..000000000000
--- a/net/zebra-pj/pkg-plist
+++ /dev/null
@@ -1,15 +0,0 @@
-sbin/bgpd
-sbin/ospfd
-sbin/ripd
-sbin/zebra
-sbin/zebractl
-etc/zebra/README.mbgp
-etc/zebra/bgpd.conf.sample
-etc/zebra/bgpd.conf.sample2
-etc/zebra/ospfd.conf.sample
-etc/zebra/ripd.conf.sample
-etc/zebra/zebra.conf.sample
-@unexec install-info --delete %D/info/zebra.info %D/info/dir
-info/zebra.info
-@exec install-info %D/info/zebra.info %D/info/dir
-@dirrm etc/zebra
diff --git a/net/zebra-pj/pkg-plist.v6 b/net/zebra-pj/pkg-plist.v6
deleted file mode 100644
index a9344d7c2409..000000000000
--- a/net/zebra-pj/pkg-plist.v6
+++ /dev/null
@@ -1,4 +0,0 @@
-sbin/ospf6d
-sbin/ripngd
-etc/zebra/ospf6d.conf.sample
-etc/zebra/ripngd.conf.sample