mirror of
https://git.freebsd.org/ports.git
synced 2025-05-19 10:33:12 -04:00
- remove TEST option, it is obsoleted CMAKE_TESTING_ON - touch up Makefile Changelog: https://github.com/colmap/colmap/releases
77 lines
2.5 KiB
Makefile
77 lines
2.5 KiB
Makefile
PORTNAME= colmap
|
|
DISTVERSION= 3.10
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= fuz@FreeBSD.org
|
|
COMMENT= Structure from motion and multi-view stereo
|
|
WWW= https://colmap.github.io/
|
|
|
|
LICENSE= BSD2CLAUSE BSD3CLAUSE CC-BY-3.0 MIT SIFTGPU
|
|
LICENSE_COMB= multi
|
|
LICENSE_NAME_SIFTGPU= SiftGPU non-commercial license
|
|
LICENSE_FILE_BSD2CLAUSE= ${WRKSRC}/src/thirdparty/VLFeat/LICENSE
|
|
LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/COPYING.txt # also FLANN
|
|
LICENSE_FILE_CC-BY-3.0= ${WRKSRC}/src/colmap/ui/media/LICENSE
|
|
LICENSE_FILE_MIT= ${WRKSRC}/src/thirdparty/PoissonRecon/LICENSE
|
|
LICENSE_FILE_SIFTGPU= ${WRKSRC}/src/thirdparty/SiftGPU/LICENSE
|
|
LICENSE_PERMS_SIFTGPU= dist-mirror pkg-mirror auto-accept
|
|
|
|
LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs \
|
|
libceres.so:math/ceres-solver \
|
|
libflann.so:math/flann \
|
|
libfreeimage.so:graphics/freeimage \
|
|
libglog.so:devel/glog \
|
|
liblz4.so:archivers/liblz4 \
|
|
libmetis.so:math/metis
|
|
|
|
USES= cmake:testing compiler:${OPENMP}c++11-lib desktop-file-utils eigen:3 gl \
|
|
localbase python:env qt:5 sqlite
|
|
USE_CXXSTD= c++17
|
|
USE_GITHUB= yes
|
|
USE_GL= gl glew
|
|
USE_QT= core gui widgets buildtools:build opengl:build qmake:build
|
|
CMAKE_OFF= BOOST_STATIC CUDA_ENABLED
|
|
CMAKE_TESTING_ON= TESTS_ENABLED
|
|
|
|
LDFLAGS+= -Wl,--as-needed # gflags, glu, xi, xmu
|
|
|
|
OPTIONS_DEFINE= CGAL DOCS OPENMP SIMD
|
|
OPTIONS_DEFAULT= CGAL OPENMP SIMD
|
|
|
|
CGAL_DESC= Graph-cut on Delaunay triangulation based meshing algorithm
|
|
CGAL_BUILD_DEPENDS= cgal>0:math/cgal
|
|
CGAL_LIB_DEPENDS= libgmp.so:math/gmp
|
|
CGAL_CMAKE_BOOL= CGAL_ENABLED
|
|
|
|
DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx_rtd_theme>0:textproc/py-sphinx_rtd_theme@${PY_FLAVOR} \
|
|
gmake:devel/gmake sphinx-build:textproc/py-sphinx
|
|
|
|
OPENMP_CMAKE_BOOL= OPENMP_ENABLED
|
|
.if !exists(/usr/include/omp.h)
|
|
# XXX ports/199603: LLVM openmp in base doesn't support armv6, armv7 yet
|
|
OPENMP_VARS= OPENMP=gcc-
|
|
.endif
|
|
|
|
SIMD_CMAKE_BOOL= SIMD_ENABLED
|
|
|
|
#post-patch:
|
|
# XXX math/flann has -DUSE_OPENMP=OFF and lacks tunning:
|
|
# https://github.com/colmap/colmap/commit/4b594eb85c13
|
|
# https://github.com/colmap/colmap/commit/1e9f1f3324cd
|
|
#.if !defined(DISPLAY) # QApplication
|
|
# @${REINPLACE_CMD} -e '/opengl_utils_test/d' \
|
|
# ${WRKSRC}/src/util/CMakeLists.txt
|
|
#.endif
|
|
|
|
post-build-DOCS-on:
|
|
${SETENVI} ${WRK_ENV} ${MAKE_ENV} ${GMAKE} ${_MAKE_JOBS} -C ${WRKSRC}/doc html
|
|
|
|
post-install:
|
|
${FIND} ${STAGEDIR}${PREFIX}/include -type d -empty -delete
|
|
|
|
post-install-DOCS-on:
|
|
(cd ${WRKSRC}/doc/_build/html && ${COPYTREE_SHARE} \
|
|
. ${STAGEDIR}${DOCSDIR})
|
|
${RM} ${STAGEDIR}${DOCSDIR}/.buildinfo
|
|
|
|
.include <bsd.port.mk>
|