forked from Lainports/freebsd-ports
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
36 lines
819 B
Makefile
36 lines
819 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libjson-rpc-cpp
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.1.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= net www devel
|
|
|
|
MAINTAINER= greg@unrelenting.technology
|
|
COMMENT= C++ framework for JSON-RPC 1.0 and 2.0
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
LIB_DEPENDS= libcurl.so:ftp/curl \
|
|
libmicrohttpd.so:www/libmicrohttpd \
|
|
libjsoncpp.so:devel/jsoncpp \
|
|
libargtable2.so:devel/argtable
|
|
|
|
USES= cmake compiler:c++11-lang pkgconfig
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= cinemast
|
|
|
|
CMAKE_OFF= COMPILE_TESTS COMPILE_EXAMPLES
|
|
CMAKE_ON= UNIX_DOMAIN_SOCKET_SERVER UNIX_DOMAIN_SOCKET_CLIENT \
|
|
FILE_DESCRIPTOR_SERVER FILE_DESCRIPTOR_CLIENT
|
|
|
|
OPTIONS_DEFINE= REDIS
|
|
OPTIONS_SUB= yes
|
|
|
|
REDIS_CMAKE_BOOL= REDIS_SERVER REDIS_CLIENT
|
|
REDIS_LIB_DEPENDS= libhiredis.so:databases/hiredis
|
|
|
|
.include <bsd.port.mk>
|