Files
ports/math/nlopt/Makefile
T
Rainer Hurling 1f8c0a4fbb math/nlopt: Update to 2.9.1
Fixed PRAXIS box constraints.

Changelog: https://github.com/stevengj/nlopt/compare/v2.9.0...v2.9.1

Reported by:	portscout, Repology
2024-11-27 05:54:14 +01:00

49 lines
1.4 KiB
Makefile

PORTNAME= nlopt
DISTVERSIONPREFIX= v
DISTVERSION= 2.9.1
CATEGORIES= math
MAINTAINER= rhurlin@FreeBSD.org
COMMENT= Nonlinear optimization library
WWW= https://nlopt.readthedocs.io/en/latest/
LICENSE= LGPL21 MIT
LICENSE_COMB= multi
LICENSE_FILE= ${WRKSRC}/COPYING
BROKEN_armv6= fails to package: Unable to access file site-packages/_nlopt.a:No such file or directory
BROKEN_armv7= fails to package: Unable to access file site-packages/_nlopt.a:No such file or directory
FLAVORS= full minimal
USES= cmake:testing
USE_GITHUB= yes
GH_ACCOUNT= stevengj
USE_LDCONFIG= yes
# 'make test': 100% tests passed, 0 tests failed out of 83
CMAKE_ON= NLOPT_TESTS
.if ${FLAVOR:U} == minimal
PKGNAMESUFFIX= -${FLAVOR}
CMAKE_OFF= NLOPT_GUILE NLOPT_PYTHON NLOPT_SWIG
CONFLICTS_INSTALL= ${PORTNAME}
.else
USES+= guile:3.0,alias localbase pkgconfig python
BUILD_DEPENDS= swig:devel/swig ${PYNUMPY}
# Because guile-config-3.0 crashes, nlopt avoids this by using
# files/patch-cmake_FindGuile.cmake and setting GUILE_EXECUTABLE
# and GUILE_CONFIG_EXECUTABLE
MAKE_ENV+= GUILE_EXECUTABLE=${PREFIX}/bin/guile3 \
GUILE_CONFIG_EXECUTABLE=${PREFIX}/bin/guile-config-3
RUN_DEPENDS= ${PYNUMPY}
CONFLICTS_INSTALL= ${PORTNAME}-minimal
PLIST_FILES+= lib/guile/3.0/extensions/nlopt_guile.so \
%%PYTHON_SITELIBDIR%%/_nlopt.so \
%%PYTHON_SITELIBDIR%%/nlopt-2.9.1.dist-info/METADATA \
${PYTHON_SITELIBDIR}/nlopt.py \
${GUILE_SITE_DIR}/nlopt.scm
.endif
.include <bsd.port.mk>