commit:     607cd88ade94d70fcd25f66251a88d705a4a8e94
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sat May 18 16:17:51 2019 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun May 19 00:23:54 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=607cd88a

app-misc/btail: use HTTPS, EAPI=7 bump

Closes: https://bugs.gentoo.org/686232
Closes: https://github.com/gentoo/gentoo/pull/12043
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Michael Palimaka <kensington <AT> gentoo.org>

 app-misc/btail/btail-0.3-r1.ebuild | 41 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/app-misc/btail/btail-0.3-r1.ebuild 
b/app-misc/btail/btail-0.3-r1.ebuild
new file mode 100644
index 00000000000..b434b22da8d
--- /dev/null
+++ b/app-misc/btail/btail-0.3-r1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+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"
+
+DEPEND="sys-libs/gdbm"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+       default
+       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
+}

Reply via email to