media-gfx/xsane-0.999-r2: fixed gimptool handling
authorMiroslav Šulc <fordfrog@gentoo.org>
Thu, 7 Feb 2019 13:31:04 +0000 (14:31 +0100)
committerMiroslav Šulc <fordfrog@gentoo.org>
Thu, 7 Feb 2019 13:31:27 +0000 (14:31 +0100)
Closes: https://bugs.gentoo.org/666639
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
media-gfx/xsane/xsane-0.999-r2.ebuild

index 65a365cff2512a445c4f23489857222c7594352a..c45649a3a835547d0f874c5440d3ca6c28b3a91b 100644 (file)
@@ -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