diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2021-04-06 09:23:13 +0200 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2021-04-20 08:57:34 +0200 |
commit | a91d65363fe8aa72bdf427bb639b0fe258ee7c01 (patch) | |
tree | bff05a5e79d56100a683a17dd262f3cdbf38cf36 /math/py-pdal | |
parent | devel/hs-ShellCheck: Update to 0.7.2 (diff) |
Mk/Uses/ninja.mk: Add support for devel/samurai (D29353)
Samurai is a Ninja-compatible build tool with fewer dependencies
than Ninja. Hook it to the framework via a new NINJA_DEFAULT.
This also adds %p to NINJA_STATUS to make Ninja or Samurai print
the percentage of completed jobs to make it easier to eyeball how
much of the build is done.
PR: 254678
Exp-run by: antoine
Diffstat (limited to 'math/py-pdal')
-rw-r--r-- | math/py-pdal/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/math/py-pdal/Makefile b/math/py-pdal/Makefile index 5c686f8e7266..3d555bc787d9 100644 --- a/math/py-pdal/Makefile +++ b/math/py-pdal/Makefile @@ -12,13 +12,12 @@ LICENSE= BSD3CLAUSE BUILD_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}scikit-build>0:devel/py-scikit-build@${PY_FLAVOR} \ - ${LOCALBASE}/bin/cmake:devel/cmake \ - ${LOCALBASE}/bin/ninja:devel/ninja + cmake:devel/cmake LIB_DEPENDS= libpdal_base.so:math/pdal RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR} \ ${PYNUMPY} -USES= compiler:c++11-lang python:3.6+ +USES= compiler:c++11-lang ninja:build python:3.6+ USE_PYTHON= autoplist cython distutils post-install: |