freebsd-ports/science/mmtf/Makefile
Tobias C. Berner 707c6bf295 Change cmake default behaviour to outsource.
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
2018-12-25 20:25:39 +00:00

51 lines
1.3 KiB
Makefile

# $FreeBSD$
PORTNAME= mmtf
DISTVERSION= g20180730
PORTREVISION= 1
CATEGORIES= science biology
MAINTAINER= yuri@FreeBSD.org
COMMENT= C++ implementation of the MMTF API, decoder and encoder
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${LOCALBASE}/include/msgpack.hpp:devel/msgpack
USES= cmake compiler:c++11-lang localbase:ldflags
USE_GITHUB= yes
GH_ACCOUNT= rcsb
GH_PROJECT= mmtf-cpp
GH_TAGNAME= 63e58a9
GH_TUPLE= rcsb:mmtf:8c88834:x/mmtf_spec
NO_BUILD= yes
NO_ARCH= yes
PLIST_FILES= include/mmtf.hpp \
include/mmtf/binary_decoder.hpp \
include/mmtf/binary_encoder.hpp \
include/mmtf/decoder.hpp \
include/mmtf/encoder.hpp \
include/mmtf/errors.hpp \
include/mmtf/export_helpers.hpp \
include/mmtf/map_decoder.hpp \
include/mmtf/msgpack_decoder.hpp \
include/mmtf/object_encoders.hpp \
include/mmtf/structure_data.hpp
post-patch:
@cd ${WRKDIR} && ${LN} -s ${WRKSRC}/mmtf_spec # needed for testing
do-install:
cd ${WRKSRC} && ${COPYTREE_SHARE} include ${STAGEDIR}${PREFIX}
do-test:
@cd ${BUILD_WRKSRC} && \
${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -Dmmtf_build_local=ON -DBUILD_TESTS=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>