blob: 2a540332c7eade87ff63374ceda33f6bedd5e6f2 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-print/hpijs/hpijs-1.4.1.ebuild,v 1.6 2003/10/30 15:00:54 lanius Exp $
inherit gnuconfig
DESCRIPTION="The HP Inkjet server for Ghostscript. Provides best output for HP Inkjet Printers and some LaserJets"
HOMEPAGE="http://hpinkjet.sourceforge.net"
KEYWORDS="x86 ppc alpha sparc hppa amd64"
SRC_URI="mirror://sourceforge/hpinkjet/${P}.tar.gz
http://www.linuxprinting.org/download/foomatic/foomatic-db-hpijs-1.4-1.tar.gz"
DEPEND="app-text/ghostscript
cups? ( net-print/cups )
net-print/foomatic-filters
foomaticdb? ( net-print/foomatic-db-engine )"
LICENSE="BSD"
SLOT="0"
IUSE="cups foomaticdb ppds"
src_compile () {
use amd64 && gnuconfig_update
use ppds \
&& myconf="--enable-foomatic-install" \
|| myconf="--disable-foomatic-install"
epatch ${FILESDIR}/hpijs-${PV}-rss.1.patch
econf --disable-cups-install ${myconf}
for i in Makefile; do
mv $i $i.orig ;
cat $i.orig | \
sed -e 's|/usr/share/cups|${prefix}/share/cups|g' | sed -e 's|/usr/lib/cups|${prefix}/lib/cups|g' > $i
done
make || die "compile problem"
if [ `use foomaticdb` ]; then
cd ../foomatic-db-hpijs-1.4-1
econf
rm -fR data-generators/hpijs-rss
make || die
cd ../${P}
fi
}
src_install () {
einstall || die
if [ "`use cups`" -a "`use ppds`" ] ; then
dodir /usr/share/cups/model
dosym /usr/share/ppd /usr/share/cups/model/foomatic-ppds
fi
use ppds && rm -f ${D}/usr/bin/foomatic-rip
if [ `use foomaticdb` ]; then
cd ../foomatic-db-hpijs-1.4-1
make DESTDIR=${D} install || die
fi
}
pkg_postinst () {
einfo "To use the hpijs driver with the PDQ spooler you will need the PDQ driver file"
einfo "for your printer from http://www.linuxprinting.org/show_driver.cgi?driver=hpijs"
einfo "This file should be installed in /etc/pdq/drivers"
einfo
einfo "The hpijs ebuild no longer creates the ppds automatically, please use foomatic"
einfo "to do so or remerge hpijs with the ppds use flag."
}
|