From owner-svn-ports-head@freebsd.org Wed Mar 16 02:34:07 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E6E7AAD1CD1; Wed, 16 Mar 2016 02:34:07 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C2C0AF0F; Wed, 16 Mar 2016 02:34:07 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2G2Y6Kk078932; Wed, 16 Mar 2016 02:34:06 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2G2Y6r0078929; Wed, 16 Mar 2016 02:34:06 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201603160234.u2G2Y6r0078929@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 16 Mar 2016 02:34:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411209 - in head/security/sslwrap: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Mar 2016 02:34:08 -0000 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 - 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 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/