Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pep/
Date: Sun, 09 Sep 2018 09:59:32
Message-Id: 1536487148.14ce8dbbe177a691ea5f0dbd70ebc1b83b734ec6.zlogene@gentoo
1 commit: 14ce8dbbe177a691ea5f0dbd70ebc1b83b734ec6
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 9 09:59:08 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 9 09:59:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14ce8dbb
7
8 app-text/pep: Drop old
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-text/pep/pep-2.8-r1.ebuild | 49 ------------------------------------------
13 1 file changed, 49 deletions(-)
14
15 diff --git a/app-text/pep/pep-2.8-r1.ebuild b/app-text/pep/pep-2.8-r1.ebuild
16 deleted file mode 100644
17 index 59b13dc23d4..00000000000
18 --- a/app-text/pep/pep-2.8-r1.ebuild
19 +++ /dev/null
20 @@ -1,49 +0,0 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="2"
25 -
26 -inherit eutils toolchain-funcs flag-o-matic
27 -
28 -DESCRIPTION="General purpose filter and file cleaning program"
29 -HOMEPAGE="http://hannemyr.com/enjoy/pep.html"
30 -SRC_URI="http://hannemyr.com/enjoy/${PN}${PV//./}.zip"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~mips ppc x86 ~x86-linux ~ppc-macos"
35 -IUSE=""
36 -
37 -DEPEND="app-arch/unzip"
38 -RDEPEND=""
39 -
40 -S=${WORKDIR}
41 -
42 -src_prepare() {
43 - # pep does not come with autconf so here's a patch to configure
44 - # Makefile with the correct path
45 - epatch \
46 - "${FILESDIR}"/${P}-gentoo.patch \
47 - "${FILESDIR}"/${P}-include.patch
48 - # Darwin lacks stricmp and DIRCHAR
49 - if [[ ${CHOST} == *-darwin* ]] ; then
50 - sed -i -e '/^OBJS/s/^\(.*\)$/\1 bdmg.o/' Makefile
51 - append-flags "-Dunix" -DSTRICMP
52 - fi
53 -}
54 -
55 -src_compile() {
56 - # make man page too
57 - make Doc/pep.1 || die "make man page failed"
58 - emake CC="$(tc-getCC)" || die "emake failed"
59 -}
60 -
61 -src_install() {
62 - dobin pep || die "dobin failed"
63 - doman Doc/pep.1 || die "doman failed"
64 -
65 - insinto /usr/share/pep
66 - doins Filters/* || die "doins failed"
67 -
68 - dodoc aareadme.txt file_id.diz
69 -}