diff --git a/biology/biosoup/Makefile b/biology/biosoup/Makefile index 420d9c79734d..5c145e4c4628 100644 --- a/biology/biosoup/Makefile +++ b/biology/biosoup/Makefile @@ -1,38 +1,39 @@ PORTNAME= biosoup DISTVERSION= 0.11.0 +PORTREVISION= 1 CATEGORIES= biology devel MAINTAINER= yuri@FreeBSD.org COMMENT= Collection of C++ header-only data structures for bioinformatics WWW= https://github.com/rvaser/biosoup LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE TEST_DEPENDS= googletest>0:devel/googletest -USES= cmake compiler:gcc-c++11-lib +USES= cmake compiler:c++14-lang USE_GITHUB= yes GH_ACCOUNT= rvaser CMAKE_OFF= biosoup_build_tests NO_ARCH= yes PLIST_FILES= include/biosoup/nucleic_acid.hpp \ include/biosoup/overlap.hpp \ include/biosoup/progress_bar.hpp \ include/biosoup/sequence.hpp \ - include/biosoup/timer.hpp - -do-install: - cd ${WRKSRC}/include && ${COPYTREE_SHARE} ${PORTNAME} ${STAGEDIR}${PREFIX}/include + include/biosoup/timer.hpp \ + lib/cmake/biosoup/biosoupConfig.cmake \ + lib/cmake/biosoup/biosoupConfigVersion.cmake \ + lib/cmake/biosoup/biosoupTargets.cmake do-test: @cd ${BUILD_WRKSRC} && \ ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -D${PORTNAME}_build_tests:BOOL=ON ${CMAKE_SOURCE_PATH} && \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ ${BUILD_WRKSRC}/bin/${PORTNAME}_test .include diff --git a/biology/biosoup/pkg-descr b/biology/biosoup/pkg-descr index 3373e1e63115..f6c4d768e203 100644 --- a/biology/biosoup/pkg-descr +++ b/biology/biosoup/pkg-descr @@ -1,2 +1,2 @@ -Biosoup is a c++ collection of header only data structures used for storage and +Biosoup is a C++ collection of header only data structures used for storage and logging in bioinformatics tools.