diff options
author | steve <steve@FreeBSD.org> | 1999-12-27 01:56:10 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-12-27 01:56:10 +0000 |
commit | dd4230817c66579b4f8da6bb6e32fdcf7953a730 (patch) | |
tree | f50ade5afcd21c1f2b10283cab22fa14071ba51a /security | |
parent | b7936a1f573828cb763b06f128bf5bed1e78d1bc (diff) | |
download | FreeBSD-ports-dd4230817c66579b4f8da6bb6e32fdcf7953a730.zip FreeBSD-ports-dd4230817c66579b4f8da6bb6e32fdcf7953a730.tar.gz |
Adding sslwrap version 2.0.5.
Another SSL wrapper application, which uses SSLEay/OpenSSL.
PR: 14771
Submitted by: Zahemszky Gabor <zgabor@CoDe.HU>
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/sslwrap/Makefile | 34 | ||||
-rw-r--r-- | security/sslwrap/distinfo | 1 | ||||
-rw-r--r-- | security/sslwrap/files/patch-aa | 13 | ||||
-rw-r--r-- | security/sslwrap/pkg-comment | 1 | ||||
-rw-r--r-- | security/sslwrap/pkg-descr | 18 | ||||
-rw-r--r-- | security/sslwrap/pkg-plist | 4 |
7 files changed, 72 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 6cbea89..ad8618c 100644 --- a/security/Makefile +++ b/security/Makefile @@ -63,6 +63,7 @@ SUBDIR += ssh SUBDIR += ssh2 SUBDIR += sslproxy + SUBDIR += sslwrap SUBDIR += strobe SUBDIR += stunnel SUBDIR += sudo diff --git a/security/sslwrap/Makefile b/security/sslwrap/Makefile new file mode 100644 index 0000000..5365480 --- /dev/null +++ b/security/sslwrap/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: sslwrap +# Version required: 2.0.5 +# Date created: 1999 november 7. +# Whom: Zahemszky, Gabor <ZGabor at CoDe dot HU> +# +# $FreeBSD$ +# + +DISTNAME= sslwrap +PKGNAME= sslwrap-2.0.5 +CATEGORIES= security +MASTER_SITES= http://www.rickk.com/sslwrap/ + +MAINTAINER= ZGabor@CoDe.HU + +RUN_DEPENDS= ${PREFIX}/lib/libssl.a:${PORTSDIR}/security/openssl +BUILD_DEPENDS= ${PREFIX}/include/openssl/ssl.h:${PORTSDIR}/security/openssl + +.if defined(USA_RESIDENT) && ${USA_RESIDENT} == YES +LIB_DEPENDS= rsaref.2:${PORTSDIR}/security/rsaref +MAKE_ENV+= EXTRA_SSL_LIBS="-lRSAglue -lrsaref" +.endif + +WRKSRC= ${WRKDIR}/sslwrap205 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/sslwrap ${PREFIX}/bin/sslwrap +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/sslwrap + ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/docs.html \ + ${PREFIX}/share/doc/sslwrap +.endif + +.include <bsd.port.mk> diff --git a/security/sslwrap/distinfo b/security/sslwrap/distinfo new file mode 100644 index 0000000..455a932 --- /dev/null +++ b/security/sslwrap/distinfo @@ -0,0 +1 @@ +MD5 (sslwrap.tar.gz) = 1aaccd6cd4c0822f798ff67061d0c90d diff --git a/security/sslwrap/files/patch-aa b/security/sslwrap/files/patch-aa new file mode 100644 index 0000000..81649df --- /dev/null +++ b/security/sslwrap/files/patch-aa @@ -0,0 +1,13 @@ +--- Makefile.orig Tue Sep 28 07:49:54 1999 ++++ Makefile Sun Dec 26 10:22:14 1999 +@@ -14,8 +14,8 @@ + + all : + gcc -o sslwrap ${SRC} ${OPT} -DFLAT_INC -DOPENSSL=${OPENSSL} \ +- -L/usr/local/ssl/lib -lssl -lcrypto \ +- -I/usr/local/ssl/include \ ++ -L${PREFIX}/lib -lssl -lcrypto ${EXTRA_SSL_LIBS} \ ++ -I${PREFIX}/include \ + ${EXTLIBS} + + clean: diff --git a/security/sslwrap/pkg-comment b/security/sslwrap/pkg-comment new file mode 100644 index 0000000..68dceab --- /dev/null +++ b/security/sslwrap/pkg-comment @@ -0,0 +1 @@ +Another SSL Wrapper application, which uses SSLEay/OpenSSL diff --git a/security/sslwrap/pkg-descr b/security/sslwrap/pkg-descr new file mode 100644 index 0000000..e452ac4 --- /dev/null +++ b/security/sslwrap/pkg-descr @@ -0,0 +1,18 @@ + This is a port of sslwrap. + + "... sslwrap is a simple Unix service that sits over any simple TCP service + such as POP3, IMAP, SMTP, and encrypts all of the data on the + connection using TLS/SSL. It uses ssleay to support SSL version 2 and + 3. It can run out of inetd. It can also encrypt data for services + located on another computer. + + It works with the servers you already have, and does not require any + modifications to your existing servers. ..." + + Of course, it works with OpenSSL, too. + +WWW: http://www.rickk.com/sslwrap/ + +-- + +Ported by Zahemszky, Gabor <ZGabor at CoDe dot HU> diff --git a/security/sslwrap/pkg-plist b/security/sslwrap/pkg-plist new file mode 100644 index 0000000..5c59136 --- /dev/null +++ b/security/sslwrap/pkg-plist @@ -0,0 +1,4 @@ +bin/sslwrap +share/doc/sslwrap/README +share/doc/sslwrap/docs.html +@dirrm share/doc/sslwrap |