summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2019-04-22 13:36:01 +0200
committerDavid Seifert <soap@gentoo.org>2019-04-23 10:51:13 +0200
commitba012418757f7de93f4e0d3f8c1bd63ea2827ac6 (patch)
tree33f52efa100846f80aeb2c1af66027d1c58f2292 /app-misc/bgrep
parentapp-text/html2text: drop old (EAPI4/5) (diff)
downloadgentoo-ba012418757f7de93f4e0d3f8c1bd63ea2827ac6.tar.gz
gentoo-ba012418757f7de93f4e0d3f8c1bd63ea2827ac6.tar.bz2
gentoo-ba012418757f7de93f4e0d3f8c1bd63ea2827ac6.zip
app-misc/bgrep: drop old (EAPI4)
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-misc/bgrep')
-rw-r--r--app-misc/bgrep/bgrep-0_p20110121.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/app-misc/bgrep/bgrep-0_p20110121.ebuild b/app-misc/bgrep/bgrep-0_p20110121.ebuild
deleted file mode 100644
index c40227345447..000000000000
--- a/app-misc/bgrep/bgrep-0_p20110121.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-GITHUB_USER="tmbinc"
-GITHUB_HASH="49b098be9548d174023ad05c10f6af9d02b8e18e"
-MY_P="${GITHUB_USER}-${PN}-${GITHUB_HASH:0:7}"
-
-inherit toolchain-funcs
-
-DESCRIPTION="grep-like tool to search for binary strings"
-HOMEPAGE="https://github.com/tmbinc/bgrep/"
-SRC_URI="https://github.com/${GITHUB_USER}/${PN}/tarball/${GITHUB_HASH} -> ${MY_P}.tar.gz"
-
-S="${WORKDIR}/${MY_P}"
-LICENSE="MIT"
-SLOT="0"
-
-KEYWORDS="~amd64"
-
-IUSE="test"
-
-RDEPEND=""
-DEPEND="test? ( dev-lang/perl )"
-
-src_prepare() {
- sed -i -e "s|/tmp/|${T}/|g" \
- test/bgrep-test.sh || die
-}
-
-src_compile() {
- tc-export CC
- emake || die
-}
-
-src_test() {
- cd test
- ./bgrep-test.sh || die
-}
-
-src_install() {
- dobin bgrep
- dodoc README
-}