Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/btail/
Date: Tue, 25 Jun 2019 17:57:54
Message-Id: 1561485459.56bbc067d968edcb61756d6cf8b8783cc0015e57.asturm@gentoo
1 commit: 56bbc067d968edcb61756d6cf8b8783cc0015e57
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue Jun 25 17:34:40 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 25 17:57:39 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56bbc067
7
8 app-misc/btail: remove old
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-misc/btail/btail-0.3.ebuild | 41 -----------------------------------------
14 1 file changed, 41 deletions(-)
15
16 diff --git a/app-misc/btail/btail-0.3.ebuild b/app-misc/btail/btail-0.3.ebuild
17 deleted file mode 100644
18 index b0235a0d999..00000000000
19 --- a/app-misc/btail/btail-0.3.ebuild
20 +++ /dev/null
21 @@ -1,41 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="4"
26 -
27 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="Bayesian logfile filter"
30 -HOMEPAGE="https://www.vanheusden.com/btail/"
31 -SRC_URI="${HOMEPAGE}/${P}.tgz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~ppc ~x86"
36 -IUSE=""
37 -
38 -DEPEND="sys-libs/gdbm"
39 -RDEPEND="${DEPEND}"
40 -
41 -src_prepare() {
42 - sed -i Makefile \
43 - -e '/^LDFLAGS/s:=:+=:g' \
44 - -e '/$(CC)/s:-Wall:$(CFLAGS) &:g' \
45 - || die
46 - sed -i conf.cpp \
47 - -e '/Configline/s:):, line):g' \
48 - || die
49 -}
50 -
51 -src_compile() {
52 - emake \
53 - CFLAGS="${CFLAGS}" \
54 - CXXFLAGS="${CXXFLAGS}" \
55 - CC="$(tc-getCC)" \
56 - CXX="$(tc-getCXX)"
57 -}
58 -
59 -src_install() {
60 - dobin blearn btail
61 - dodoc readme.txt btail.conf license.txt
62 -}