From d59f5f405188d93f5c00e21840930d4f1eaf8dd1 Mon Sep 17 00:00:00 2001 From: BlackNoxis Date: Wed, 31 Dec 2014 22:37:52 +0200 Subject: Added media gfx,libs,sound --- media-gfx/xsane-gimp/xsane-gimp-0.998-r1.ebuild | 63 +++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 media-gfx/xsane-gimp/xsane-gimp-0.998-r1.ebuild (limited to 'media-gfx/xsane-gimp/xsane-gimp-0.998-r1.ebuild') diff --git a/media-gfx/xsane-gimp/xsane-gimp-0.998-r1.ebuild b/media-gfx/xsane-gimp/xsane-gimp-0.998-r1.ebuild new file mode 100644 index 00000000..ad80c7dd --- /dev/null +++ b/media-gfx/xsane-gimp/xsane-gimp-0.998-r1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="4" +inherit eutils + +DESCRIPTION="XSane plugin for GIMP" +HOMEPAGE="http://www.xsane.org/" +MY_P="${P/-gimp}" +SRC_URI="http://www.xsane.org/download/${MY_P}.tar.gz + http://dev.gentoo.org/~dilfridge/distfiles/${MY_P}-patches-2.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +RDEPEND="media-gfx/sane-backends + ~media-gfx/xsane-${PV}[-gimp] + media-gfx/gimp" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + # Apply multiple fixes from different distributions + epatch "${WORKDIR}/${MY_P}-patches-2"/*.patch +} + +src_configure() { + econf --enable-gtk2 \ + $(use_enable nls) \ + --disable-jpeg \ + --disable-png \ + --disable-tiff \ + --disable-lcms \ + --disable-sanetest +} + +src_install() { + # link xsane so it is seen as a plugin in gimp + local plugindir + if [ -x /usr/bin/gimptool ]; then + plugindir="$(gimptool --gimpplugindir)/plug-ins" + elif [ -x /usr/bin/gimptool-2.0 ]; then + plugindir="$(gimptool-2.0 --gimpplugindir)/plug-ins" + else + die "Can't find GIMP plugin directory." + fi + newbin src/xsane xsane-gimp + dodir "${plugindir}" + dosym /usr/bin/xsane-gimp "${plugindir}"/xsane +} + +pkg_postinst() { + elog "If a new scanner is added or the device of the the scanner has" + elog "changed, it is recommended to rebuild the cache:" + elog "issue \"touch /usr/bin/xsane-gimp\" or delete the plugin cache" + elog "(~/.gimp*/pluginrc)." +} -- cgit v1.2.3