blob: 4020603e60a9bf36276719bdb91fc6dc8cb5acf3 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-print/fax4cups/fax4cups-1.29.ebuild,v 1.4 2012/08/16 18:15:50 nativemad Exp $
EAPI=4
DESCRIPTION="Fax backend for CUPS"
HOMEPAGE="http://vigna.dsi.unimi.it/fax4CUPS/"
SRC_URI="http://vigna.dsi.unimi.it/fax4CUPS/fax4CUPS-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="+hylafax mgetty-fax efax capisuite-fax"
DEPEND="net-print/cups"
RDEPEND="${DEPEND}
|| (
hylafax? ( net-misc/hylafaxplus )
efax? ( net-misc/efax )
mgetty-fax? ( net-dialup/mgetty )
capisuite-fax? ( net-dialup/capisuite )
)
app-admin/sudo"
S=${WORKDIR}/fax4CUPS-${PV}
REQUIRED_USE="|| ( hylafax mgetty-fax efax capisuite-fax )"
src_install() {
doman fax4CUPS.1
exeinto $(cups-config --serverbin)/backend
insinto /usr/share/cups/model
for i in hylafax efax mgetty-fax capisuite-fax; do
if use $i
then
# Backend
doexe $i
# PPD
doins $i.ppd
fi
done
}
pkg_postinst() {
elog "Please execute '/etc/init.d/cups restart'"
elog "to get the *.ppd files working properly"
}
|