summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2018-01-03 21:47:54 +0300
committerMikle Kolyada <zlogene@gentoo.org>2018-01-03 21:47:54 +0300
commitfffb97bd16903706dd9f97dd99044ec58010a9ee (patch)
treeb712481322870cbc05e514d0051a0432c29827fd
parentgnustep-apps/preview: Port to EAPI 6 (diff)
downloadgentoo-fffb97bd.tar.gz
gentoo-fffb97bd.tar.bz2
gentoo-fffb97bd.zip
app-misc/ondir: Drop old
Closes: https://bugs.gentoo.org/642166 Package-Manager: Portage-2.3.13, Repoman-2.3.3
-rw-r--r--app-misc/ondir/ondir-0.2.2-r1.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/app-misc/ondir/ondir-0.2.2-r1.ebuild b/app-misc/ondir/ondir-0.2.2-r1.ebuild
deleted file mode 100644
index 58c113acfb4b..000000000000
--- a/app-misc/ondir/ondir-0.2.2-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="3"
-
-inherit toolchain-funcs
-
-DESCRIPTION="Automatically execute scripts as you traverse directories"
-HOMEPAGE="http://swapoff.org/OnDir"
-SRC_URI="http://swapoff.org/files/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE=""
-
-DEPEND="sys-apps/sed"
-RDEPEND=""
-
-src_prepare() {
- sed -i \
- -e "s:\(/man/.*$\):/share\1:g" \
- -e "s:-g:${CFLAGS}:" Makefile || die "sed Makefile failed"
-}
-
-src_compile() {
- emake \
- CC="$(tc-getCC)" \
- PREFIX="${EPREFIX}/usr" \
- CONF="${EPREFIX}/etc/ondirrc" \
- LDFLAGS="${LDFLAGS}" || die
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" CONF="${EPREFIX}/etc/ondirrc" install || die
- dodoc AUTHORS ChangeLog README INSTALL scripts.tcsh scripts.sh || die
- newdoc ondirrc.eg ondirrc.example || die
- dohtml changelog.html ondir.1.html || die
-}