summaryrefslogtreecommitdiff
path: root/security/sslwrap
diff options
context:
space:
mode:
authorrh <rh>2000-12-30 20:04:25 +0000
committerrh <rh>2000-12-30 20:04:25 +0000
commit53e399bdbb9d421dc6789185af5d71b700d498b9 (patch)
tree5af6670d687c06fbee14f1ae4660cbc173760a47 /security/sslwrap
parent77a0f0690b30b894b32e212c0e382792407c9f7f (diff)
downloadpkgsrc-53e399bdbb9d421dc6789185af5d71b700d498b9.tar.gz
Initial import of sslwrap-206, a simple SSL TCP wrapper.
Diffstat (limited to 'security/sslwrap')
-rw-r--r--security/sslwrap/files/patch-sum4
-rw-r--r--security/sslwrap/patches/patch-aa46
-rw-r--r--security/sslwrap/patches/patch-ab13
3 files changed, 63 insertions, 0 deletions
diff --git a/security/sslwrap/files/patch-sum b/security/sslwrap/files/patch-sum
new file mode 100644
index 00000000000..67e8b57bf26
--- /dev/null
+++ b/security/sslwrap/files/patch-sum
@@ -0,0 +1,4 @@
+$NetBSD: patch-sum,v 1.1.1.1 2000/12/30 20:04:25 rh Exp $
+
+MD5 (patch-aa) = 7f3ca8d783a5364882f16c62261aaa40
+MD5 (patch-ab) = 29d912f363a1dfb6cb7eb52c3493de1b
diff --git a/security/sslwrap/patches/patch-aa b/security/sslwrap/patches/patch-aa
new file mode 100644
index 00000000000..2795def05b9
--- /dev/null
+++ b/security/sslwrap/patches/patch-aa
@@ -0,0 +1,46 @@
+$NetBSD: patch-aa,v 1.1.1.1 2000/12/30 20:04:25 rh Exp $
+
+--- Makefile.orig Sat Nov 11 23:01:25 2000
++++ Makefile
+@@ -1,28 +1,14 @@
++PROG= sslwrap
++SRCS= s_server.c s_socket.c s_cb.c
++COPTS+= -DOPENSSL="\"openssl/\""
++LDADD= -lssl -lcrypto
++MAN=
++
++.if defined(PREFIX)
++BINDIR= ${PREFIX}/sbin
++LIBDIR= ${PREFIX}/lib
++MANDIR= ${PREFIX}/man
++DOCDIR= ${PREFIX}/share/doc
++.endif
+
+-SRC = s_server.c s_socket.c s_cb.c
+-
+-# For Solaris2.6
+-#EXTLIBS = -lxnet
+-
+-# Debug/Optimizations
+-#OPT = -g
+-OPT = -O2
+-
+-# Define
+-OPENSSL="\"openssl/\""
+-#OPENSSL=""
+-
+-all :
+- gcc -o sslwrap ${SRC} ${OPT} -DFLAT_INC -DOPENSSL=${OPENSSL} \
+- -L/usr/local/ssl/lib -lssl -lcrypto \
+- -I/usr/local/ssl/include \
+- ${EXTLIBS}
+-
+-clean:
+- rm -f sslwrap *.o *~
+-
+-
+-
+-
+-
+-
++.include <bsd.prog.mk>
diff --git a/security/sslwrap/patches/patch-ab b/security/sslwrap/patches/patch-ab
new file mode 100644
index 00000000000..56a8f3fc8d5
--- /dev/null
+++ b/security/sslwrap/patches/patch-ab
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.1.1.1 2000/12/30 20:04:25 rh Exp $
+
+--- apps.h.orig Sat Nov 11 23:01:25 2000
++++ apps.h
+@@ -62,7 +62,7 @@
+ #ifdef FLAT_INC
+ #include "e_os.h"
+ #else
+-#include "../e_os.h"
++#include OPENSSL"e_os.h"
+ #endif
+
+ #include OPENSSL"buffer.h"