diff options
author | yuri <yuri@FreeBSD.org> | 2018-04-24 13:04:55 +0800 |
---|---|---|
committer | yuri <yuri@FreeBSD.org> | 2018-04-24 13:04:55 +0800 |
commit | 514bfca3cff5501bf88192888378b44fe8dee02d (patch) | |
tree | d8de7896e840a151ff62fdfe8f739cef4f9dc9f5 /math | |
parent | 4c1a5c1a6f3d7ed3df13ea441acdb1cd54907b77 (diff) | |
download | freebsd-ports-gnome-514bfca3cff5501bf88192888378b44fe8dee02d.tar.gz freebsd-ports-gnome-514bfca3cff5501bf88192888378b44fe8dee02d.tar.zst freebsd-ports-gnome-514bfca3cff5501bf88192888378b44fe8dee02d.zip |
math/piranha: Remove := from RUN_DEPENDS as per PHB 5.9.2
Reported by: jrm
Diffstat (limited to 'math')
-rw-r--r-- | math/piranha/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/math/piranha/Makefile b/math/piranha/Makefile index 2590edde17f8..168a0a359756 100644 --- a/math/piranha/Makefile +++ b/math/piranha/Makefile @@ -15,10 +15,8 @@ LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING.gpl3 LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING.lgpl3 # build only checks that boost, gmp, mpfr headers are installed, and in the runtime they are included, shared libs are never used directly -BUILD_DEPENDS= ${LOCALBASE}/include/boost/numeric/conversion/cast.hpp:devel/boost-libs \ - ${LOCALBASE}/include/gmp.h:math/gmp \ - ${LOCALBASE}/include/mpfr.h:math/mpfr -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${HEADER_DEPENDS} +RUN_DEPENDS= ${HEADER_DEPENDS} USES= cmake:outsource USE_GITHUB= yes @@ -26,6 +24,10 @@ GH_ACCOUNT= bluescarni NO_BUILD= yes NO_ARCH= yes +HEADER_DEPENDS= ${LOCALBASE}/include/boost/numeric/conversion/cast.hpp:devel/boost-libs \ + ${LOCALBASE}/include/gmp.h:math/gmp \ + ${LOCALBASE}/include/mpfr.h:math/mpfr + TEST_USES= compiler:c++14-lang do-test: |