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-misc/ondir/
Date: Wed, 03 Jan 2018 18:48:20
Message-Id: 1515005274.fffb97bd16903706dd9f97dd99044ec58010a9ee.zlogene@gentoo
1 commit: fffb97bd16903706dd9f97dd99044ec58010a9ee
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 3 18:47:54 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 18:47:54 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fffb97bd
7
8 app-misc/ondir: Drop old
9
10 Closes: https://bugs.gentoo.org/642166
11 Package-Manager: Portage-2.3.13, Repoman-2.3.3
12
13 app-misc/ondir/ondir-0.2.2-r1.ebuild | 39 ------------------------------------
14 1 file changed, 39 deletions(-)
15
16 diff --git a/app-misc/ondir/ondir-0.2.2-r1.ebuild b/app-misc/ondir/ondir-0.2.2-r1.ebuild
17 deleted file mode 100644
18 index 58c113acfb4..00000000000
19 --- a/app-misc/ondir/ondir-0.2.2-r1.ebuild
20 +++ /dev/null
21 @@ -1,39 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="3"
26 -
27 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="Automatically execute scripts as you traverse directories"
30 -HOMEPAGE="http://swapoff.org/OnDir"
31 -SRC_URI="http://swapoff.org/files/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
36 -IUSE=""
37 -
38 -DEPEND="sys-apps/sed"
39 -RDEPEND=""
40 -
41 -src_prepare() {
42 - sed -i \
43 - -e "s:\(/man/.*$\):/share\1:g" \
44 - -e "s:-g:${CFLAGS}:" Makefile || die "sed Makefile failed"
45 -}
46 -
47 -src_compile() {
48 - emake \
49 - CC="$(tc-getCC)" \
50 - PREFIX="${EPREFIX}/usr" \
51 - CONF="${EPREFIX}/etc/ondirrc" \
52 - LDFLAGS="${LDFLAGS}" || die
53 -}
54 -
55 -src_install() {
56 - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" CONF="${EPREFIX}/etc/ondirrc" install || die
57 - dodoc AUTHORS ChangeLog README INSTALL scripts.tcsh scripts.sh || die
58 - newdoc ondirrc.eg ondirrc.example || die
59 - dohtml changelog.html ondir.1.html || die
60 -}