blob: be81f9e341ee889defe66ba74bb624cfd17edd70 (
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
|
# Copyright 1999-2007 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.4.6.ebuild,v 1.1 2007/06/09 00:09:44 genstef Exp $
inherit toolchain-funcs multilib
DESCRIPTION="Provides a virtual printer for CUPS to produce PDF files."
HOMEPAGE="http://cip.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/"
SRC_URI="http://cip.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/src/${PN}_${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="net-print/cups
virtual/ghostscript"
src_compile() {
cd src
$(tc-getCC) ${CFLAGS} -o cups-pdf cups-pdf.c || die "Compilation failed."
}
src_install () {
exeinto $(cups-config --serverbin)/backend
has_version '>=net-print/cups-1.2' && exeopts -m0700
doexe src/cups-pdf
insinto /usr/share/cups/model
doins extra/PostscriptColor.ppd
insinto /etc/cups
doins extra/cups-pdf.conf
dodoc ChangeLog README
newdoc contrib/Contents contrib_Contents
}
pkg_postinst () {
einfo "Please view both the README and contrib_Contents files"
einfo "as you may want to adjust some settings and/or use"
einfo "contributed software. In the latter case you may need"
einfo "to extract some files from the ${P} distfile."
}
|