You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
944 B
50 lines
944 B
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
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"
|
|
REQUIRED_USE="|| ( hylafax mgetty-fax efax )"
|
|
|
|
DEPEND="net-print/cups"
|
|
RDEPEND="${DEPEND}
|
|
|| (
|
|
hylafax? ( net-misc/hylafaxplus )
|
|
efax? ( net-misc/efax )
|
|
mgetty-fax? ( net-dialup/mgetty )
|
|
)
|
|
app-admin/sudo
|
|
"
|
|
|
|
S=${WORKDIR}/fax4CUPS-${PV}
|
|
|
|
src_install() {
|
|
doman fax4CUPS.1
|
|
|
|
exeinto $(cups-config --serverbin)/backend
|
|
insinto /usr/share/cups/model
|
|
|
|
for i in hylafax efax mgetty-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"
|
|
}
|