mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
007a61529b
Update s_server.c by the following instruction from the openssl changelog *) New option SSL_OP_CIPHER_SERVER_PREFERENCE allows the server to override the clients preferred ciphersuites and rather use its own preferences. Should help to work around M$ SGC (Server Gated Cryptography) bug in Internet Explorer by ensuring unchanged hash method during stepup. (Also replaces the broken/deactivated SSL_OP_NON_EXPORT_FIRST option.) [Lutz Jaenicke] PR: 54280 Submitted by: Gea-Suan Lin <gslin@netnews.NCTU.edu.tw>
34 lines
840 B
Makefile
34 lines
840 B
Makefile
# New ports collection makefile for: sslwrap
|
|
# Date created: 1999 november 7.
|
|
# Whom: Zahemszky, Gabor <ZGabor at CoDe dot HU>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sslwrap
|
|
PORTVERSION= 2.0.6
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.quiltaholic.com/rickk/sslwrap/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= ZGabor@CoDe.HU
|
|
COMMENT= Another SSL Wrapper application, which uses SSLEay/OpenSSL
|
|
|
|
USE_OPENSSL= YES
|
|
USE_REINPLACE= YES
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION:S/.//g}
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's/SSL_OP_NON_EXPORT_FIRST/SSL_OP_CIPHER_SERVER_PREFERENCE/g' ${WRKSRC}/s_server.c
|
|
|
|
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>
|