git: 8719ba0864a8 - main - devel/stxxl: cosmetic fixes

From: Dmitry Marakasov <amdmi3_at_FreeBSD.org>
Date: Thu, 15 Dec 2022 15:15:15 UTC
The branch main has been updated by amdmi3:

URL: https://cgit.FreeBSD.org/ports/commit/?id=8719ba0864a893beb748741ace686ed6beb4105b

commit 8719ba0864a893beb748741ace686ed6beb4105b
Author:     Dmitry Marakasov <amdmi3@FreeBSD.org>
AuthorDate: 2022-12-14 20:40:14 +0000
Commit:     Dmitry Marakasov <amdmi3@FreeBSD.org>
CommitDate: 2022-12-15 15:14:32 +0000

    devel/stxxl: cosmetic fixes
    
    - Update WWW
    - Don't needlessly set pkgconfig dir
    - Use CMAKE_OFF where applicable
    - Simplify docs installation
---
 devel/stxxl/Makefile | 12 ++++++------
 1 file 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>