summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2004-06-20 23:40:39 +0000
committerKris Kennaway <kris@FreeBSD.org>2004-06-20 23:40:39 +0000
commitbbdac6a84127ded2282a0a89b53a0f930cf920d8 (patch)
treedb982286edeebb39e5e3f349e4076643cabfb3f5 /security
parent- Update to 1.40 (diff)
Remove expired ports, plus the three ports that depended on them.
Notes
Notes: svn path=/head/; revision=111893
Diffstat (limited to 'security')
-rw-r--r--security/Makefile1
-rw-r--r--security/siphon/Makefile34
-rw-r--r--security/siphon/distinfo4
-rw-r--r--security/siphon/files/patch-aa11
-rw-r--r--security/siphon/files/patch-ab21
-rw-r--r--security/siphon/pkg-descr8
-rw-r--r--security/siphon/pkg-plist4
7 files changed, 0 insertions, 83 deletions
diff --git a/security/Makefile b/security/Makefile
index cd544830e813..bfbf32f7a695 100644
--- a/security/Makefile
+++ b/security/Makefile
@@ -382,7 +382,6 @@
SUBDIR += sha
SUBDIR += shishi
SUBDIR += sig2dot
- SUBDIR += siphon
SUBDIR += skip
SUBDIR += slurpie
SUBDIR += slush
diff --git a/security/siphon/Makefile b/security/siphon/Makefile
deleted file mode 100644
index b99bfd5951c5..000000000000
--- a/security/siphon/Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-# Ports collection makefile for: siphon
-# Date created: 6 May 2000
-# Whom: Kris Kennaway <kris@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= siphon
-PORTVERSION= 0.666
-CATEGORIES= security
-MASTER_SITES= ftp://ftp.man.szczecin.pl/pub7/security/network-mapping/siphon/ \
- ftp://the.ausmac.net/sd3a/security/network-mapping/siphon/ \
- ${MASTER_SITE_PACKETSTORM}
-MASTER_SITE_SUBDIR= UNIX/utilities
-# http://www.subterrain.net/projects/siphon/
-DISTFILES= siphon-v.666.tar.gz siphon-report.pl
-EXTRACT_ONLY= siphon-v.666.tar.gz
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Passive host OS identifier using characteristics of sniffed traffic
-
-BROKEN= "Does not fetch"
-DEPRECATED= ${BROKEN}
-EXPIRATION_DATE=2004-06-18
-
-WRKSRC= ${WRKDIR}/siphon-v.666
-
-do-install:
- ${MKDIR} ${PREFIX}/share/siphon
- ${INSTALL_PROGRAM} ${WRKSRC}/siphon ${PREFIX}/bin
- ${INSTALL_SCRIPT} ${DISTDIR}/siphon-report.pl ${PREFIX}/bin/siphon-report
- ${INSTALL_DATA} ${WRKSRC}/osprints.conf ${PREFIX}/share/siphon
-
-.include <bsd.port.mk>
diff --git a/security/siphon/distinfo b/security/siphon/distinfo
deleted file mode 100644
index 6d1deebd5104..000000000000
--- a/security/siphon/distinfo
+++ /dev/null
@@ -1,4 +0,0 @@
-MD5 (siphon-v.666.tar.gz) = 064c63e738235626aeb7820241ce478b
-SIZE (siphon-v.666.tar.gz) = 6951
-MD5 (siphon-report.pl) = 46af5c180b7224e1906fb5d82e60efa8
-SIZE (siphon-report.pl) = 944
diff --git a/security/siphon/files/patch-aa b/security/siphon/files/patch-aa
deleted file mode 100644
index e2a402d3dfb6..000000000000
--- a/security/siphon/files/patch-aa
+++ /dev/null
@@ -1,11 +0,0 @@
---- log.c.orig Thu May 4 12:00:00 2000
-+++ log.c Sat May 6 15:32:36 2000
-@@ -137,7 +137,7 @@
- FILE *osprints;
- static char line[80], *oswin, *osttl, *osdf, *os, hexed[10];
- static int check = 0;
-- osprints = fopen("osprints.conf","r");
-+ osprints = fopen(OSPRINTSCONF,"r");
-
- if(!osprints) {
- perror("Unable to find osprints.conf\n");
diff --git a/security/siphon/files/patch-ab b/security/siphon/files/patch-ab
deleted file mode 100644
index b51000edeef3..000000000000
--- a/security/siphon/files/patch-ab
+++ /dev/null
@@ -1,21 +0,0 @@
---- Makefile.orig Thu May 4 11:10:24 2000
-+++ Makefile Sat May 6 15:37:22 2000
-@@ -1,6 +1,7 @@
--CC = gcc
-+CC ?= gcc
- CCFLAGS = -Wall -pthread -ggdb
--CFLAGS = -Wall -O2 -pthread -ggdb -I.
-+CFLAGS ?= -O
-+CFLAGS += -Wall -pthread -I. -DOSPRINTSCONF=\"${PREFIX}/share/siphon/osprints.conf\"
- LIBS = -lpcap
- OBJS = parse.o sniff.o main.o log.o
- SRCS = ${OBJS:.o=.c}
-@@ -9,7 +10,7 @@
- all: $(TARGET)
-
- $(TARGET): $(OBJS)
-- $(CC) $(CCFLAGS) -o $(TARGET) $(OBJS) $(LIBS)
-+ $(CC) $(CFLAGS) -o $(TARGET) $(OBJS) $(LIBS)
-
- clean:
- rm -f $(OBJS) *~ *.core core siphon
diff --git a/security/siphon/pkg-descr b/security/siphon/pkg-descr
deleted file mode 100644
index 6a14df368115..000000000000
--- a/security/siphon/pkg-descr
+++ /dev/null
@@ -1,8 +0,0 @@
-Siphon is a passive OS fingerprinter which sniffs network traffic passing
-the local machine and uses characteristics of the TCP stream to identify
-the operating system running on the endpoints.
-
-In contrast to active fingerprinters like nmap and queso, no additional
-connections need to be made to the target system in order to fingerprint it.
-
-WWW: http://www.subterrain.net/projects/siphon/
diff --git a/security/siphon/pkg-plist b/security/siphon/pkg-plist
deleted file mode 100644
index 6e895de508a6..000000000000
--- a/security/siphon/pkg-plist
+++ /dev/null
@@ -1,4 +0,0 @@
-bin/siphon
-bin/siphon-report
-share/siphon/osprints.conf
-@dirrm share/siphon