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 64ABF138334 for ; Mon, 7 Oct 2019 13:53:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EDF03E083E; Mon, 7 Oct 2019 13:53:32 +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 CEA48E0839 for ; Mon, 7 Oct 2019 13:53:32 +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 0FDCA34B9FD for ; Mon, 7 Oct 2019 13:53:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5CF8836 for ; Mon, 7 Oct 2019 13:53:28 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1570456394.d00bb2f69dcb0b4cc1e20fc82e80bd2fa8cef6c3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ipaudit/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/ipaudit/ipaudit-1.0_beta2.ebuild X-VCS-Directories: net-analyzer/ipaudit/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d00bb2f69dcb0b4cc1e20fc82e80bd2fa8cef6c3 X-VCS-Branch: master Date: Mon, 7 Oct 2019 13:53:28 +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: 0814c814-95bd-4d29-a29f-491858143647 X-Archives-Hash: 8c9eb136ea5bc143a7417a6e97e9a8e9 commit: d00bb2f69dcb0b4cc1e20fc82e80bd2fa8cef6c3 Author: Michał Górny gentoo org> AuthorDate: Mon Oct 7 13:12:03 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Oct 7 13:53:14 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d00bb2f6 net-analyzer/ipaudit: Drop old (EAPI=0) Signed-off-by: Michał Górny gentoo.org> net-analyzer/ipaudit/ipaudit-1.0_beta2.ebuild | 28 --------------------------- 1 file changed, 28 deletions(-) diff --git a/net-analyzer/ipaudit/ipaudit-1.0_beta2.ebuild b/net-analyzer/ipaudit/ipaudit-1.0_beta2.ebuild deleted file mode 100644 index 2a6a3016c57..00000000000 --- a/net-analyzer/ipaudit/ipaudit-1.0_beta2.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils -DESCRIPTION="IPAudit monitors network activity on a network by host, protocol and port" -HOMEPAGE="http://ipaudit.sourceforge.net/" -MY_P="${PN}-${PV/_beta/BETA}" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ppc x86" -IUSE="mysql" -DEPEND="net-libs/libpcap - mysql? ( virtual/mysql )" -#RDEPEND="" -S="${WORKDIR}/${MY_P}" - -src_compile() { - econf `use_with mysql` || die - emake || die "emake failed" -} - -src_install() { - make DESTDIR=${D} install || die - dodoc AUTHORS README -}