# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 : ${CMAKE_DOCS_PREBUILT:=1} CMAKE_DOCS_PREBUILT_DEV=sam CMAKE_DOCS_VERSION=$(ver_cut 1-2).0 # Default to generating docs (inc. man pages) if no prebuilt; overridden later # See bug #784815 CMAKE_DOCS_USEFLAG="+doc" CMAKE_QA_COMPAT_SKIP=1 # bug #964514; cmake itself is the last pkg we worry about CMAKE_MAKEFILE_GENERATOR="emake" CMAKE_REMOVE_MODULES_LIST=() inherit bash-completion-r1 cmake flag-o-matic multiprocessing \ toolchain-funcs xdg-utils MY_P="${P/_/-}" DESCRIPTION="Cross platform Make" HOMEPAGE="https://cmake.org/" S="${WORKDIR}/${MY_P}" LICENSE="BSD" SLOT="0" IUSE="dap gui ncurses test" RESTRICT="!test? ( test )" KEYWORDS="~amd64 ~x86" SRC_URI="https://github.com/Kitware/CMake/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" # >= 1.51.0-r1 for ppc32 workaround (bug #941738) RDEPEND=" >=app-arch/libarchive-3.3.3:= app-crypt/rhash:0= >=dev-libs/expat-2.0.1 >=dev-libs/jsoncpp-1.9.2-r2:0= >=dev-libs/libuv-1.51.0-r1:= >=net-misc/curl-7.21.5[ssl] virtual/zlib:= virtual/pkgconfig dap? ( dev-cpp/cppdap ) gui? ( dev-qt/qtbase:6[gui,widgets] ) ncurses? ( sys-libs/ncurses:= ) " DEPEND="${RDEPEND}" BDEPEND+="" SITEFILE="50${PN}-gentoo.el" PATCHES=( # Prefix "${FILESDIR}"/${PN}-3.27.0_rc1-0001-Don-t-use-.so-for-modules-on-darwin-macos.-Use-.bund.patch "${FILESDIR}"/${PN}-3.27.0_rc1-0002-Set-some-proper-paths-to-make-cmake-find-our-tools.patch # Misc "${FILESDIR}"/${PN}-3.31.6-Prefer-pkgconfig-in-FindBLAS.patch "${FILESDIR}"/${PN}-3.27.0_rc1-0004-Ensure-that-the-correct-version-of-Qt-is-always-used.patch "${FILESDIR}"/${PN}-3.27.0_rc1-0005-Respect-Gentoo-s-Python-eclasses.patch # Cuda "${FILESDIR}"/${PN}-3.30.3-cudahostld.patch # Upstream fixes (can usually be removed with a version bump) "${FILESDIR}"/${PN}-3.31.7-hdf5.patch ) cmake_src_bootstrap() { # disable running of cmake in bootstrap command sed -i \ -e '/"${cmake_bootstrap_dir}\/cmake"/s/^/#DONOTRUN /' \ bootstrap || die "sed failed" # execinfo.h on Solaris isn't quite what it is on Darwin if [[ ${CHOST} == *-solaris* ]] ; then sed -i -e 's/execinfo\.h/blablabla.h/' \ Source/kwsys/CMakeLists.txt || die fi # bootstrap script isn't exactly /bin/sh compatible tc-env_build ${CONFIG_SHELL:-sh} ./bootstrap \ --prefix="${T}/cmakestrap/" \ --parallel=$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)") \ || die "Bootstrap failed" } pkg_pretend() { if [[ -z ${EPREFIX} ]] ; then local file local errant_files=() # See bug #599684 and bug #753581 (at least) for file in /etc/arch-release /etc/redhat-release /etc/debian_version ; do if [[ -e ${file} ]]; then errant_files+=( "${file}" ) fi done # If errant files exist if [[ ${#errant_files[@]} -gt 0 ]]; then eerror "Errant files found!" eerror "The presence of these files is known to confuse CMake's" eerror "library path logic. Please (re)move these files:" for file in "${errant_files[@]}"; do eerror " mv ${file} ${file}.bak" done die "Stray files found in /etc/, see above message" fi fi } src_prepare() { cmake_src_prepare if [[ ${CHOST} == *-darwin* ]] ; then # Disable Xcode hooks, bug #652134 sed -i -e 's/cm\(\|Global\|Local\)XCode[^.]\+\.\(cxx\|h\)//' \ Source/CMakeLists.txt || die sed -i -e '/define CMAKE_USE_XCODE/s/XCODE/NO_XCODE/' \ -e '/cmGlobalXCodeGenerator.h/d' \ Source/cmake.cxx || die # Disable system integration, bug #933744 sed -i -e 's/__APPLE__/__DISABLED__/' \ Source/cmFindProgramCommand.cxx \ Source/CPack/cmCPackGeneratorFactory.cxx || die sed -i -e 's/__MAC_OS_X_VERSION_MIN_REQUIRED/__DISABLED__/' \ Source/cmMachO.cxx || die sed -i -e 's:CPack/cmCPack\(Bundle\|DragNDrop\|PKG\|ProductBuild\)Generator.cxx::' \ Source/CMakeLists.txt || die # Disable isysroot usage with GCC, we've properly instructed # where things are via GCC configuration and ldwrapper sed -i -e '/cmake_gnu_set_sysroot_flag/d' \ Modules/Platform/Apple-GNU-*.cmake || die # Disable isysroot usage with clang as well sed -i -e '/_SYSROOT_FLAG/d' \ Modules/Platform/Apple-Clang.cmake || die # Don't set a POSIX standard, system headers don't like that, #757426 sed -i -e 's/^#if !defined(_WIN32) && !defined(__sun)/& \&\& !defined(__APPLE__)/' \ Source/cmLoadCommandCommand.cxx \ Source/cmStandardLexer.h \ Source/cmSystemTools.cxx \ Source/cmTimestamp.cxx sed -i -e 's/^#if !defined(_POSIX_C_SOURCE) && !defined(_WIN32) && !defined(__sun)/& \&\& !defined(__APPLE__)/' \ Source/cmStandardLexer.h fi # Add gcc libs to the default link paths sed -i \ -e "s|@GENTOO_PORTAGE_GCCLIBDIR@|${EPREFIX}/usr/${CHOST}/lib/|g" \ -e "$(usex prefix-guest "s|@GENTOO_HOST@||" "/@GENTOO_HOST@/d")" \ -e "s|@GENTOO_PORTAGE_EPREFIX@|${EPREFIX}/|g" \ Modules/Platform/{UnixPaths,Darwin}.cmake || die "sed failed" ## in theory we could handle these flags in src_configure, as we do in many other packages. But we *must* ## handle them as part of bootstrapping, sadly. # Fix linking on Solaris [[ ${CHOST} == *-solaris* ]] && append-ldflags -lsocket -lnsl # ODR warnings, bug #858335 # https://gitlab.kitware.com/cmake/cmake/-/issues/20740 filter-lto if ! has_version -b \>=${CATEGORY}/${PN}-3.13 || ! cmake --version &>/dev/null ; then CMAKE_BINARY="${S}/Bootstrap.cmk/cmake" cmake_src_bootstrap fi } src_configure() { local mycmakeargs=( -DCMAKE_USE_SYSTEM_LIBRARIES=ON -DCMake_ENABLE_DEBUGGER=$(usex dap) -DCMAKE_DOC_DIR=/share/doc/${PF} -DCMAKE_MAN_DIR=/share/man -DCMAKE_DATA_DIR=/share/${PN} -DSPHINX_MAN=OFF -DSPHINX_HTML=OFF -DBUILD_CursesDialog="$(usex ncurses)" -DBUILD_TESTING=$(usex test) -DBUILD_QtDialog=$(usex gui) ) use gui && mycmakeargs+=( -DCMake_QT_MAJOR_VERSION=6 ) cmake_src_configure } src_install() { cmake_src_install insinto /usr/share/vim/vimfiles/syntax doins Auxiliary/vim/syntax/cmake.vim insinto /usr/share/vim/vimfiles/indent doins Auxiliary/vim/indent/cmake.vim insinto /usr/share/vim/vimfiles/ftdetect doins "${FILESDIR}/${PN}.vim" dobashcomp Auxiliary/bash-completion/{${PN},ctest,cpack} } pkg_postinst() { if use gui; then xdg_icon_cache_update xdg_desktop_database_update xdg_mimeinfo_database_update fi } pkg_postrm() { if use gui; then xdg_icon_cache_update xdg_desktop_database_update xdg_mimeinfo_database_update fi }