Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/c2esp/
Date: Sat, 28 Nov 2020 16:44:58
Message-Id: 1606581888.32e023d44e3ce18d802425a2dfe49447c8688d90.bman@gentoo
1 commit: 32e023d44e3ce18d802425a2dfe49447c8688d90
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 28 16:36:32 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 28 16:44:48 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32e023d4
7
8 net-print/c2esp: drop old
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 net-print/c2esp/Manifest | 1 -
13 net-print/c2esp/c2esp-26.ebuild | 52 -----------------------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/net-print/c2esp/Manifest b/net-print/c2esp/Manifest
17 index 9fe17203207..ca69f487bc5 100644
18 --- a/net-print/c2esp/Manifest
19 +++ b/net-print/c2esp/Manifest
20 @@ -1,2 +1 @@
21 DIST c2esp-27.tar.gz 143551 BLAKE2B 7cc80fd72eed24c24cb153d7395a692849c51249ca40a563f94bedbb82c6d976bce6b44d47dbe21c36ec40f26571178f562b175485f404d356724b4bc3f611bf SHA512 d3ff9dc6de7cf692e4be4f4b316f862d271bff06181f0000daf1ce2fb6921f1b24efe88ec24f7b811d78cb9dca18fcba3f17dd5273ac84ceb9f6bfcecedeecce
22 -DIST c2esp26.tar.gz 127593 BLAKE2B 84e6ff61fc5af225526a569861bf316a2b7b1aa8f2bf4d7af15a04042f9dd2da7726d34b66d12dea8748532a54d5ae3a1b0bbfafdccccbea192725751cf3416e SHA512 aa1ca61f895de4892e1058b349fcf1830da78455ffbd0d9989b7ac4e922076e184de91a2b79f285d946d29ece7a6d8159f62c900ed8d6c76859a4261c92da359
23
24 diff --git a/net-print/c2esp/c2esp-26.ebuild b/net-print/c2esp/c2esp-26.ebuild
25 deleted file mode 100644
26 index 1619b47f90b..00000000000
27 --- a/net-print/c2esp/c2esp-26.ebuild
28 +++ /dev/null
29 @@ -1,52 +0,0 @@
30 -# Copyright 1999-2014 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -inherit eutils toolchain-funcs
36 -
37 -MY_P=${PN}${PV}
38 -
39 -DESCRIPTION="A cups filter for Kodak ESP printers"
40 -HOMEPAGE="http://cupsdriverkodak.sf.net/"
41 -SRC_URI="mirror://sourceforge/cupsdriverkodak/files/${MY_P}.tar.gz"
42 -LICENSE="GPL-2"
43 -
44 -SLOT="0"
45 -KEYWORDS="~x86"
46 -IUSE=""
47 -
48 -S=${WORKDIR}/${MY_P}
49 -
50 -DEPEND=">=media-libs/jbigkit-2.0-r1
51 - >=net-print/cups-1.4"
52 -RDEPEND="${DEPEND}"
53 -
54 -src_prepare() {
55 - epatch "${FILESDIR}"/${P}-ldflags-cppflags.patch
56 -
57 - # Remove embedded media-libs/jbigkit
58 - rm -f *jbig* || die
59 -
60 - # Remove the embedded jbig files from the Makefile's dependencies:
61 - sed -i \
62 - -e '/^[a-z0-9.]*:/s/\$(LIBJBG[[:digit:]]*)//g' \
63 - -e '/^[a-z0-9.]*:/s/jbig[^ ]*\.h//g' \
64 - -e '/\$(INSTALL).*COPYING/d' \
65 - Makefile || die
66 -
67 - # Use Gentoo-style cups paths
68 - sed -i -e s,/usr/lib/cups/filter,/usr/libexec/cups/filter,g ppd/*.ppd || die
69 -}
70 -
71 -src_compile() {
72 - emake -j1 CC="$(tc-getCC)" LIBJBG=-ljbig LIBJBG85=-ljbig85
73 -}
74 -
75 -src_install() {
76 - emake \
77 - DESTDIR="${D}" \
78 - FILTERBIN="${D}"/usr/libexec/cups/filter \
79 - DOCDIR="${ED}"/usr/share/doc/${PF} \
80 - install
81 -}