mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 03:46:30 -04:00
Port changes: * Change to DISTVERSION * Update MASTER_SITES * Change to LICENSE_COMB=dual * Add LIB_DEPENDS * Unbundle metis, made it a dependency * Update do-build and do-install * Update WWW Bump 11 ports. games/naev is marked broken because it depends on the no longer installed library. PR: 210579 Submitted by: yuri Submitted by: pfg Approved by: maintainer timeout (maho@FreeBSD.org, 21 months) Approved by: maintainer timeout (fortran@FreeBSD.org, 45 days)
28 lines
566 B
Makefile
28 lines
566 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= cvxopt
|
|
DISTVERSION= 1.2.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= math python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Python software for convex optimization
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libblas.so:math/blas \
|
|
liblapack.so:math/lapack \
|
|
libumfpack.so:math/suitesparse
|
|
|
|
USES= python
|
|
USE_GITHUB= yes
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include/suitesparse
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/cvxopt/*.so
|
|
|
|
.include <bsd.port.mk>
|