From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D0722138334 for ; Tue, 25 Jun 2019 17:57:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB417E0878; Tue, 25 Jun 2019 17:57:53 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D2FC5E0878 for ; Tue, 25 Jun 2019 17:57:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A9499346A10 for ; Tue, 25 Jun 2019 17:57:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4DF03620 for ; Tue, 25 Jun 2019 17:57:50 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1561485459.56bbc067d968edcb61756d6cf8b8783cc0015e57.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/btail/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/btail/btail-0.3.ebuild X-VCS-Directories: app-misc/btail/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 56bbc067d968edcb61756d6cf8b8783cc0015e57 X-VCS-Branch: master Date: Tue, 25 Jun 2019 17:57:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 251b021a-7488-4769-a3b0-5615e7514ff0 X-Archives-Hash: ad61f5145c5ca390be7ba68e88321dfe commit: 56bbc067d968edcb61756d6cf8b8783cc0015e57 Author: Michael Mair-Keimberger gmail com> AuthorDate: Tue Jun 25 17:34:40 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jun 25 17:57:39 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56bbc067 app-misc/btail: remove old Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Andreas Sturmlechner gentoo.org> app-misc/btail/btail-0.3.ebuild | 41 ----------------------------------------- 1 file changed, 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 b0235a0d999..00000000000 --- 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 -}