mirror of
https://git.freebsd.org/ports.git
synced 2025-06-18 03:00:42 -04:00
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
35 lines
655 B
Makefile
35 lines
655 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= msgpack
|
|
PORTVERSION= 3.2.0
|
|
PORTREVISION= 1
|
|
DISTVERSIONPREFIX= cpp-
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= adamw@FreeBSD.org
|
|
COMMENT= Efficient binary serialization, like JSON but smaller and faster
|
|
|
|
LICENSE= BSL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt
|
|
|
|
TEST_DEPENDS= googletest>0:devel/googletest
|
|
|
|
USES= cmake pathfix
|
|
USE_LDCONFIG= yes
|
|
USE_GITHUB= yes
|
|
GH_PROJECT= msgpack-c
|
|
|
|
CMAKE_OFF= MSGPACK_BUILD_EXAMPLES
|
|
TEST_TARGET= test
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${ARCH} == "sparc64"
|
|
# required for __sync _* atomic operations on sparc
|
|
USE_GCC= yes
|
|
.endif
|
|
|
|
pre-test:
|
|
cd ${WRKSRC} && ${CMAKE_BIN} . && ${MAKE_CMD}
|
|
|
|
.include <bsd.port.mk>
|