diff options
author | Timo Gurr <tgurr@gentoo.org> | 2008-07-15 20:42:16 +0000 |
---|---|---|
committer | Timo Gurr <tgurr@gentoo.org> | 2008-07-15 20:42:16 +0000 |
commit | 1f1d0ebe34cc70e7576e995c25da35b953ac961e (patch) | |
tree | f9aa81716731afed7847ceb4dc58480c0f551bee /net-print/cups-pdf/cups-pdf-2.4.8.ebuild | |
parent | Fix compilation with -x86emu and klibc-1.5.12 (bug #231839). (diff) | |
download | historical-1f1d0ebe34cc70e7576e995c25da35b953ac961e.tar.gz historical-1f1d0ebe34cc70e7576e995c25da35b953ac961e.tar.bz2 historical-1f1d0ebe34cc70e7576e995c25da35b953ac961e.zip |
Version bump.
Package-Manager: portage-2.2_rc1/cvs/Linux 2.6.25-gentoo-r5 x86_64
Diffstat (limited to 'net-print/cups-pdf/cups-pdf-2.4.8.ebuild')
-rw-r--r-- | net-print/cups-pdf/cups-pdf-2.4.8.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/net-print/cups-pdf/cups-pdf-2.4.8.ebuild b/net-print/cups-pdf/cups-pdf-2.4.8.ebuild new file mode 100644 index 000000000000..181ef8eae6b2 --- /dev/null +++ b/net-print/cups-pdf/cups-pdf-2.4.8.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2008 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.8.ebuild,v 1.1 2008/07/15 20:42:16 tgurr Exp $ + +inherit toolchain-funcs multilib + +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 + 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/CUPS-PDF.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." +} |