blob: f228ddf78e80a1a250584eb084ba05271b94765e (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/sane-frontends/sane-frontends-1.0.11.ebuild,v 1.8 2004/07/14 18:29:54 agriffis Exp $
DESCRIPTION="Scanner Access Now Easy"
HOMEPAGE="http://www.sane-project.org"
SRC_URI="ftp://ftp.mostang.com/pub/sane/${P}/${P}.tar.gz
ftp://ftp.mostang.com/pub/sane/old-versions/${P}/${P}.tar.gz"
DEPEND=">=media-gfx/sane-backends-${PV}"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc"
IUSE=""
src_compile() {
econf \
--datadir=/usr/share/misc || die
emake || die "emake failed"
}
src_install() {
einstall datadir=${D}/usr/share/misc || die
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
}
|