mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 07:26:29 -04:00
Changes: http://www.boost.org/users/history/version_1_72_0.html PR: 241449 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D22136
35 lines
861 B
Makefile
35 lines
861 B
Makefile
# Created by: Ryan Steinmetz <zi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cpp-netlib
|
|
DISTVERSIONPREFIX= ${PORTNAME}-
|
|
DISTVERSION= 0.12.0
|
|
DISTVERSIONSUFFIX= -final
|
|
PORTREVISION= 12
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= zi@FreeBSD.org
|
|
COMMENT= Cross-platform, standards compliant networking library
|
|
|
|
LICENSE= BSL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt
|
|
|
|
BUILD_DEPENDS= boost-libs>0:devel/boost-libs \
|
|
asio>0:net/asio
|
|
|
|
USES= cmake compiler:c++11-lang
|
|
USE_LDCONFIG= yes
|
|
CFLAGS+= -fPIC
|
|
CMAKE_ARGS+= -DCPP-NETLIB_BUILD_EXAMPLES=OFF \
|
|
-DCPP-NETLIB_BUILD_SHARED_LIBS=ON \
|
|
-DCPP-NETLIB_BUILD_TESTS=OFF
|
|
USE_GITHUB= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${SSL_DEFAULT} == base
|
|
BROKEN_FreeBSD_12= no member named 'SSLv2_method' in the global namespace
|
|
BROKEN_FreeBSD_13= no member named 'SSLv2_method' in the global namespace
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|