blob: 7795fb79ec883128bc5698bf016b1b3f29438aa3 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-print/cups-pdf/cups-pdf-1.7.0a.ebuild,v 1.4 2005/11/19 23:17:45 dang 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/src/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64 ~sparc ~ppc"
IUSE=""
DEPEND="net-print/cups
virtual/ghostscript"
src_compile() {
cd src
gcc ${CFLAGS} -o cups-pdf cups-pdf.c || die "Compilation failed."
}
src_install () {
dodir /usr/lib/cups/backend
exeinto /usr/lib/cups/backend
doexe src/cups-pdf
dodir /usr/share/cups/model
insinto /usr/share/cups/model
doins extra/PostscriptColor.ppd.gz
}
|