blob: 6d5d9aab8cf4cf3ddbbadd0801927e3f1878ee68 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-print/cups-pdf/cups-pdf-1.3.1.ebuild,v 1.1 2003/12/29 14:44:34 lanius Exp $
DESCRIPTION="Provides a virtual printer for CUPS to produce PDF files."
HOMEPAGE="http://cip.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/"
MY_P="${PN}_${PV/_/}"
SRC_URI="http://cip.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="net-print/cups
virtual/ghostscript"
src_compile() {
gcc ${CFLAGS} -o cups-pdf cups-pdf.c || die "Compilation failed."
}
src_install () {
dodir /usr/lib/cups/backend
exeinto /usr/lib/cups/backend
doexe cups-pdf
dodir /usr/share/cups/model
insinto /usr/share/cups/model
doins PostscriptColor.ppd.gz
dodoc ${FILESDIR}/README.gentoo
}
pkg_postinst () {
einfo "You will find some informations about cups-pdf in this file:"
einfo "/usr/share/doc/${PF}/README.gentoo.gz"
}
|