diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-03-29 12:40:45 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-03-29 12:40:45 +0000 |
commit | 835609fdb074cfe3e3ca8645d8ff1d0e47e50ad0 (patch) | |
tree | f28b25d24498e0f3cd8b657b2669b882d6d65053 /net-print | |
parent | Remove capisuite-fax as capisuite is going to be removed (#330329) (diff) | |
download | gentoo-2-835609fdb074cfe3e3ca8645d8ff1d0e47e50ad0.tar.gz gentoo-2-835609fdb074cfe3e3ca8645d8ff1d0e47e50ad0.tar.bz2 gentoo-2-835609fdb074cfe3e3ca8645d8ff1d0e47e50ad0.zip |
Remove capisuite-fax as capisuite is going to be removed (#330329)
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-print')
-rw-r--r-- | net-print/fax4cups/ChangeLog | 9 | ||||
-rw-r--r-- | net-print/fax4cups/fax4cups-1.29-r1.ebuild | 50 |
2 files changed, 57 insertions, 2 deletions
diff --git a/net-print/fax4cups/ChangeLog b/net-print/fax4cups/ChangeLog index 417047a13e14..78f275624af4 100644 --- a/net-print/fax4cups/ChangeLog +++ b/net-print/fax4cups/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-print/fax4cups -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-print/fax4cups/ChangeLog,v 1.23 2014/03/09 01:22:33 mrueg Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-print/fax4cups/ChangeLog,v 1.24 2015/03/29 12:40:45 pacho Exp $ + +*fax4cups-1.29-r1 (29 Mar 2015) + + 29 Mar 2015; Pacho Ramos <pacho@gentoo.org> +fax4cups-1.29-r1.ebuild: + Remove capisuite-fax as capisuite is going to be removed (#330329) 09 Mar 2014; Manuel Rüger <mrueg@gentoo.org> -fax4cups-1.28.ebuild: Cleanup old. diff --git a/net-print/fax4cups/fax4cups-1.29-r1.ebuild b/net-print/fax4cups/fax4cups-1.29-r1.ebuild new file mode 100644 index 000000000000..468912584c4b --- /dev/null +++ b/net-print/fax4cups/fax4cups-1.29-r1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-print/fax4cups/fax4cups-1.29-r1.ebuild,v 1.1 2015/03/29 12:40:45 pacho Exp $ + +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" +} |