(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. 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, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
34 lines
1 KiB
Makefile
34 lines
1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= yami4
|
|
PORTVERSION= 1.10.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.inspirel.com/yami4/files/
|
|
DISTNAME= yami4-gpl-1.10.0
|
|
|
|
MAINTAINER= prog@msobczak.com
|
|
COMMENT= Messaging library for distributed systems
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/gpl-3.0.txt
|
|
|
|
BROKEN_powerpc64= Does not build: error: snprintf is not a member of std
|
|
|
|
# USES= compiler:c++11-lib
|
|
|
|
do-build :
|
|
cd ${WRKSRC}/src/core; make
|
|
cd ${WRKSRC}/src/cpp; make
|
|
|
|
do-install :
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/yami4
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/yami4/core
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/yami4/cpp
|
|
(cd ${WRKSRC}/doc/core && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/share/doc/yami4/core)
|
|
(cd ${WRKSRC}/doc/cpp && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/share/doc/yami4/cpp)
|
|
(cd ${WRKSRC}/include && ${COPYTREE_SHARE} yami4-core ${STAGEDIR}${PREFIX}/include)
|
|
(cd ${WRKSRC}/include && ${COPYTREE_SHARE} yami4-cpp ${STAGEDIR}${PREFIX}/include)
|
|
(cd ${WRKSRC}/lib && ${INSTALL_DATA} *.a ${STAGEDIR}${PREFIX}/lib)
|
|
|
|
.include <bsd.port.mk>
|