blob: 9179d12ced784471a1fb824d9d6c8782c52fab6b (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-gfx/sane-frontends/sane-frontends-1.0.8.ebuild,v 1.3 2002/07/11 06:30:28 drobbins Exp $
DESCRIPTION="Scanner Access Now Easy"
HOMEPAGE="http://www.mostang.com/sane/"
DEPEND=">=media-gfx/sane-backends-1.0.8"
SRC_URI="ftp://ftp.mostang.com/pub/sane/sane-${PV}/${P}.tar.gz"
S=${WORKDIR}/${P}
src_compile() {
./configure \
--prefix=/usr \
--mandir=/usr/man \
--datadir=/usr/share/misc \
--host=${CHOST} || die "configure failed"
emake || die "emake failed"
}
src_install () {
make \
prefix=${D}/usr \
datadir=${D}/usr/share/misc \
mandir=${D}/usr/man \
install || die "make install failed"
dodir /usr/lib/gimp/1.2/plug-ins
dosym /usr/bin/xscanimage /usr/lib/gimp/1.2/plug-ins/xscanimage
dodoc AUTHORS COPYING Changelog NEWS PROBLEMS README TODO
}
|