diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-10-09 06:25:44 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-10-09 06:38:37 -0400 |
commit | 586c136ef094cb691b9b5907a4818cffcbd9426b (patch) | |
tree | 6643ed19880d8b88046138b1b0f06a2770ee62ef /net-analyzer/ipaudit/ipaudit-1.1.ebuild | |
parent | dev-python/psycopg: Remove old (diff) | |
download | gentoo-586c136ef094cb691b9b5907a4818cffcbd9426b.tar.gz gentoo-586c136ef094cb691b9b5907a4818cffcbd9426b.tar.bz2 gentoo-586c136ef094cb691b9b5907a4818cffcbd9426b.zip |
net-analyzer/ipaudit: add 1.1
Beta had several problems to fix for #871282, but this
handles all of them. Not really runtime tested though.
Closes: https://bugs.gentoo.org/871282
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'net-analyzer/ipaudit/ipaudit-1.1.ebuild')
-rw-r--r-- | net-analyzer/ipaudit/ipaudit-1.1.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net-analyzer/ipaudit/ipaudit-1.1.ebuild b/net-analyzer/ipaudit/ipaudit-1.1.ebuild new file mode 100644 index 000000000000..bec71b59b5a9 --- /dev/null +++ b/net-analyzer/ipaudit/ipaudit-1.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="IPAudit monitors network activity on a network by host, protocol and port" +HOMEPAGE="https://ipaudit.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="mysql" + +RDEPEND=" + net-libs/libpcap + sys-libs/zlib:= + mysql? ( dev-db/mysql-connector-c:= )" +DEPEND="${RDEPEND}" + +src_configure() { + econf $(use_with mysql) +} |