summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-gfx/sane-backends/sane-backends-1.0.9.ebuild')
-rw-r--r--media-gfx/sane-backends/sane-backends-1.0.9.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/media-gfx/sane-backends/sane-backends-1.0.9.ebuild b/media-gfx/sane-backends/sane-backends-1.0.9.ebuild
deleted file mode 100644
index 8103cfbfa4e1..000000000000
--- a/media-gfx/sane-backends/sane-backends-1.0.9.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/sane-backends/sane-backends-1.0.9.ebuild,v 1.6 2003/07/11 06:20:02 phosphan Exp $
-
-IUSE=""
-
-DESCRIPTION="Scanner Access Now Easy - Backends"
-HOMEPAGE="http://www.mostang.com/sane/"
-
-DEPEND=">=media-libs/jpeg-6b
- x86? ( sys-libs/libieee1284 )"
-
-SRC_URI="ftp://ftp.mostang.com/pub/sane/old-versions/sane-${PV}/${P}.tar.gz"
-S=${WORKDIR}/${P}
-SLOT="0"
-LICENSE="GPL-2 public-domain"
-KEYWORDS="x86 ~ppc ~sparc ~alpha"
-
-src_unpack() {
- unpack ${A}
- cp ${FILESDIR}/linux_sg3_err.h ${S}/sanei
-
- #only generate the .ps and not the fonts
- cp ${S}/doc/Makefile.in ${S}/doc/Makefile.in.orig
- sed -e 's:dvips sane.dvi -o sane.ps:dvips sane.dvi -o -M0 sane.ps:' \
- ${S}/doc/Makefile.in.orig > ${S}/doc/Makefile.in
-}
-
-src_compile() {
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/share/man \
- --host=${CHOST} || die
- make || die
-}
-
-src_install () {
- make prefix=${D}/usr \
- sysconfdir=${D}/etc \
- mandir=${D}/usr/share/man \
- docdir=${D}/usr/share/doc/${PF} \
- install || die
-
- docinto backend
- cd backend
- dodoc GUIDE *.README *.BUGS *.CHANGES *.FAQ *.TODO
-
- echo "SANE_CONFIG_DIR=/etc/sane.d" > 30sane
- insinto /etc/env.d
- doins 30sane
-
-}