maintainer-feedback requested: [Bug 277189] devel/cmake-core: add NO_CCACHE handle to allow disable ccache build

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Tue Feb 20 14:22:05 GMT 2024


Bugzilla Automation <bugzilla at FreeBSD.org> has asked freebsd-kde (group)
<kde at FreeBSD.org> for maintainer-feedback:
Bug 277189: devel/cmake-core: add NO_CCACHE handle to allow disable ccache
build
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=277189



--- Description ---
Typically WITH_CCACHE_BUILD env var used together with NO_CCACHE:

/usr/ports/Mk/bsd.ccache.mk:.  if !defined(NO_CCACHE) &&
defined(WITH_CCACHE_BUILD) && !${CC:M*ccache*} && \
/usr/ports/graphics/darktable/Makefile:.if "${WITH_CCACHE_BUILD}" == "yes" &&
!defined(NO_CCACHE)
/usr/ports/graphics/rawtherapee/Makefile:.if "${WITH_CCACHE_BUILD}" == "yes" &&
!defined(NO_CCACHE)
/usr/ports/lang/rust-bootstrap/Makefile:.if defined(WITH_CCACHE_BUILD) &&
!defined(NO_CCACHE)
/usr/ports/lang/rust/Makefile:.if defined(WITH_CCACHE_BUILD) &&
!defined(NO_CCACHE)
/usr/ports/misc/valentina/Makefile:.if !defined(WITH_CCACHE_BUILD) ||
defined(NO_CCACHE)
/usr/ports/net-im/telegram-desktop/Makefile:.if defined(WITH_CCACHE_BUILD) &&
!defined(NO_CCACHE)


This allow define NO_CCACHE in env where no ccache installed but
WITH_CCACHE_BUILD set in make.conf (it depend from cmake-core) to bootstrap
ccache.


More information about the kde-freebsd mailing list