gentoo/net-analyzer/ipaudit/ipaudit-1.1.ebuild
Michał Górny 9e2a2f1a08
net-*/*: update for virtual/zlib
Update done using:

```
git grep -l sys-libs/zlib net-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g
git diff --name-only | xargs copybump
git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead
pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error
```

Followed by revert in net-misc/turbovnc.

Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-11-04 09:13:46 +01:00

24 lines
524 B
Bash

# Copyright 1999-2025 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="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="mysql"
RDEPEND="
net-libs/libpcap
virtual/zlib:=
mysql? ( dev-db/mysql-connector-c:= )"
DEPEND="${RDEPEND}"
src_configure() {
econf $(use_with mysql)
}