d7992a6596
Update the CMake ports to 3.24. A previous exp-run -- thanks antoine@ -- showed up new failures. That is normal for a CMake update. tcberner@ fixed most of them (in the linked PR) and lang/zig just landed. The original patch for the update came from tcberner@ as well, but I had to re-jig it after CMake was reorganized into a metaport and -core package. PR: 265652
34 lines
823 B
Makefile
34 lines
823 B
Makefile
PORTNAME= cmake
|
|
DISTVERSION= 3.24.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://www.cmake.org/files/v${PORTVERSION:R}/
|
|
PKGNAMESUFFIX= -doc
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= HTML and Qt Creator helpfiles for CMake
|
|
WWW= https://www.cmake.org
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/Copyright.txt
|
|
|
|
BUILD_DEPENDS= sphinx-build:textproc/py-sphinx
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../cmake-core/distinfo
|
|
|
|
NO_ARCH= yes
|
|
USES= cmake qt:5
|
|
USE_QT= help:build
|
|
USE_LOCALE= en_US.UTF-8
|
|
|
|
CMAKE_OFF= SPHINX_MAN
|
|
CMAKE_ON= SPHINX_HTML SPHINX_QTHELP
|
|
CMAKE_ARGS= -DCMAKE_DOC_DIR:STRING="${DOCSDIR_REL}" \
|
|
-DQHELPGENERATOR_EXECUTABLE=${QT_BINDIR}/qhelpgenerator
|
|
CMAKE_SOURCE_PATH= ${WRKSRC}/Utilities/Sphinx
|
|
|
|
ALL_TARGET= documentation
|
|
INSTALL_TARGET= install
|
|
|
|
PLIST_SUB= CMAKEVERSION="${DISTVERSION:S/.//g:C/-.*//}"
|
|
|
|
.include <bsd.port.mk>
|