summaryrefslogtreecommitdiff
blob: c53ead5194ef603b591ff8630fe539ba84709a56 (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
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Tools Team <tools@gentoo.org>
# /space/gentoo/cvsroot/gentoo-x86/media-gfx/xsane/xsane-0.77-r1.ebuild,v 1.2 2002/04/28 04:50:25 seemant Exp

S=${WORKDIR}/${P}
DESCRIPTION="XSane is a graphical scanning frontend"
SRC_URI="http://www.xsane.org/download/${P}.tar.gz"
HOMEPAGE="http://www.xsane.org"

DEPEND="media-gfx/sane-backends media-gfx/gimp"

src_compile() {

	./configure --prefix=/usr --mandir=/usr/man --host=${CHOST} || die
	make || die

}

src_install () {

	make prefix=${D}/usr/ mandir=${D}/usr/man install || 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
		mkdir -p ${D}/usr/lib/gimp/1.2/plug-ins
		ln -sf /usr/bin/xsane ${D}/usr/lib/gimp/1.2/plug-ins
	fi
	if [ -d /usr/lib/gimp/1.3 ]; then
		mkdir -p ${D}/usr/lib/gimp/1.3/plug-ins
		ln -sf /usr/bin/xsane ${D}/usr/lib/gimp/1.3/plug-ins
	fi
}