gentoo/net-analyzer/ntopng/ntopng-5.6-r2.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

112 lines
2.9 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools toolchain-funcs
# Check this on bumps, get latest commit from the relevant branch (e.g. 5.6-stable)
# See bug #894152 and https://github.com/ntop/ntopng/issues/7203
NTOPNG_DIST_COMMIT="90d81ad0281eb6eb582a683ac321a3959abb1269"
DESCRIPTION="Network traffic analyzer with web interface"
HOMEPAGE="https://www.ntop.org/"
SRC_URI="https://github.com/ntop/ntopng/archive/${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://github.com/ntop/ntopng-dist/archive/${NTOPNG_DIST_COMMIT}.tar.gz -> ${P}-web-${NTOPNG_DIST_COMMIT}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="dev-db/mysql-connector-c:=
dev-db/sqlite:3
dev-libs/hiredis:=
dev-libs/json-c:=
dev-libs/libmaxminddb
dev-libs/libsodium:=
dev-libs/openssl:=
net-analyzer/rrdtool
net-libs/libpcap
>=net-libs/nDPI-4.6:=
<net-libs/nDPI-4.8:=
>=net-libs/zeromq-3:=
net-misc/curl
sys-libs/libcap
virtual/zlib"
RDEPEND="${DEPEND}
acct-user/ntopng
acct-group/ntopng
dev-db/redis"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${PN}-5.2.1-mysqltool.patch
"${FILESDIR}"/${PN}-5.4-ndpi-linking.patch
)
src_prepare() {
default
# Follows upstream's autogen.sh
sed \
-e "s/@VERSION@/${PV}.$(date +%y%m%d)/g" \
-e "s/@SHORT_VERSION@/${PV}/g" \
-e "s/@GIT_DATE@/$(date)/g" \
-e "s/@GIT_RELEASE@/${PV}.$(date +%y%m%d)/g" \
-e "s/@GIT_BRANCH@//g" < "${S}/configure.ac.in" \
> "${S}/configure.ac" || die
eautoreconf
}
src_configure() {
tc-export PKG_CONFIG
# configure.ac.in at least has some bashisms(?) which get lost(?)
# in conversion to configure.ac (like [ -> nothing?) so just force
# bash for now. It's still not quite right but at least upstream will be
# testing with it. TODO: fix this!
CONFIG_SHELL="${BROOT}/bin/bash" econf --with-ndpi-includes="${ESYSROOT}"/usr/include/ndpi
}
src_compile() {
emake \
CC="$(tc-getCC)" \
MYCFLAGS="${CFLAGS}" \
MYLDFLAGS="${LDFLAGS}"
}
src_install() {
# httpdocs/geoip/README.geolocation.md is a symlink, change to real file
GEOLOCATION_MD="httpdocs/geoip/README.geolocation.md"
if [[ -h "${GEOLOCATION_MD}" ]] ; then
GEOLOCATION_MD_REAL=$(readlink -m -- "${GEOLOCATION_MD}" || die)
ln -f ${GEOLOCATION_MD_REAL} ${GEOLOCATION_MD} || die
fi
SHARE_NTOPNG_DIR="${EPREFIX}/usr/share/${PN}"
insinto "${SHARE_NTOPNG_DIR}"
doins -r httpdocs
doins -r scripts
insinto "${SHARE_NTOPNG_DIR}"/httpdocs/dist
doins -r "${WORKDIR}"/ntopng-dist-${NTOPNG_DIST_COMMIT}/.
insinto "${SHARE_NTOPNG_DIR}/third-party"
doins -r third-party/i18n.lua-master
doins -r third-party/lua-resty-template-master
exeinto /usr/bin
doexe "${PN}"
doman "${PN}.8"
newinitd "${FILESDIR}"/ntopng.init.d ntopng
newconfd "${FILESDIR}"/ntopng.conf.d ntopng
keepdir /var/lib/ntopng
fowners ntopng /var/lib/ntopng
}
pkg_postinst() {
elog "ntopng default credentials are user='admin' password='admin'"
}