freebsd-ports/math/mesquite/Makefile
Nuno Teixeira 8eaddd1ae8 math/mesquite: Move man pages to share/man
Approved by:	portmgr (blanket)
2024-03-12 12:04:29 +00:00

38 lines
980 B
Makefile

PORTNAME= mesquite
DISTVERSION= 2.3.0
PORTREVISION= 1
CATEGORIES= math
MASTER_SITES= https://github.com/sandialabs/mesquite/raw/main/mesquite/
PKGNAMESUFFIX= -mesh-toolkit
MAINTAINER= yuri@FreeBSD.org
COMMENT= Mesh Quality Improvement Toolkit is a suite of mesh algorithms
WWW= https://www.sandia.gov/ccr/project/mesquite/
LICENSE= LGPL21
LICENSE_FILE= ${WRKSRC}/lgpl.txt
USES= gmake libtool
USE_LDCONFIG= yes
USE_CXXSTD= c++11 # attempt to fix build failing due to the use of std::unary_function that was removed in c++17
GNU_CONFIGURE= yes
GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share
CONFIGURE_ARGS= --enable-shared --disable-static
INSTALL_TARGET= install-strip
TEST_TARGET= check
OPTIONS_DEFINE= EXAMPLES
PORTEXAMPLES= *
post-install-EXAMPLES-on:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
@${MV} ${STAGEDIR}${DOCSDIR}/examples/* ${STAGEDIR}${EXAMPLESDIR}
@${RM} -r ${STAGEDIR}${DOCSDIR}
post-install-EXAMPLES-off:
@${RM} -r ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>