kde-plasma/libkscreen: fix minimum GCC version

$ python3.13 -c 'import portage; print(portage.versions.vercmp("13.4.0", "13.4"))'
1

Bug: https://bugs.gentoo.org/964195
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2025-10-12 15:18:05 +01:00
parent 2623b2acd9
commit 3292c8cf71

View File

@@ -38,9 +38,9 @@ BDEPEND="
BDEPEND+=" || ( >=dev-qt/qtbase-6.10:6[wayland] <dev-qt/qtwayland-6.10:6 )"
pkg_pretend() {
[[ ${MERGE_TYPE} != binary ]] && tc-check-min_ver gcc 13.4.0
[[ ${MERGE_TYPE} != binary ]] && tc-check-min_ver gcc 13.4
}
pkg_setup() {
[[ ${MERGE_TYPE} != binary ]] && tc-check-min_ver gcc 13.4.0
[[ ${MERGE_TYPE} != binary ]] && tc-check-min_ver gcc 13.4
}