Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/cups-pdf/
Date: Sat, 15 Jan 2022 14:15:13
Message-Id: 1642256099.22c235a9f135d9469fb3c5e9dd9d35ae08c8524f.asturm@gentoo
1 commit: 22c235a9f135d9469fb3c5e9dd9d35ae08c8524f
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 15 13:27:17 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 15 14:14:59 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22c235a9
7
8 net-print/cups-pdf: Drop 3.0.1-r1
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 net-print/cups-pdf/cups-pdf-3.0.1-r1.ebuild | 46 -----------------------------
14 1 file changed, 46 deletions(-)
15
16 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
17 deleted file mode 100644
18 index f775a9ed1b83..000000000000
19 --- a/net-print/cups-pdf/cups-pdf-3.0.1-r1.ebuild
20 +++ /dev/null
21 @@ -1,46 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="Provides a virtual printer for CUPS to produce PDF files"
30 -HOMEPAGE="https://www.cups-pdf.de/"
31 -SRC_URI="https://www.cups-pdf.de/src/${PN}_${PV/_}.tar.gz"
32 -S=${WORKDIR}/${PN}-${PV/_}
33 -
34 -LICENSE="GPL-2+"
35 -SLOT="0"
36 -KEYWORDS="amd64 ~arm ppc ~ppc64 x86"
37 -IUSE="+ppds"
38 -
39 -RDEPEND="
40 - net-print/cups
41 - <app-text/ghostscript-gpl-9.54
42 -"
43 -DEPEND="${RDEPEND}"
44 -
45 -src_compile() {
46 - pushd src >/dev/null
47 - $(tc-getCC) ${LDFLAGS} ${CFLAGS} ${PN}.c -o ${PN} -lcups || die
48 - popd >/dev/null
49 -}
50 -
51 -src_install() {
52 - exeinto /usr/libexec/cups/backend
53 - exeopts -m0700
54 - doexe src/cups-pdf
55 -
56 - insinto /etc/cups
57 - doins extra/cups-pdf.conf
58 -
59 - insinto /usr/share/cups/model
60 - if use ppds; then
61 - doins extra/CUPS-PDF_opt.ppd
62 - else
63 - doins extra/CUPS-PDF_noopt.ppd
64 - fi
65 -
66 - dodoc ChangeLog README
67 -}