mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
0b5864f66c
- Add some dependencies which might be detected by Find_Package but not registered; - Bump PORTREVISION of consumers. PR: 250833 Submitted by: /me Approved by: tcberner@ (KDE / maintainer) + exp-run
38 lines
1.0 KiB
Makefile
38 lines
1.0 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= xlife++
|
|
DISTVERSION= 2.0.1
|
|
PORTREVISION= 6
|
|
CATEGORIES= math
|
|
MASTER_SITES= https://uma.ensta-paristech.fr/soft/XLiFE++/var/files/src/
|
|
DISTNAME= xlifepp-sources-v${DISTVERSION}-2018-05-09
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= XLiFE++: eXtended Library of Finite Elements in C++
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
USES= cmake compiler:c++11-lang eigen:3 fortran tar:tbz
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_OFF= XLIFEPP_ENABLE_ARPACK # should be ON, but it fails to build. Reported to their bugs ML.
|
|
|
|
CXXFLAGS+= -I${LOCALBASE}/include/eigen3/Eigen -I${LOCALBASE}/include/ARPACK++
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= *
|
|
|
|
post-extract: # delete bundled packages
|
|
@${RM} -r ${WRKSRC}/ext/Eigen ${WRKSRC}/ext/ARPACK ${WRKSRC}/ext/ARPACK++
|
|
|
|
post-configure:
|
|
@${REINPLACE_CMD} -E 's/.*(ARPACK|Eigen)/#&/' ${CONFIGURE_WRKSRC}/cmake_install.cmake
|
|
|
|
post-install:
|
|
@cd ${STAGEDIR}${PREFIX} && ${RM} -r CMakeLists.txt VERSION.txt etc/visuTermVec.m etc/templates etc/gmsh
|
|
|
|
.include <bsd.port.mk>
|