blob: ad80c7dda74aa0fd3d64541c679c95195231e398 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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)."
}
|