blob: 3a2028bf371ae1b6c8133daf5f8fb6805a469a4b (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/xsane/xsane-0.91.ebuild,v 1.5 2003/10/08 00:15:18 brandy Exp $
DESCRIPTION="graphical scanning frontend"
SRC_URI="http://www.xsane.org/download/${P}.tar.gz"
HOMEPAGE="http://www.xsane.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
IUSE="gtk2 nls jpeg png tiff"
DEPEND="media-gfx/sane-backends
|| (
gtk2? ( >=x11-libs/gtk+-2.0 )
=x11-libs/gtk+-1.2*
)
jpeg? ( media-libs/jpeg )
png? ( media-libs/libpng sys-libs/zlib )
tiff? ( media-libs/tiff sys-libs/zlib )"
src_compile() {
if use gtk2; then
einfo "xsane will be built with GTK+ 2.0, but will exclude the GIMP plugin!"
myconf="${myconf} --enable-gtk2 --disable-gimp"
fi
econf \
`use_enable nls` \
`use_enable jpeg` \
`use_enable png` \
`use_enable tiff` \
${myconf} \
|| die
emake || die
}
src_install() {
einstall || die
dodoc xsane.[A-Z]*
dohtml -r doc
# link xsane so it is seen as a plugin in gimp
if [ -d /usr/lib/gimp/1.2 ]; then
dodir /usr/lib/gimp/1.2/plug-ins
dosym /usr/bin/xsane /usr/lib/gimp/1.2/plug-ins
fi
# if [ -d /usr/lib/gimp/1.3 ]; then
# dodir /usr/lib/gimp/1.3/plug-ins
# dosym /usr/bin/xsane /usr/lib/gimp/1.3/plug-ins
# fi
}
|