# $OpenBSD: Makefile,v 1.18 2021/01/04 14:06:33 sthen Exp $ BROKEN-arm = llvm out of memory BROKEN-powerpc = virtual memory exhausted, even with -O1 COMMENT-main = C++ machine learning library COMMENT-python = python bindings to C++ machine learning library V = 3.4.2 # STB stuff # XXX remember to bump REV if they change # should be "fixed" in next version V1 = 2.22 V2 = 1.13 REVISION-python = 0 DISTNAME = mlpack-$V SHARED_LIBS += mlpack 2.0 # 3.0 CATEGORIES = math HOMEPAGE = https://mlpack.org/ MAINTAINER = Marc Espie # parts are 3-clause BSD, others MPL 2, other Boost SL 1.0 PERMIT_PACKAGE = Yes MASTER_SITES = https://mlpack.org/files/ MULTI_PACKAGES = -main -python EXTRACT_ONLY = ${DISTNAME}${EXTRACT_SUFX} DISTFILES = ${EXTRACT_ONLY} \ stb-${V1}{stb}/stb_image.h \ stb-${V2}{stb}/stb_image_write.h FULLPKGNAME-main = mlpack-$V FULLPKGPATH-main = ${PKGPATH},-main FULLPKGNAME-python = ${MODPY_PY_PREFIX}mlpack-$V FULLPKGPATH-python = ${PKGPATH},-python${FLAVOR_EXT:S/-/,/g} WANTLIB += ${COMPILER_LIBCXX} m WANTLIB-main = ${WANTLIB} armadillo \ boost_program_options-mt boost_serialization-mt \ boost_unit_test_framework-mt c COMPILER = base-clang ports-gcc WANTLIB-python = ${WANTLIB} ${MODPY_WANTLIB} boost_serialization mlpack MODULES = devel/cmake \ lang/python FLAVORS = python3 FLAVOR = python3 MODPY_RUNDEP = No BUILD_DEPENDS += textproc/txt2man \ lang/cython${MODPY_FLAVOR} \ math/ensmallen \ devel/py-setuptools${MODPY_FLAVOR} \ math/py-pandas${MODPY_FLAVOR} \ devel/py-distutils-extra${MODPY_FLAVOR} \ devel/py-test-runner${MODPY_FLAVOR} LIB_DEPENDS-main = math/armadillo \ devel/boost LIB_DEPENDS-python = math/mlpack,-main \ devel/boost RUN_DEPENDS-python = ${MODPY_RUN_DEPENDS} \ math/py-pandas${MODPY_FLAVOR} # XXX set this *explicitly*, do not depend on module order CONFIGURE_STYLE = cmake # XXX this sets DESTDIR for setup.py at configure time. CONFIGURE_ENV += DESTDIR=${DESTDIR} CONFIGURE_ARGS += -DCMAKE_DISABLE_FIND_PACKAGE_Git=TRUE \ -DUSING_GIT=OFF \ -DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=TRUE \ -DDOWNLOAD_ENSMALLEN=OFF \ -DBUILD_PYTHON_BINDINGS=ON \ -DCMAKE_INSTALL_MANDIR=${PREFIX}/man/man1 # naddy reported a burp USE_NINJA = No # XXX note that some of the tests WILL fail. You've got to love probabilistic # software... TEST_ENV = CTEST_OUTPUT_ON_FAILURE=1 SITEDIR = lib/python${MODPY_VERSION}/site-packages EGGDIR = ${SITEDIR}/mlpack-$V-py${MODPY_VERSION}.egg-info SUBST_VARS += EGGDIR SITEDIR post-extract: mkdir -p ${WRKBUILD}/deps/stb cp ${FULLDISTDIR}/stb-${V1}/stb_image.h ${WRKBUILD}/deps/stb cp ${FULLDISTDIR}/stb-${V2}/stb_image_write.h ${WRKBUILD}/deps/stb .include