blob: 230191ec791bb8373f3531a10fbf47e8284671f5 (
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-print/hpoj/hpoj-0.91-r2.ebuild,v 1.4 2004/03/27 17:33:46 lanius Exp $
DESCRIPTION="HP OfficeJet Linux driver"
HOMEPAGE="http://hpoj.sourceforge.net/"
SRC_URI="mirror://sourceforge/hpoj/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE="ssl scanner qt X snmp cups usb"
DEPEND="qt? ( >=x11-libs/qt-3.1.0-r1 )
ssl? ( >=dev-libs/openssl-0.9.6h )
scanner? ( >=media-gfx/sane-backends-1.0.9 )
scanner? ( || ( X? ( >=media-gfx/xsane-0.89 ) >=media-gfx/sane-frontends-1.0.9 ) )
snmp? ( virtual/snmp )
cups? ( >=net-print/cups-1.1.18-r2 )
usb? ( dev-libs/libusb sys-apps/hotplug )"
src_compile() {
epatch ${FILESDIR}/udev.patch
use snmp \
&& myconf="${myconf} --with-snmp=/usr" \
|| myconf="${myconf} --without-snmp"
use cups \
&& myconf="${myconf} --with-cups-backend=/usr" \
|| myconf="${myconf} --without-cups"
# xojpanel
use qt \
&& myconf="${myconf} --with-qt=/usr/qt/3" \
|| myconf="${myconf} --without-qt"
use scanner \
&& myconf="${myconf} --with-sane-packend=/usr" \
|| myconf="${myconf} --without-sane"
econf ${myconf}
emake || die "compilation failed"
}
src_install() {
cd apps/cmdline
dobin ptal-print hpojip-test ptal-connect ptal-device ptal-devid ptal-hp ptal-pml
cd ../../doc
dohtml *html
cd ..
dodoc COPYING LICENSE LICENSE.OpenSSL README
use qt && dobin apps/xojpanel/xojpanel
dodir /usr/include
insinto /usr/include
doins include/hpojip.h include/ptal.h
cd lib
dolib.so hpojip/libhpojip.so*
dolib.so ptal/libptal.so*
dodir /usr/lib/sane
insinto /usr/lib/sane
doins sane/libsane-hpoj.so*
dodir /usr/lib/ghostscript/filt \
/usr/lib/ghostscript/filt/bjc600 \
/usr/lib/ghostscript/filt/bjc600.1 \
/usr/lib/ghostscript/filt/bjc600.16 \
/usr/lib/ghostscript/filt/bjc600.24 \
/usr/lib/ghostscript/filt/bjc600.24.3 \
/usr/lib/ghostscript/filt/bjc600.32 \
/usr/lib/ghostscript/filt/bjc600.8 \
/usr/lib/ghostscript/filt/bjc600.8.1 \
/usr/lib/ghostscript/filt/bjt600.32 \
/usr/lib/ghostscript/filt/direct \
/usr/lib/ghostscript/filt/gsif \
/usr/lib/ghostscript/filt/indirect \
/usr/lib/ghostscript/filt
cd ..
dosbin apps/cmdline/ptal-photod apps/cmdline/ptal-printd mlcd/ptal-mlcd scripts/ptal-cups
exeinto /usr/sbin
doexe scripts/ptal-init
dodir /usr/lib/cups/backend
dosym /usr/sbin/ptal-cups /usr/lib/cups/backend/ptal
exeinto /etc/init.d
newexe ${FILESDIR}/hpoj.init hpoj
}
pkg_postinst() {
echo
einfo "You might want to emerge app-admin/mtools for photo-card support."
echo
einfo "You might want to emerge net-print/hpijs for better printing quality."
echo
einfo "Before starting hpoj you have to set it up with 'ptal-init setup'"
echo
einfo "If you are upgrading from a previous version, re-run ptal-init setup"
einfo "as the format of the connection has changed again and your previously"
einfo "installed hpoj-device will not be recognized."
echo
}
|