summaryrefslogtreecommitdiff
path: root/science/opensim-core/Makefile
blob: 8e2e6369ba132448724539b6e85a3ea631a4182b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# $FreeBSD$

PORTNAME=	OpenSim
DISTVERSION=	4.0
PORTREVISION=	2
CATEGORIES=	science
PKGNAMESUFFIX=	-core

MAINTAINER=	yuri@FreeBSD.org
COMMENT=	Software for modeling of musculoskeletal structures

LICENSE=	APACHE20
LICENSE_FILE=	${WRKSRC}/LICENSE.txt

LIB_DEPENDS=	libdocopt.so:devel/docopt.cpp \
		libSimTKcommon.so:science/simbody

USES=		blaslapack:openblas cmake compiler:c++11-lib fortran gl # fortran only for simbody/openblas
USE_GITHUB=	yes
GH_ACCOUNT=	${PORTNAME:tl}-org
GH_PROJECT=	${PORTNAME:tl}-core
USE_GL=		gl glu glut
USE_XORG=	xi xmu
USE_LDCONFIG=	yes

CXXFLAGS+=	-I${LOCALBASE}/include/docopt
CONFIGURE_ENV+=	SIMBODY_HOME=${LOCALBASE}
CMAKE_OFF=	OPENSIM_COPY_DEPENDENCIES DO_TESTING

OPTIONS_DEFINE=		DOCS
DOCS_CMAKE_BOOL=	INSTALL_DOCS
PORTDOCS=		*

do-test: # 4 testcases are known to fail: https://github.com/opensim-org/opensim-core/issues/2379
	@cd ${BUILD_WRKSRC} && \
		${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DDO_TESTING=ON ${CMAKE_SOURCE_PATH} && \
		${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \
		${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test

.include <bsd.port.mk>