mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 07:00:31 -04:00
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707
55 lines
1.7 KiB
Makefile
55 lines
1.7 KiB
Makefile
# Created by: Johan Str??m <johan@stromnet.se>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jsoncpp
|
|
PORTVERSION= 1.8.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= yuri@rawbw.com
|
|
COMMENT= JSON reader and writer library for C++
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= open-source-parsers
|
|
|
|
USES= compiler:features dos2unix scons
|
|
USE_LDCONFIG= yes
|
|
|
|
MAKE_ARGS= platform=linux-gcc
|
|
|
|
.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/linux-gcc-FreeBSD/libjsoncpp.a \
|
|
${STAGEDIR}${PREFIX}/lib
|
|
${INSTALL_LIB} ${WRKSRC}/libs/linux-gcc-FreeBSD/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_PREFIX@|${PREFIX}|g' \
|
|
-e 's|@CMAKE_INSTALL_LIBDIR@|lib|g' \
|
|
-e 's|@CMAKE_INSTALL_INCLUDEDIR@|include/jsoncpp|g' \
|
|
-e 's|@JSONCPP_VERSION@|${DISTVERSION}|g' \
|
|
${STAGEDIR}${PREFIX}/libdata/pkgconfig/jsoncpp.pc
|
|
|
|
.include <bsd.port.post.mk>
|