diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2020-02-21 10:49:50 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2020-02-21 14:52:01 -0500 |
commit | a4603d7c1dc746eb7b4b0170d5120ca5e5efb222 (patch) | |
tree | 71bc10d35e3ed82fa04246dec9113fd742f3ab04 /media-gfx/inkscape | |
parent | net-wireless/tempestsdr: add a stable candidate (diff) | |
download | gentoo-a4603d7c1dc746eb7b4b0170d5120ca5e5efb222.tar.gz gentoo-a4603d7c1dc746eb7b4b0170d5120ca5e5efb222.tar.bz2 gentoo-a4603d7c1dc746eb7b4b0170d5120ca5e5efb222.zip |
media-gfx/inkscape: disable the effects of USE=nls.
The upstream build system is broken with USE=nls at the moment.
Rather than drop the USE flag entirely (which might lead users to
think that it's going away) this commit comments out the resulting
-DWITH_NLS parameter that gets passed to the build system. Thus
"USE=-nls" becomes a lie, but it should begin to work again once the
upstream bug is fixed. There is a highly visible comment in the ebuild
reminding the maintainers to check on the upstream bug periodically.
Bug: https://bugs.gentoo.org/699658
Inkscape-bug: https://gitlab.com/inkscape/inkscape/issues/168
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'media-gfx/inkscape')
-rw-r--r-- | media-gfx/inkscape/inkscape-1.0_beta2-r1.ebuild | 9 | ||||
-rw-r--r-- | media-gfx/inkscape/inkscape-9999.ebuild | 9 |
2 files changed, 16 insertions, 2 deletions
diff --git a/media-gfx/inkscape/inkscape-1.0_beta2-r1.ebuild b/media-gfx/inkscape/inkscape-1.0_beta2-r1.ebuild index 52bc56d18a54..6350c33d3374 100644 --- a/media-gfx/inkscape/inkscape-1.0_beta2-r1.ebuild +++ b/media-gfx/inkscape/inkscape-1.0_beta2-r1.ebuild @@ -132,13 +132,20 @@ src_configure() { -DWITH_GRAPHICS_MAGICK=$(usex graphicsmagick $(usex imagemagick)) # both must be enabled to use GraphicsMagick -DWITH_JEMALLOC=$(usex jemalloc) -DENABLE_LCMS=$(usex lcms) - -DWITH_NLS=$(usex nls) -DWITH_OPENMP=$(usex openmp) -DBUILD_SHARED_LIBS=$(usex !static-libs) -DWITH_SVG2=$(usex svg2) -DWITH_LIBVISIO=$(usex visio) -DWITH_LIBWPG=$(usex wpg) ) + # We should also have, + # + # -DWITH_NLS=$(usex nls) + # + # in this list, but it's broken upstream at the moment: + # + # * https://bugs.gentoo.org/699658 + # * https://gitlab.com/inkscape/inkscape/issues/168 cmake_src_configure } diff --git a/media-gfx/inkscape/inkscape-9999.ebuild b/media-gfx/inkscape/inkscape-9999.ebuild index bc57307639b5..aa29d78aa48f 100644 --- a/media-gfx/inkscape/inkscape-9999.ebuild +++ b/media-gfx/inkscape/inkscape-9999.ebuild @@ -131,13 +131,20 @@ src_configure() { -DWITH_GRAPHICS_MAGICK=$(usex graphicsmagick $(usex imagemagick)) # both must be enabled to use GraphicsMagick -DWITH_JEMALLOC=$(usex jemalloc) -DENABLE_LCMS=$(usex lcms) - -DWITH_NLS=$(usex nls) -DWITH_OPENMP=$(usex openmp) -DBUILD_SHARED_LIBS=$(usex !static-libs) -DWITH_SVG2=$(usex svg2) -DWITH_LIBVISIO=$(usex visio) -DWITH_LIBWPG=$(usex wpg) ) + # We should also have, + # + # -DWITH_NLS=$(usex nls) + # + # in this list, but it's broken upstream at the moment: + # + # * https://bugs.gentoo.org/699658 + # * https://gitlab.com/inkscape/inkscape/issues/168 cmake_src_configure } |