diff options
Diffstat (limited to 'security/sslproxy')
-rw-r--r-- | security/sslproxy/Makefile | 35 | ||||
-rw-r--r-- | security/sslproxy/distinfo | 2 | ||||
-rw-r--r-- | security/sslproxy/files/patch-aa | 21 | ||||
-rw-r--r-- | security/sslproxy/files/sigchld.diff | 36 | ||||
-rw-r--r-- | security/sslproxy/pkg-descr | 7 |
5 files changed, 0 insertions, 101 deletions
diff --git a/security/sslproxy/Makefile b/security/sslproxy/Makefile deleted file mode 100644 index 875cdead39eb..000000000000 --- a/security/sslproxy/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: sslproxy -# Date created: 11 February 1999 -# Whom: Alex Le Heux -# -# $FreeBSD$ -# - -PORTNAME= sslproxy -PORTVERSION= 20000129 -CATEGORIES= security -MASTER_SITES= http://mirror2.unixfreunde.de/ \ - http://freebsd.unixfreunde.de/sources/ -DISTNAME= sslproxy.2000_Jan_29 - -MAINTAINER= alexlh@funk.org -COMMENT= Proxies non-SSL request over an SSL connection - -PORTDOCS= README.txt dummyCert.pem - -PLIST_FILES= bin/sslproxy - -USE_OPENSSL= YES - -DEPRECATED= Abandoned upstream -EXPIRATION_DATE= 2013-02-28 - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/sslproxy ${PREFIX}/bin/sslproxy -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/sslproxy - ${INSTALL_DATA} ${WRKSRC}/README.txt ${WRKSRC}/dummyCert.pem \ - ${PREFIX}/share/doc/sslproxy -.endif - -.include <bsd.port.mk> diff --git a/security/sslproxy/distinfo b/security/sslproxy/distinfo deleted file mode 100644 index 754f008b2c0b..000000000000 --- a/security/sslproxy/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (sslproxy.2000_Jan_29.tar.gz) = 17a665436de17dddd21fe76e6c3b259a6f020aa36016b10426ebfce87ea3d19f -SIZE (sslproxy.2000_Jan_29.tar.gz) = 13760 diff --git a/security/sslproxy/files/patch-aa b/security/sslproxy/files/patch-aa deleted file mode 100644 index 113f34088108..000000000000 --- a/security/sslproxy/files/patch-aa +++ /dev/null @@ -1,21 +0,0 @@ ---- Makefile.orig Sat Jan 29 11:36:07 2000 -+++ Makefile Mon Feb 7 17:07:20 2000 -@@ -10,15 +10,13 @@ - - - # if you use cc, remove the -Wall and -g options --CC= gcc -+CC?= gcc - --SSLROOT= /usr/local/openssl -- --CFLAGS= -Wall -I$(SSLROOT)/include -O -+CFLAGS+= -I$(OPENSSLINC) - # for Solaris 2.x add -DSOLARIS2, for SunOS add -DSUNOS and for HP-UX add - # -DHP to the CFLAGS variable - --LIBS = -L$(SSLROOT)/lib -lssl -lcrypto -+LIBS = -L$(OPENSSLLIB) -lssl -lcrypto $(EXTRA_SSL_LIBS) - - OBJ = sslproxy.o - diff --git a/security/sslproxy/files/sigchld.diff b/security/sslproxy/files/sigchld.diff deleted file mode 100644 index abc70d02d732..000000000000 --- a/security/sslproxy/files/sigchld.diff +++ /dev/null @@ -1,36 +0,0 @@ ---- /data/fbsd-ports/ports/security/sslproxy/work/sslproxy.1998_Jun_14/sslproxy.c Thu Jan 13 22:51:14 2000 -+++ sslproxy.c Sun Jan 16 18:12:40 2000 -@@ -15,6 +15,20 @@ - #include <openssl/ssl.h> - #include <openssl/err.h> - -+#include <sys/types.h> -+#include <sys/wait.h> -+ -+ -+void -+child_handler(int arg) -+{ -+ pid_t pid; -+ int dummy; -+ -+ wait(&dummy); -+ -+} -+ - /* ------------------------------------------------------------------------- */ - - #define SRV_SSL_V23 0 -@@ -550,6 +564,12 @@ - perror("listen"); - exit(1); - } -+ -+ if (signal(SIGCHLD, child_handler)) { -+ perror("signal"); -+ exit(1); -+ } -+ - fprintf(stderr, "proxy ready, listening for connections\n"); - for(;;){ - clientFd = accept(sockFd, NULL, NULL) diff --git a/security/sslproxy/pkg-descr b/security/sslproxy/pkg-descr deleted file mode 100644 index 98ef70c795b4..000000000000 --- a/security/sslproxy/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -You probably know secure HTTP from secure web sites. Say, you want to operate -a secure web server but have only a normal server. SSL Proxy can be your -solution: It's plugged into the connection between the client and the server -and adds Secure Socket Layer (SSL) support. Or the other way around: You have -an ordinary telnet client but want to connect to a secure site. Just start SSL -Proxy with the appropriate parameters and -- voila. That's what SSL Proxy can -do for you. |