summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sping@gentoo.org>2018-01-10 23:03:12 +0100
committerSebastian Pipping <sping@gentoo.org>2018-01-10 23:08:13 +0100
commit64c8f56ec6b193ccab99d03de658684e5eb7e599 (patch)
tree349d7e735203560917ecfc7955c2ca4d83fa2490 /media-libs/gegl/files
parentx11-libs/wxGTK: stable 3.0.3 for ppc/ppc64, bug #643956 (diff)
downloadgentoo-64c8f56ec6b193ccab99d03de658684e5eb7e599.tar.gz
gentoo-64c8f56ec6b193ccab99d03de658684e5eb7e599.tar.bz2
gentoo-64c8f56ec6b193ccab99d03de658684e5eb7e599.zip
media-libs/gegl: Remove ghost dependency on media-gfx/exiv2
Configure option --without-exiv2 was used already but broken in a way where it would still do auto-detection for exiv2 and end up linking a non-inst programm against it. Ebuilds for 0.3.20+ do not need patching as its fixed upstream for a while now. Closes: https://bugs.gentoo.org/641872 Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'media-libs/gegl/files')
-rw-r--r--media-libs/gegl/files/gegl-0.2.0-fix-without-exiv2.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/media-libs/gegl/files/gegl-0.2.0-fix-without-exiv2.patch b/media-libs/gegl/files/gegl-0.2.0-fix-without-exiv2.patch
new file mode 100644
index 000000000000..96a4188926df
--- /dev/null
+++ b/media-libs/gegl/files/gegl-0.2.0-fix-without-exiv2.patch
@@ -0,0 +1,30 @@
+From c0b4da18e199d1043738c034269f5dd6a4aa7d99 Mon Sep 17 00:00:00 2001
+From: Sebastian Pipping <sebastian@pipping.org>
+Date: Wed, 10 Jan 2018 22:39:05 +0100
+Subject: [PATCH] Fix ./configure --without-exiv2
+
+Variable names were in error
+
+Bug: https://bugs.gentoo.org/641872
+---
+ configure.ac | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 30d306e..146b271 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -977,8 +977,8 @@ AC_SUBST(LIBSPIRO)
+
+ AC_ARG_WITH(exiv2, [ --without-exiv2 build without libexiv2 support])
+
+-have_libexiv2="no"
+-if test "x$with_libexiv2" != "xno"; then
++have_exiv2="no"
++if test "x$with_exiv2" != "xno"; then
+ PKG_CHECK_MODULES(EXIV2, exiv2,
+ have_exiv2="yes",
+ have_exiv2="no (exiv2 library not found)")
+--
+2.16.0.rc0
+