blob: 752e4e5cf6ce4259c8d1e8b0c928495e4c67c3f4 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-print/mtink/mtink-1.0.11.ebuild,v 1.8 2008/06/27 10:15:52 ulm Exp $
inherit eutils
DESCRIPTION="mtink is a status monitor and inkjet cartridge changer for some Epson printers"
HOMEPAGE="http://xwtools.automatix.de/"
SRC_URI="http://xwtools.automatix.de/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE="cups doc X"
DEPEND="X? ( x11-libs/libX11
x11-libs/libXpm
x11-libs/libXt
x11-libs/openmotif )
cups? ( net-print/cups )
dev-libs/libusb"
src_compile() {
sed -i -e 's:DBG =.*:DBG =:' Makefile
local mytargets
mytargets="ttink detect/askPrinter mtinkd"
if use X;
then
mytargets="${mytargets} mtink mtinkc";
fi
make ${mytargets} || die "Compile problem"
}
src_install() {
exeinto /usr/bin
if use X; then
doexe mtinkc mtink ttink detect/askPrinter
else
doexe ttink detect/askPrinter
fi
dosbin mtinkd
newinitd "${FILESDIR}"/mtinkd.rc mtinkd
newconfd "${FILESDIR}"/mtinkd.confd mtinkd
use cups && \
exeinto /usr/lib/cups/backend; \
doexe etc/mtink-cups
dodoc README CHANGE.LOG LICENCE
use doc && {
dohtml html/*.gif html/*.html
}
}
pkg_postinst() {
# see #70310
chmod 700 /var/mtink /var/run/mtink 2>/dev/null
elog
elog "mtink needs correct permissions to access printer device."
elog "To do this you either need to run the following chmod command:"
elog "chmod 666 /dev/<device>"
elog "or set the suid bit on mtink, mtinkc and ttink in /usr/bin"
elog
}
|