- Includes important security fixes for CVE-2015-7744 and CVE-2015-6925 see https://www.wolfssl.com/wolfSSL/Blog/Entries/2015/9/17_Two_Vulnerabilities_Recently_Found%2C_An_Attack_on_RSA_using_CRT_and_DoS_Vulnerability_With_DTLS.html - Disables support for SSLv3 PR: 205936 Submitted by: Christoph Moench-Tegeder <cmt@burggraben.net> MFH: 2016Q1
35 lines
806 B
Makefile
35 lines
806 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= wolfssl
|
|
PORTVERSION= 3.8.0
|
|
CATEGORIES= security devel
|
|
MASTER_SITES= http://www.wolfssl.com/
|
|
|
|
MAINTAINER= johans@FreeBSD.org
|
|
COMMENT= Embedded SSL C-Library
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= libtool zip
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-dependency-tracking \
|
|
--enable-shared --enable-static \
|
|
--enable-dtls --enable-opensslextra --enable-ipv6 \
|
|
--enable-dsa --enable-dh --enable-ecc --enable-sni \
|
|
--enable-ripemd --enable-sha512
|
|
|
|
USE_LDCONFIG= yes
|
|
PORTDOCS= *
|
|
|
|
post-configure:
|
|
@${REINPLACE_CMD} \
|
|
-e 's|$${prefix}/cyassl/include|$${prefix}/include/cyassl|' \
|
|
-e 's|$${prefix}/cyassl/lib|$${prefix}/lib/cyassl|' \
|
|
-e '/^pkgconfigdir/s|(libdir)|&data|' \
|
|
${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libwolfssl.so
|
|
|
|
.include <bsd.port.mk>
|