From 3e06dd4dbcd2bb33f3d75f20c64ea64f105b3afe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Miroslav=20=C5=A0ulc?= Date: Thu, 7 Feb 2019 14:31:04 +0100 Subject: [PATCH] media-gfx/xsane-0.999-r2: fixed gimptool handling MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Closes: https://bugs.gentoo.org/666639 Package-Manager: Portage-2.3.59, Repoman-2.3.12 Signed-off-by: Miroslav Å ulc --- media-gfx/xsane/xsane-0.999-r2.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/media-gfx/xsane/xsane-0.999-r2.ebuild b/media-gfx/xsane/xsane-0.999-r2.ebuild index 65a365cff251..c45649a3a835 100644 --- a/media-gfx/xsane/xsane-0.999-r2.ebuild +++ b/media-gfx/xsane/xsane-0.999-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -76,10 +76,9 @@ src_install() { # link xsane so it is seen as a plugin in gimp if use gimp; then local plugindir - if [ -x "${EPREFIX}"/usr/bin/gimptool ]; then - plugindir="$(gimptool --gimpplugindir)/plug-ins" - elif [ -x "${EPREFIX}"/usr/bin/gimptool-2.0 ]; then - plugindir="$(gimptool-2.0 --gimpplugindir)/plug-ins" + local gimptool=$(ls "${EPREFIX}"/usr/bin/gimptool* | head -n1) + if [ -n "${gimptool}" ]; then + plugindir="$(${gimptool} --gimpplugindir)/plug-ins" else die "Can't find GIMP plugin directory." fi -- 2.26.2