You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/btail/btail-0.3.ebuild

42 lines
736 B

# 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
}