mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
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>
24 lines
524 B
Bash
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)
|
|
}
|