summaryrefslogtreecommitdiff
path: root/net/ucspi-ssl/options.mk
diff options
context:
space:
mode:
authorschmonz <schmonz@pkgsrc.org>2006-01-11 20:17:58 +0000
committerschmonz <schmonz@pkgsrc.org>2006-01-11 20:17:58 +0000
commitb1390917fd7d9b012daf40d26792bb7c16040b68 (patch)
tree6984cc64e4d1e89b574af1fe05017eebef01c462 /net/ucspi-ssl/options.mk
parent14d002a01237bab4a8282f71d8ff6a02dfa99d7e (diff)
downloadpkgsrc-b1390917fd7d9b012daf40d26792bb7c16040b68.tar.gz
Initial import of ucspi-ssl, a set of command-line tools for SSL
client-server applications. They conform to the UNIX Client-Server Program Interface, UCSPI. sslserver listens for connections, and runs a program for each connection it accepts. The program environment includes variables that hold the local and remote host names, IP addresses, and port numbers. sslserver offers a concurrency limit on acceptance of new connections, and selective handling of connections based on client identity. sslclient requests a connection to a TCP socket, and runs a program. The program environment includes the same variables as for sslserver. The "tls" option applies Scott Gifford's patch to implement UCSPI-TLS in sslserver.
Diffstat (limited to 'net/ucspi-ssl/options.mk')
-rw-r--r--net/ucspi-ssl/options.mk13
1 files changed, 13 insertions, 0 deletions
diff --git a/net/ucspi-ssl/options.mk b/net/ucspi-ssl/options.mk
new file mode 100644
index 00000000000..8bfa7c78033
--- /dev/null
+++ b/net/ucspi-ssl/options.mk
@@ -0,0 +1,13 @@
+# $NetBSD: options.mk,v 1.1.1.1 2006/01/11 20:17:58 schmonz Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.ucspi-ssl
+PKG_SUPPORTED_OPTIONS+= tls
+
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Mtls)
+TLS_PATCH= ucspi-ssl-0.70-ucspitls-0.1.patch
+PATCHFILES+= ${TLS_PATCH}
+SITES_${TLS_PATCH}= http://www.suspectclass.com/~sgifford/ucspi-tls/files/
+PATCH_DIST_STRIP.${TLS_PATCH}= -p1
+.endif