mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
09f9633cb6
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542
60 lines
1.9 KiB
Makefile
60 lines
1.9 KiB
Makefile
# Created by: Johan Str??m <johan@stromnet.se>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jsoncpp
|
|
PORTVERSION= 1.8.1
|
|
PORTREVISION= 4
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= JSON reader and writer library for C++
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= open-source-parsers
|
|
|
|
USES= compiler:c++11-lang dos2unix scons
|
|
USE_LDCONFIG= yes
|
|
|
|
PLATFORM= linux-gcc-FreeBSD
|
|
MAKE_ARGS= platform=${PLATFORM}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 33 || \
|
|
${COMPILER_TYPE} == gcc && ${COMPILER_VERSION} >= 48
|
|
# Certain new compiler features unlock parts of jsoncpp API (ex. see JSON_HAS_RVALUE_REFERENCES).
|
|
# Use c++11 above to be the most inclusive.
|
|
USES+= compiler:c++11-lang
|
|
# lang/gcc5 fix
|
|
.if ${COMPILER_TYPE} == clang
|
|
CXXFLAGS+= --std=c++11
|
|
.else
|
|
CXXFLAGS+= --std=gnu++11 -D_GLIBCXX_USE_C99=1
|
|
.endif
|
|
.endif
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/include/jsoncpp
|
|
(cd ${WRKSRC}/include/ && ${COPYTREE_SHARE} json/ ${STAGEDIR}${PREFIX}/include/jsoncpp/)
|
|
${INSTALL_DATA} ${WRKSRC}/libs/${PLATFORM}/libjsoncpp.a \
|
|
${STAGEDIR}${PREFIX}/lib
|
|
${INSTALL_LIB} ${WRKSRC}/libs/${PLATFORM}/libjsoncpp.so.${DISTVERSION} \
|
|
${STAGEDIR}${PREFIX}/lib
|
|
${LN} -s libjsoncpp.so.${DISTVERSION} ${STAGEDIR}${PREFIX}/lib/libjsoncpp.so.1
|
|
${LN} -s libjsoncpp.so.${DISTVERSION} ${STAGEDIR}${PREFIX}/lib/libjsoncpp.so
|
|
${CP} ${WRKSRC}/pkg-config/jsoncpp.pc.in ${STAGEDIR}${PREFIX}/libdata/pkgconfig/jsoncpp.pc
|
|
@${REINPLACE_CMD} -i '' \
|
|
-e 's|@CMAKE_INSTALL_FULL_LIBDIR@|${PREFIX}/lib|g' \
|
|
-e 's|@CMAKE_INSTALL_FULL_INCLUDEDIR@|${PREFIX}/include/jsoncpp|g' \
|
|
-e 's|@JSONCPP_VERSION@|${DISTVERSION}|g' \
|
|
${STAGEDIR}${PREFIX}/libdata/pkgconfig/jsoncpp.pc
|
|
|
|
do-test:
|
|
@${ECHO} "Please note that 3 testcases are known to fail: https://github.com/open-source-parsers/jsoncpp/issues/628"
|
|
@cd ${WRKSRC} && CXX=${CXX} ${SCONS} platform=${PLATFORM} check
|
|
|
|
.include <bsd.port.post.mk>
|