diff options
author | Marek Szuba <marecki@gentoo.org> | 2020-06-18 16:52:38 +0200 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2020-06-18 18:29:07 +0200 |
commit | 10cc105b82d53d20fc48ba340ea0a99266df9cc7 (patch) | |
tree | 43405aba2919ca9abf090a963932d68bfa4756c7 /media-gfx/darktable/darktable-9999.ebuild | |
parent | media-gfx/darktable: allow enabling LTO in RawSpeed via USE=lto (diff) | |
download | gentoo-10cc105b82d53d20fc48ba340ea0a99266df9cc7.tar.gz gentoo-10cc105b82d53d20fc48ba340ea0a99266df9cc7.tar.bz2 gentoo-10cc105b82d53d20fc48ba340ea0a99266df9cc7.zip |
media-gfx/darktable: if building with gcc, check for Graphite support
Closes: https://bugs.gentoo.org/695658
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'media-gfx/darktable/darktable-9999.ebuild')
-rw-r--r-- | media-gfx/darktable/darktable-9999.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/media-gfx/darktable/darktable-9999.ebuild b/media-gfx/darktable/darktable-9999.ebuild index 6236b05ef1d7..5fd513ae695c 100644 --- a/media-gfx/darktable/darktable-9999.ebuild +++ b/media-gfx/darktable/darktable-9999.ebuild @@ -59,7 +59,6 @@ DEPEND="${COMMON_DEPEND} >=sys-devel/clang-4 >=sys-devel/llvm-4 ) - openmp? ( >=sys-devel/gcc-6[openmp,graphite] ) " RDEPEND="${COMMON_DEPEND} kwallet? ( >=kde-frameworks/kwallet-5.34.0-r1 ) @@ -70,6 +69,12 @@ PATCHES=( ) pkg_pretend() { + # Bug #695658 + if tc-is-gcc; then + test-flags-CC -floop-block &> /dev/null || \ + die "Please switch to a gcc version built with USE=graphite" + fi + if use openmp ; then tc-has-openmp || die "Please switch to an openmp compatible compiler" fi |