blob: 140fa36cf28e31c266cb3766e36b2f5d25e4ee9c (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-print/cups-pdf/cups-pdf-2.5.1-r1.ebuild,v 1.1 2011/05/30 17:05:21 voyageur Exp $
EAPI=4
inherit toolchain-funcs
DESCRIPTION="Provides a virtual printer for CUPS to produce PDF files."
HOMEPAGE="http://www.cups-pdf.de/"
SRC_URI="http://www.cups-pdf.de/src/${PN}_${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="net-print/cups
app-text/ghostscript-gpl"
RDEPEND="${DEPEND}"
src_compile() {
cd "${S}"/src
$(tc-getCC) ${CFLAGS} ${LDFLAGS} -o ${PN} ${PN}.c || die "Compilation failed."
}
src_install () {
exeinto /usr/libexec/cups/backend
exeopts -m0700
doexe src/cups-pdf
insinto /usr/share/cups/model
doins extra/CUPS-PDF.ppd
insinto /etc/cups
doins extra/cups-pdf.conf
dodoc ChangeLog README
newdoc contrib/Contents contrib_Contents
}
pkg_postinst () {
elog "Please view both the README and contrib_Contents files"
elog "as you may want to adjust some settings and/or use"
elog "contributed software. In the latter case you may need"
elog "to extract some files from the ${P} distfile."
}
|