mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
707c6bf295
Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine
27 lines
574 B
Makefile
27 lines
574 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= teem
|
|
DISTVERSION= 1.11.0
|
|
DISTVERSIONSUFFIX= -src
|
|
CATEGORIES= science
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION}/
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Libraries for representing, processing and visualizing scientific data
|
|
|
|
LICENSE= LGPL21
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
LIB_DEPENDS= libpng16.so:graphics/png
|
|
|
|
USES= cmake
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_ON= BUILD_SHARED_LIBS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/cmake/Teem
|
|
${MV} ${STAGEDIR}${PREFIX}/lib/*.cmake ${STAGEDIR}${PREFIX}/lib/cmake/Teem
|
|
|
|
.include <bsd.port.mk>
|