Date: Wed, 16 Mar 2016 02:34:06 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411209 - in head/security/sslwrap: . files Message-ID: <201603160234.u2G2Y6r0078929@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Wed Mar 16 02:34:06 2016 New Revision: 411209 URL: https://svnweb.freebsd.org/changeset/ports/411209 Log: - Add LICENSE - Switch to options helpers - Cleanup pkg-descr Modified: head/security/sslwrap/Makefile head/security/sslwrap/files/patch-Makefile head/security/sslwrap/pkg-descr Modified: head/security/sslwrap/Makefile ============================================================================== --- head/security/sslwrap/Makefile Wed Mar 16 01:50:50 2016 (r411208) +++ head/security/sslwrap/Makefile Wed Mar 16 02:34:06 2016 (r411209) @@ -11,6 +11,11 @@ DISTNAME= ${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= Another SSL Wrapper application, which uses SSLEay/OpenSSL +# 4th clause is actually different here and does not really apply +# to FreeBSD, but the license still contains advertising clause +# making it identical to classic BSD4CLAUSE +LICENSE= BSD4CLAUSE + WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION:S/.//g} USE_OPENSSL= yes @@ -20,8 +25,6 @@ PLIST_FILES= bin/sslwrap OPTIONS_DEFINE= DOCS -.include <bsd.port.options.mk> - post-patch: @${FIND} ${WRKSRC} -name "*.[ch]" | ${XARGS} ${REINPLACE_CMD} -e \ 's|SSL_OP_NON_EXPORT_FIRST|SSL_OP_CIPHER_SERVER_PREFERENCE|g ; \ @@ -29,9 +32,11 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/sslwrap ${STAGEDIR}${PREFIX}/bin - ${MKDIR} ${STAGEDIR}${DOCSDIR} + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${PORTDOCS} - @${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .include <bsd.port.mk> Modified: head/security/sslwrap/files/patch-Makefile ============================================================================== --- head/security/sslwrap/files/patch-Makefile Wed Mar 16 01:50:50 2016 (r411208) +++ head/security/sslwrap/files/patch-Makefile Wed Mar 16 02:34:06 2016 (r411209) @@ -1,6 +1,6 @@ ---- Makefile.orig Tue Sep 28 05:49:54 1999 -+++ Makefile Thu Jan 27 23:09:09 2000 -@@ -6,16 +6,19 @@ +--- Makefile.orig 2000-11-11 22:01:25 UTC ++++ Makefile +@@ -6,16 +6,19 @@ SRC = s_server.c s_socket.c s_cb.c # Debug/Optimizations #OPT = -g Modified: head/security/sslwrap/pkg-descr ============================================================================== --- head/security/sslwrap/pkg-descr Wed Mar 16 01:50:50 2016 (r411208) +++ head/security/sslwrap/pkg-descr Wed Mar 16 02:34:06 2016 (r411209) @@ -1,14 +1,12 @@ - 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. - "... 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. ..." - 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. +Of course, it works with OpenSSL, too. WWW: http://www.rickk.com/sslwrap/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603160234.u2G2Y6r0078929>