svn commit: r500217 - head/math/mppp

Yuri Victorovich yuri at FreeBSD.org
Sat Apr 27 17:49:58 UTC 2019


Author: yuri
Date: Sat Apr 27 17:49:56 2019
New Revision: 500217
URL: https://svnweb.freebsd.org/changeset/ports/500217

Log:
  math/mppp: fix build with GCC-based architectures, enable -DMPPP_WITH_QUADMATH=ON
  
  Add USES=compiler:c++14-lang everywhere, not just for tests, because this library has recently become non-NOARCH.
  
  PR:		237608
  Submitted by:	pkubaj

Modified:
  head/math/mppp/Makefile

Modified: head/math/mppp/Makefile
==============================================================================
--- head/math/mppp/Makefile	Sat Apr 27 17:31:39 2019	(r500216)
+++ head/math/mppp/Makefile	Sat Apr 27 17:49:56 2019	(r500217)
@@ -3,6 +3,7 @@
 PORTNAME=	mppp
 DISTVERSIONPREFIX=	v
 DISTVERSION=	0.14
+PORTREVISION=	1
 CATEGORIES=	math
 
 MAINTAINER=	yuri at FreeBSD.org
@@ -17,12 +18,11 @@ BUILD_DEPENDS=	${LOCALBASE}/include/gmp.h:math/gmp \
 RUN_DEPENDS=	${LOCALBASE}/include/gmp.h:math/gmp \
 		${LOCALBASE}/include/mpfr.h:math/mpfr
 
-USES=		cmake
+USES=		cmake compiler:c++14-lang
 USE_GITHUB=	yes
 GH_ACCOUNT=	bluescarni
 
-TEST_USES=	compiler:c++14-lang
-TEST_ARGS=	-DMPPP_BUILD_TESTS=ON -DMPPP_WITH_MPFR=ON #-DMPPP_WITH_QUADMATH=ON (quadmath requires __float128, only available in clang6)
+TEST_ARGS=	-DMPPP_BUILD_TESTS=ON -DMPPP_WITH_MPFR=ON -DMPPP_WITH_QUADMATH=ON
 BENCHMARK_ARGS=	-DMPPP_BUILD_BENCHMARKS=ON -DMPPP_BENCHMARK_BOOST=ON
 
 do-test:


More information about the svn-ports-all mailing list