]> git.proxmox.com Git - mirror_frr.git/commitdiff
frr: remove README.NetBSD
authorQuentin Young <qlyoung@cumulusnetworks.com>
Tue, 8 May 2018 18:07:03 +0000 (14:07 -0400)
committerQuentin Young <qlyoung@cumulusnetworks.com>
Tue, 8 May 2018 18:07:03 +0000 (14:07 -0400)
This thing is virtually unused and has a weird name, let's delete it

Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
README.NetBSD [deleted file]

diff --git a/README.NetBSD b/README.NetBSD
deleted file mode 100755 (executable)
index c97e3bc..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/sh
-
-# This file is helpful for building FRR from cvs on NetBSD, and
-# probably on any system using pkgsrc.  
-# One should have readline installed already (pkgsrc/devel/readline).
-
-MAKE=make
-# FRR is currently documented not to require GNU make, but sometimes
-# BSD make fails.  Enable this if statement as a workaround.
-if false; then
-    MAKE=gmake
-    echo "WARNING: using gmake to work around nonportable makefiles"
-fi
-
-# Use /usr/frr to be independent, and /usr/pkg to overwrite pkgsrc.
-PREFIX=/usr/pkg
-
-case $1 in
-
-    build)
-       # Omitted because it is now default:
-       #   --enable-opaque-lsa
-       ./bootstrap.sh
-       LDFLAGS="-L/usr/pkg/lib -R/usr/pkg/lib" CPPFLAGS="-I/usr/pkg/include" \
-       ./configure --prefix=${PREFIX} \
-           --sysconfdir=/etc/zebra --localstatedir=/var/run/zebra \
-           --enable-exampledir=${PREFIX}/share/examples/zebra \
-           --enable-pkgsrcrcdir=${PREFIX}/etc/rc.d \
-           --enable-vtysh
-       ${MAKE}
-       ;;
-
-    install)
-       ${MAKE} install
-       ;;
-
-    clean)
-       ${MAKE} clean
-       ;;
-
-    *)
-       echo "Usage: README.NetBSD (build|install|clean)"
-       exit 1
-       ;;
-
-esac