summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2022-01-15 14:27:17 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2022-01-15 15:14:59 +0100
commit22c235a9f135d9469fb3c5e9dd9d35ae08c8524f (patch)
treea61c556652d95d9c8f04a04e6c9a59045a0ca1ad /net-print
parentkde-plasma/libkworkspace: remove unused patch (diff)
downloadgentoo-22c235a9f135d9469fb3c5e9dd9d35ae08c8524f.tar.gz
gentoo-22c235a9f135d9469fb3c5e9dd9d35ae08c8524f.tar.bz2
gentoo-22c235a9f135d9469fb3c5e9dd9d35ae08c8524f.zip
net-print/cups-pdf: Drop 3.0.1-r1
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-print')
-rw-r--r--net-print/cups-pdf/cups-pdf-3.0.1-r1.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/net-print/cups-pdf/cups-pdf-3.0.1-r1.ebuild b/net-print/cups-pdf/cups-pdf-3.0.1-r1.ebuild
deleted file mode 100644
index f775a9ed1b83..000000000000
--- a/net-print/cups-pdf/cups-pdf-3.0.1-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="Provides a virtual printer for CUPS to produce PDF files"
-HOMEPAGE="https://www.cups-pdf.de/"
-SRC_URI="https://www.cups-pdf.de/src/${PN}_${PV/_}.tar.gz"
-S=${WORKDIR}/${PN}-${PV/_}
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc ~ppc64 x86"
-IUSE="+ppds"
-
-RDEPEND="
- net-print/cups
- <app-text/ghostscript-gpl-9.54
-"
-DEPEND="${RDEPEND}"
-
-src_compile() {
- pushd src >/dev/null
- $(tc-getCC) ${LDFLAGS} ${CFLAGS} ${PN}.c -o ${PN} -lcups || die
- popd >/dev/null
-}
-
-src_install() {
- exeinto /usr/libexec/cups/backend
- exeopts -m0700
- doexe src/cups-pdf
-
- insinto /etc/cups
- doins extra/cups-pdf.conf
-
- insinto /usr/share/cups/model
- if use ppds; then
- doins extra/CUPS-PDF_opt.ppd
- else
- doins extra/CUPS-PDF_noopt.ppd
- fi
-
- dodoc ChangeLog README
-}