Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] imagemagick depends on pango even if not available
@ 2015-08-06 18:15 Mauro Condarelli
  2015-08-06 20:48 ` Thomas Petazzoni
  0 siblings, 1 reply; 6+ messages in thread
From: Mauro Condarelli @ 2015-08-06 18:15 UTC (permalink / raw)
  To: buildroot

Hi,
it seems imagemagick package does not force dependency on pango, but fails if it's not found.

This trivial patch solves the problem for me:


$ git diff
diff --git a/package/imagemagick/imagemagick.mk b/package/imagemagick/imagemagick.mk
index 1594f69..e8c7ab7 100644
--- a/package/imagemagick/imagemagick.mk
+++ b/package/imagemagick/imagemagick.mk
@@ -44,6 +44,13 @@ else
  IMAGEMAGICK_CONF_OPTS += --without-fontconfig
  endif

+ifeq ($(BR2_PACKAGE_PANGO),y)
+IMAGEMAGICK_CONF_OPTS += --with-pango
+IMAGEMAGICK_DEPENDENCIES += pango
+else
+IMAGEMAGICK_CONF_OPTS += --without-pango
+endif
+
  ifeq ($(BR2_PACKAGE_FREETYPE),y)
  IMAGEMAGICK_CONF_OPTS += --with-freetype
  IMAGEMAGICK_CONF_ENV += \


Regards
Mauro Condarelli

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-08-10 14:16 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-06 18:15 [Buildroot] [PATCH] imagemagick depends on pango even if not available Mauro Condarelli
2015-08-06 20:48 ` Thomas Petazzoni
2015-08-06 21:49   ` Mauro Condarelli
2015-08-06 22:01     ` Thomas Petazzoni
2015-08-06 22:04     ` Thomas Petazzoni
2015-08-10 14:16       ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox