summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2019-06-25 19:34:40 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2019-06-25 19:57:39 +0200
commit56bbc067d968edcb61756d6cf8b8783cc0015e57 (patch)
tree33c28b76a30083bbbc32ef0f70fa6497c1410a67
parentapp-forensics/memdump: remove old (diff)
downloadgentoo-56bbc067d968edcb61756d6cf8b8783cc0015e57.tar.gz
gentoo-56bbc067d968edcb61756d6cf8b8783cc0015e57.tar.bz2
gentoo-56bbc067d968edcb61756d6cf8b8783cc0015e57.zip
app-misc/btail: remove old
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--app-misc/btail/btail-0.3.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/app-misc/btail/btail-0.3.ebuild b/app-misc/btail/btail-0.3.ebuild
deleted file mode 100644
index b0235a0d999b..000000000000
--- a/app-misc/btail/btail-0.3.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit toolchain-funcs
-
-DESCRIPTION="Bayesian logfile filter"
-HOMEPAGE="https://www.vanheusden.com/btail/"
-SRC_URI="${HOMEPAGE}/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-DEPEND="sys-libs/gdbm"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- sed -i Makefile \
- -e '/^LDFLAGS/s:=:+=:g' \
- -e '/$(CC)/s:-Wall:$(CFLAGS) &:g' \
- || die
- sed -i conf.cpp \
- -e '/Configline/s:):, line):g' \
- || die
-}
-
-src_compile() {
- emake \
- CFLAGS="${CFLAGS}" \
- CXXFLAGS="${CXXFLAGS}" \
- CC="$(tc-getCC)" \
- CXX="$(tc-getCXX)"
-}
-
-src_install() {
- dobin blearn btail
- dodoc readme.txt btail.conf license.txt
-}