Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/apsfilter/
Date: Sat, 12 Oct 2019 07:01:51
Message-Id: 1570863673.04e3ad5b86d00c73c4557f623a50f8b1655cba63.mgorny@gentoo
1 commit: 04e3ad5b86d00c73c4557f623a50f8b1655cba63
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 12 07:01:13 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 12 07:01:13 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04e3ad5b
7
8 net-print/apsfilter: Drop old (EAPI 0)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 net-print/apsfilter/Manifest | 1 -
13 net-print/apsfilter/apsfilter-7.2.5.ebuild | 41 ------------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/net-print/apsfilter/Manifest b/net-print/apsfilter/Manifest
17 index 147f1a894d1..c347450380f 100644
18 --- a/net-print/apsfilter/Manifest
19 +++ b/net-print/apsfilter/Manifest
20 @@ -1,2 +1 @@
21 -DIST apsfilter-7.2.5.tar.bz2 309436 BLAKE2B d9f0ca66ba3bec5a77161d90cdb197906149052978b992a4b82a3da1ece3a0e48e7de78b7cb4fdb11df6479c38782cfe8f3b996630795ac5bc679ba6b3cc4ecd SHA512 a9f2060f1636d255a5ec2c9bd9d8c6a34452e7ad76724746acd45bfb2644a924036032013e7f29a753545a02a83fe099364685562a8e95634170df3277c8e943
22 DIST apsfilter-7.2.8.tar.bz2 310587 BLAKE2B aae44a7e79157d3ddf9ce56fe51ae90106eb952d536658efe0f19dfcbe5f0d5c7dd078e3bb5044433e250df6b9289a08a466d6e9fc77c91d540daf07a70bf197 SHA512 ca07e7eb620a95b08fb912e899520d5ff85613eb3d1f712e1d38a66cf5b84516dbb35e3e40ef75ac10d1e717cfc2f49930a0f0873fee451d495c8ae572072012
23
24 diff --git a/net-print/apsfilter/apsfilter-7.2.5.ebuild b/net-print/apsfilter/apsfilter-7.2.5.ebuild
25 deleted file mode 100644
26 index 67caf68d2f4..00000000000
27 --- a/net-print/apsfilter/apsfilter-7.2.5.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2019 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=0
34 -
35 -DESCRIPTION="Apsfilter Prints So Fine, It Leads To Extraordinary Results"
36 -HOMEPAGE="http://www.apsfilter.org"
37 -KEYWORDS="~alpha ppc sparc x86"
38 -IUSE="cups"
39 -SLOT="0"
40 -LICENSE="GPL-2"
41 -
42 -RDEPEND="|| ( net-print/cups net-print/lprng )
43 - app-text/ghostscript-gpl
44 - >=app-text/psutils-1.17
45 - >=media-gfx/imagemagick-5.4.5
46 - >=app-text/a2ps-4.13b-r4
47 - virtual/awk
48 - virtual/mta"
49 -DEPEND="${RDEPEND}"
50 -
51 -SRC_URI="http://www.apsfilter.org/download/${P}.tar.bz2"
52 -S=${WORKDIR}/apsfilter
53 -
54 -src_compile() {
55 - # assume thet lprng is installed if cups isn't USEd
56 - use cups && \
57 - myconf="--with-printcap=/etc/cups/printcap --with-spooldir=/var/spool/cups" || \
58 - myconf="--with-printcap=/etc/lprng/printcap"
59 - ./configure --prefix=/usr ${myconf} || die
60 -
61 - emake || die
62 -}
63 -
64 -src_install () {
65 - emake DESTDIR="${D}" install || die
66 - dosym /usr/share/apsfilter/SETUP /usr/bin/apsfilter
67 - use cups && \
68 - dosym /etc/cups/printcap /etc/printcap || \
69 - dosym /etc/lprng/printcap /etc/printcap
70 -}