summaryrefslogtreecommitdiff
path: root/net/zebra-devel/scripts/configure
diff options
context:
space:
mode:
authorSergey Matveychuk <sem@FreeBSD.org>2004-07-27 12:37:57 +0000
committerSergey Matveychuk <sem@FreeBSD.org>2004-07-27 12:37:57 +0000
commit49cb1cc05da6d3d58cdfa00df86f9a69b497e849 (patch)
tree9e0b9ddf686e78a2a31be32a9dee5d63be50e8f1 /net/zebra-devel/scripts/configure
parentRemove the lthack bits from the configure patch. (diff)
Remove net/zebra-devel port.
It the same as net/zebra for a long time. PR: ports/66831 Submitted by: glebius
Notes
Notes: svn path=/head/; revision=114867
Diffstat (limited to '')
-rw-r--r--net/zebra-devel/scripts/configure62
1 files changed, 0 insertions, 62 deletions
diff --git a/net/zebra-devel/scripts/configure b/net/zebra-devel/scripts/configure
deleted file mode 100644
index 9a5c8a9926f4..000000000000
--- a/net/zebra-devel/scripts/configure
+++ /dev/null
@@ -1,62 +0,0 @@
-#! /bin/sh
-
-# $FreeBSD$
-
-# configure - zebra compile time option configurator
-# by Andreas Klemm <andreas@FreeBSD.org>
-
-if [ "$BATCH" != "yes" -a "$BATCH" != "YES" ]; then
-
-#
-# configure - zebra compile time options
-#
-
-/usr/bin/dialog --title "Zebra Compile Time Options" --clear \
- --checklist "\n\
-Select compile time options for zebra port:" -1 -1 8 \
-LIBPAM "enable PAM authentication for vtysh" OFF \
-OSPF_NSSA "turn on undergoing NSSA feature" OFF \
-SNMP "enable SNMP support" OFF \
-TCP-ZEBRA "enable TCP/IP socket connection" OFF \
-2> /tmp/zebra-checklist.$$
-
-retval=$?
-
-if [ -s /tmp/zebra-checklist.$$ ]; then
- set `cat /tmp/zebra-checklist.$$`
-fi
-rm -f /tmp/zebra-checklist.$$
-
-case $retval in
- 0) if [ -z "$*" ]; then
- echo "Nothing selected"
- fi
- ;;
- 1) echo "Cancel pressed."
- exit 1
- ;;
-esac
-
-/bin/mkdir -p ${WRKDIRPREFIX}${CURDIR}
-exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
-
-while [ "$1" ]; do
- case $1 in
- \"LIBPAM\")
- echo CONFIGURE_ARGS+=--with-libpam
- ;;
- \"OSPF_NSSA\")
- echo CONFIGURE_ARGS+=--enable-nssa
- ;;
- \"SNMP\")
- echo CONFIGURE_ARGS+=--enable-snmp
- echo 'LIB_DEPENDS+=snmp.4:${PORTSDIR}/net-mgmt/net-snmp4:install'
- ;;
- \"TCP-ZEBRA\")
- echo CONFIGURE_ARGS+=--enable-tcp-zebra
- ;;
- esac
- shift
-done
-
-fi # if $BATCH