mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
949545eb27
<ZGabor@CoDe.HU>: host mail.integrity.HU[195.56.44.40] said: 511 sorry, no mailbox here by that name (#5.1.1 - chkuser) (in reply to RCPT TO command)
40 lines
999 B
Makefile
40 lines
999 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
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.quiltaholic.com/rickk/sslwrap/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
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
|
|
${REINPLACE_CMD} -e \
|
|
's,%%OPENSSL%%,openssl/,g' \
|
|
${WRKSRC}/s_server.c ${WRKSRC}/s_cb.c ${WRKSRC}/apps.h ${WRKSRC}/s_socket.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>
|