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 2C0A1138334 for ; Thu, 14 Feb 2019 20:58:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1A6ECE0893; Thu, 14 Feb 2019 20:58:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E8CADE0893 for ; Thu, 14 Feb 2019 20:58:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 7584C335C67 for ; Thu, 14 Feb 2019 20:57:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8AA5344B for ; Thu, 14 Feb 2019 20:57:57 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1550177862.9ac82cb3e106b9a198844afed3568346dbae041e.grknight@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-r1.ebuild X-VCS-Directories: net-analyzer/ipaudit/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 9ac82cb3e106b9a198844afed3568346dbae041e X-VCS-Branch: master Date: Thu, 14 Feb 2019 20:57:57 +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: f8941cc5-2088-4717-bcf6-973774ed3bdf X-Archives-Hash: 8b1d23c678e083dbd4bb326d56a32653 commit: 9ac82cb3e106b9a198844afed3568346dbae041e Author: Brian Evans gentoo org> AuthorDate: Thu Feb 14 20:57:42 2019 +0000 Commit: Brian Evans gentoo org> CommitDate: Thu Feb 14 20:57:42 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ac82cb3 net-analyzer/ipaudit: Revbump for EAPI and dependencies Non-maintainer commit Bug: https://bugs.gentoo.org/665946 Closes: https://bugs.gentoo.org/557394 Package-Manager: Portage-2.3.60, Repoman-2.3.12 Signed-off-by: Brian Evans gentoo.org> net-analyzer/ipaudit/ipaudit-1.0_beta2-r1.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/net-analyzer/ipaudit/ipaudit-1.0_beta2-r1.ebuild b/net-analyzer/ipaudit/ipaudit-1.0_beta2-r1.ebuild new file mode 100644 index 00000000000..0fc67f6ca6a --- /dev/null +++ b/net-analyzer/ipaudit/ipaudit-1.0_beta2-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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? ( dev-db/mysql-connector-c:0= )" +RDEPEND="${DEPEND}" +S="${WORKDIR}/${MY_P}" + +DOCS=( AUTHORS README ) + +src_configure() { + econf $(use_with mysql) +}