mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
- Add LICENSE
- Switch to options helpers - Cleanup pkg-descr
This commit is contained in:
parent
5c97c1fa59
commit
468261c1e2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=411209
@ -11,6 +11,11 @@ DISTNAME= ${PORTNAME}
|
|||||||
MAINTAINER= ports@FreeBSD.org
|
MAINTAINER= ports@FreeBSD.org
|
||||||
COMMENT= Another SSL Wrapper application, which uses SSLEay/OpenSSL
|
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}
|
WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION:S/.//g}
|
||||||
|
|
||||||
USE_OPENSSL= yes
|
USE_OPENSSL= yes
|
||||||
@ -20,8 +25,6 @@ PLIST_FILES= bin/sslwrap
|
|||||||
|
|
||||||
OPTIONS_DEFINE= DOCS
|
OPTIONS_DEFINE= DOCS
|
||||||
|
|
||||||
.include <bsd.port.options.mk>
|
|
||||||
|
|
||||||
post-patch:
|
post-patch:
|
||||||
@${FIND} ${WRKSRC} -name "*.[ch]" | ${XARGS} ${REINPLACE_CMD} -e \
|
@${FIND} ${WRKSRC} -name "*.[ch]" | ${XARGS} ${REINPLACE_CMD} -e \
|
||||||
's|SSL_OP_NON_EXPORT_FIRST|SSL_OP_CIPHER_SERVER_PREFERENCE|g ; \
|
's|SSL_OP_NON_EXPORT_FIRST|SSL_OP_CIPHER_SERVER_PREFERENCE|g ; \
|
||||||
@ -29,9 +32,11 @@ post-patch:
|
|||||||
|
|
||||||
do-install:
|
do-install:
|
||||||
${INSTALL_PROGRAM} ${WRKSRC}/sslwrap ${STAGEDIR}${PREFIX}/bin
|
${INSTALL_PROGRAM} ${WRKSRC}/sslwrap ${STAGEDIR}${PREFIX}/bin
|
||||||
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
||||||
|
do-install-DOCS-on:
|
||||||
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||||
.for i in ${PORTDOCS}
|
.for i in ${PORTDOCS}
|
||||||
@${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
||||||
.endfor
|
.endfor
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
--- Makefile.orig Tue Sep 28 05:49:54 1999
|
--- Makefile.orig 2000-11-11 22:01:25 UTC
|
||||||
+++ Makefile Thu Jan 27 23:09:09 2000
|
+++ Makefile
|
||||||
@@ -6,16 +6,19 @@
|
@@ -6,16 +6,19 @@ SRC = s_server.c s_socket.c s_cb.c
|
||||||
|
|
||||||
# Debug/Optimizations
|
# Debug/Optimizations
|
||||||
#OPT = -g
|
#OPT = -g
|
||||||
|
@ -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
|
It works with the servers you already have, and does not require any
|
||||||
such as POP3, IMAP, SMTP, and encrypts all of the data on the
|
modifications to your existing servers. ..."
|
||||||
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
|
Of course, it works with OpenSSL, too.
|
||||||
modifications to your existing servers. ..."
|
|
||||||
|
|
||||||
Of course, it works with OpenSSL, too.
|
|
||||||
|
|
||||||
WWW: http://www.rickk.com/sslwrap/
|
WWW: http://www.rickk.com/sslwrap/
|
||||||
|
Loading…
Reference in New Issue
Block a user