GraphicsMagick is a replacement for ImageMagick. Now media-libs/xine-lib depends only on media-gfx/imagemagick.
Sorry about the mass reassignment, but this undertaking really shouldn't burden bug-wranglers further.
configure.ac has: dnl --------------------------------------------- dnl MagickWand API of Imagemagick. dnl --------------------------------------------- AC_ARG_WITH([imagemagick], AS_HELP_STRING([--without-imagemagick], [Build without ImageMagick image decoder])) if test "x$with_imagemagick" != "xno"; then PKG_CHECK_MODULES([WAND], [Wand], [have_imagemagick=yes], [have_imagemagick=no]) if test "x$with_imagemagick" = 'xno'; then PKG_CHECK_MODULES([WAND], [MagickWand], [have_imagemagick=yes], [have_imagemagick=no]) fi if test "x$with_imagemagick" = "xyes" && test "x$have_imagemagick" = "xno"; then AC_MSG_ERROR([ImageMagick support requested, but neither Wand nor MagickWand were found]) elif test "x$have_imagemagick" = "xyes"; then AC_DEFINE([HAVE_WAND], [1], [Define this if you have ImageMagick installed]) fi fi AM_CONDITIONAL([HAVE_WAND], [test "x$have_imagemagick" = "xyes"]) AC_SUBST(WAND_CFLAGS) AC_SUBST(WAND_LIBS) so likely doesn't work with graphicsmagick...