diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2022-12-14 23:40:14 +0300 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2022-12-15 18:14:32 +0300 |
commit | 8719ba0864a893beb748741ace686ed6beb4105b (patch) | |
tree | 4fc28cb3feb63cfb40a57c537d726b6190cc5867 | |
parent | math/octave-forge-statistics: Update to 1.5.2. (diff) |
devel/stxxl: cosmetic fixes
- Update WWW
- Don't needlessly set pkgconfig dir
- Use CMAKE_OFF where applicable
- Simplify docs installation
-rw-r--r-- | devel/stxxl/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/devel/stxxl/Makefile b/devel/stxxl/Makefile index 1cd29f28ffab..27533dbbd9fc 100644 --- a/devel/stxxl/Makefile +++ b/devel/stxxl/Makefile @@ -5,21 +5,21 @@ MASTER_SITES= SF MAINTAINER= amdmi3@FreeBSD.org COMMENT= Standard Template Library for Extra Large Data Sets -WWW= http://stxxl.sourceforge.net/ +WWW= https://stxxl.org/ \ + https://github.com/stxxl/stxxl LICENSE= BSL LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt USES= cmake -CMAKE_ARGS= -DINSTALL_PKGCONFIG_DIR:STRING="libdata/pkgconfig" \ - -DUSE_GNU_PARALLEL:BOOL=OFF # may be enabled for future versions of clang with openmp support +CMAKE_OFF= USE_GNU_PARALLEL # may be enabled for future versions of clang with openmp support PORTDOCS= * OPTIONS_DEFINE= DOCS -post-install: - @cd ${WRKSRC} && ${COPYTREE_SHARE} "AUTHORS CHANGELOG README TODO" \ - ${STAGEDIR}${DOCSDIR}/ +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} AUTHORS CHANGELOG README TODO ${STAGEDIR}${DOCSDIR}/ .include <bsd.port.mk> |