diff options
author | Allen-Kristjan Päll <akpall@fst.ee> | 2024-12-18 22:03:15 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-12-18 22:38:03 +0000 |
commit | b1361b7f66765faa4162b2083a34ac80dc1381de (patch) | |
tree | 9e7e96189b748f5c65a22dbbba25d1f5415f16b0 /dev-build | |
parent | gnome-extra/gnome-commander: Remove old (diff) | |
download | gentoo-b1361b7f66765faa4162b2083a34ac80dc1381de.tar.gz gentoo-b1361b7f66765faa4162b2083a34ac80dc1381de.tar.bz2 gentoo-b1361b7f66765faa4162b2083a34ac80dc1381de.zip |
dev-build/cmake: update 3.31.2
Improved errant files check and moved it to pkg_pretend
Bug: https://bugs.gentoo.org/599684
Bug: https://bugs.gentoo.org/753581
Signed-off-by: Allen-Kristjan Päll <akpall@fst.ee>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-build')
-rw-r--r-- | dev-build/cmake/cmake-3.31.2.ebuild | 38 |
1 files changed, 27 insertions, 11 deletions
diff --git a/dev-build/cmake/cmake-3.31.2.ebuild b/dev-build/cmake/cmake-3.31.2.ebuild index 77333d9623b1..a0cca4e35ac4 100644 --- a/dev-build/cmake/cmake-3.31.2.ebuild +++ b/dev-build/cmake/cmake-3.31.2.ebuild @@ -126,6 +126,33 @@ cmake_src_bootstrap() { || 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_unpack() { if [[ ${PV} == 9999 ]] ; then git-r3_src_unpack @@ -277,17 +304,6 @@ src_install() { } pkg_postinst() { - if [[ -z ${EPREFIX} ]] ; then - local file - # See bug #599684 and bug #753581 (at least) - for file in /etc/arch-release /etc/redhat-release /etc/debian_version ; do - eerror "Errant ${file} found!" - eerror "The presence of these files is known to confuse CMake's" - eerror "library path logic. Please (re)move this file:" - eerror " mv ${file} ${file}.bak" - done - fi - if use gui; then xdg_icon_cache_update xdg_desktop_database_update |