diff options
-rw-r--r-- | media-gfx/rawtherapee/rawtherapee-5.8-r1.ebuild | 8 | ||||
-rw-r--r-- | media-gfx/rawtherapee/rawtherapee-5.8.ebuild | 10 |
2 files changed, 11 insertions, 7 deletions
diff --git a/media-gfx/rawtherapee/rawtherapee-5.8-r1.ebuild b/media-gfx/rawtherapee/rawtherapee-5.8-r1.ebuild index ea59ec8cbd19..6bc9d3808b2d 100644 --- a/media-gfx/rawtherapee/rawtherapee-5.8-r1.ebuild +++ b/media-gfx/rawtherapee/rawtherapee-5.8-r1.ebuild @@ -47,9 +47,11 @@ PATCHES=( ) pkg_pretend() { - if use openmp ; then - tc-has-openmp || die "Please switch to an openmp compatible compiler" - fi + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp +} + +pkg_setup() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp } src_configure() { diff --git a/media-gfx/rawtherapee/rawtherapee-5.8.ebuild b/media-gfx/rawtherapee/rawtherapee-5.8.ebuild index ef4b8c6fd287..9df073266f82 100644 --- a/media-gfx/rawtherapee/rawtherapee-5.8.ebuild +++ b/media-gfx/rawtherapee/rawtherapee-5.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -37,9 +37,11 @@ BDEPEND="virtual/pkgconfig" S="${WORKDIR}/${MY_P}" pkg_pretend() { - if use openmp ; then - tc-has-openmp || die "Please switch to an openmp compatible compiler" - fi + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp +} + +pkg_setup() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp } src_configure() { |