summaryrefslogtreecommitdiff
path: root/www/web-traceroute
diff options
context:
space:
mode:
Diffstat (limited to 'www/web-traceroute')
-rw-r--r--www/web-traceroute/Makefile28
-rw-r--r--www/web-traceroute/distinfo2
-rw-r--r--www/web-traceroute/files/patch-Makefile32
-rw-r--r--www/web-traceroute/pkg-descr21
4 files changed, 0 insertions, 83 deletions
diff --git a/www/web-traceroute/Makefile b/www/web-traceroute/Makefile
deleted file mode 100644
index 3ca987f411a5..000000000000
--- a/www/web-traceroute/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-# New ports collection makefile for: www/web-traceroute
-# Date created: Sun Oct 26 12:00:00 WST 2003
-# Whom: Dean Hollister <dean@odyssey.apana.org.au>
-#
-# $FreeBSD$
-#
-
-PORTNAME= web-traceroute
-PORTVERSION= 3.0
-CATEGORIES= www
-MASTER_SITES= http://www.carpe.net/src/ \
- http://www.wa.apana.org.au/~dean/sources/ \
- ftp://ftp.wa.apana.org.au/pub/pc/unix/packages/
-DISTNAME= ${PORTNAME}
-
-MAINTAINER= dean@odyssey.apana.org.au
-COMMENT= WWW Traceroute CGI script written in C
-
-DEPRECATED= apache13 is deprecated, migrate to 2.2.x+ now
-EXPIRATION_DATE= 2012-01-01
-
-PLIST_FILES= www/cgi-bin/trace
-USE_APACHE= 13
-
-#pre-configure:
-# ${SH} ${SCRIPTDIR}/locate-template.sh
-
-.include <bsd.port.mk>
diff --git a/www/web-traceroute/distinfo b/www/web-traceroute/distinfo
deleted file mode 100644
index f9d64660ff54..000000000000
--- a/www/web-traceroute/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (web-traceroute.tar.gz) = f1ddf7eb39d045099b577393c780273f26d7d27c926e416b3245124b2f04845d
-SIZE (web-traceroute.tar.gz) = 18566
diff --git a/www/web-traceroute/files/patch-Makefile b/www/web-traceroute/files/patch-Makefile
deleted file mode 100644
index 7ce6c65fffe2..000000000000
--- a/www/web-traceroute/files/patch-Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
---- Makefile.old Sun Oct 26 12:10:35 2003
-+++ Makefile Sun Oct 26 12:13:14 2003
-@@ -4,24 +4,26 @@
-
- # BINDEST should be the directory/filename where the cgi program needs
- # to be installed. This must be configured with your web server.
--BINDEST = /ns/cgi-bin/trace
-+BINDEST = $(PREFIX)/www/cgi-bin/trace
-
- # CC and CCFLAGS should be set appropriately for your system
- # or uncomment the one you need.
- #
- # HP-UX
- CC = cc
--CCFLAGS = -Aa +DA1.1 -D_HPUX_SOURCE
-+#CCFLAGS = -Aa +DA1.1 -D_HPUX_SOURCE
- #
- # BSDI's BSD/OS (probably ok for any recent version of gcc)
- # CC=gcc
--# CCFLAGS = -O2
-+CCFLAGS = $(CFLAGS)
-
- DEFINES = -DLEAVE_DOMAIN_NAME
-
- # normally traceroute must be setuid root
- BINOWN = root
- BINMODE = 4555
-+
-+all: html.h $(PROG)
-
- $(PROG): $(PROG).c html.h
- $(CC) $(CCFLAGS) $(DEFINES) -o $(PROG) $(PROG).c
diff --git a/www/web-traceroute/pkg-descr b/www/web-traceroute/pkg-descr
deleted file mode 100644
index 4f97d6ad57b5..000000000000
--- a/www/web-traceroute/pkg-descr
+++ /dev/null
@@ -1,21 +0,0 @@
-This is a modified BSD traceroute command which outputs customized HTML
-and can be used as a cgi program directly.
-
-The advantage of using a compiled C program directly instead of a shell,
-tcl or perl scipt:
-
-More Secure (tastes better) - There is no possibility that strange
-characters or environment passed to the CGI program can be used to break
-into the server, etc.
-
-Less Overhead (less filling) - The whole CGI program runs as one very
-small process instead of multiple script processes and/or a large perl
-program which must be interpreted each time it is run.
-
-You can customise the HTML presented, by creating the template file
-"template.html", and entering it's full path when prompted. Insert the
-text "TRACEROUTE-OUTPUT" into your template file at the point where you
-require the traceroute results displayed. This makes web-traceroute
-integrate seamlessly with existing website layouts.
-
-WWW: http://www.carpe.net/src/index.html