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>
81 lines
2.0 KiB
Bash
81 lines
2.0 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Network traffic analyzer with cute web interface"
|
|
HOMEPAGE="https://unix4lyfe.org/darkstat/"
|
|
if [[ ${PV} == *9999* ]] ; then
|
|
EGIT_REPO_URI="https://github.com/emikulic/darkstat"
|
|
inherit git-r3
|
|
else
|
|
SRC_URI="https://github.com/emikulic/darkstat/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
fi
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
|
|
DEPEND="acct-user/darkstat
|
|
dev-libs/libbsd
|
|
net-libs/libpcap
|
|
virtual/zlib"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
DARKSTAT_CHROOT_DIR=${DARKSTAT_CHROOT_DIR:-/var/lib/darkstat}
|
|
|
|
DOCS=( AUTHORS ChangeLog README.md NEWS )
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-3.0.719-strncpy-off-by-one.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -i \
|
|
-e '/-DNDEBUG/d' \
|
|
-e 's|-flto||g' \
|
|
configure.ac || die
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf --with-privdrop-user=darkstat
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
newinitd "${FILESDIR}"/darkstat-initd darkstat
|
|
newconfd "${FILESDIR}"/darkstat-confd darkstat
|
|
|
|
sed -i -e "s:__CHROOT__:${DARKSTAT_CHROOT_DIR}:g" "${D}"/etc/conf.d/darkstat || die
|
|
sed -i -e "s:__CHROOT__:${DARKSTAT_CHROOT_DIR}:g" "${D}"/etc/init.d/darkstat || die
|
|
|
|
keepdir "${DARKSTAT_CHROOT_DIR}"
|
|
fowners darkstat:0 "${DARKSTAT_CHROOT_DIR}"
|
|
}
|
|
|
|
pkg_postinst() {
|
|
# Workaround bug #141619
|
|
DARKSTAT_CHROOT_DIR=$(
|
|
sed -n 's/^#CHROOT=\(.*\)/\1/p' "${EROOT}"/etc/conf.d/darkstat
|
|
)
|
|
|
|
if [[ -n "${DARKSTAT_CHROOT_DIR}" ]] && [[ "${DARKSTAT_CHROOT_DIR}" != "${EROOT:-/}" ]] ; then
|
|
chown darkstat:0 "${EROOT}/${DARKSTAT_CHROOT_DIR#/}/"
|
|
fi
|
|
|
|
elog "To start different darkstat instances which will listen on a different"
|
|
elog "interface, create within the ${EROOT}/etc/init.d directory a 'darkstat.if' symlink to"
|
|
elog "darkstat script where 'if' is the name of the interface."
|
|
elog "Also in the ${EROOT}/etc/conf.d directory, copy darkstat to darkstat.if"
|
|
elog "and edit it to change default values."
|
|
elog
|
|
elog "darkstat's default chroot directory is: ${EROOT}/${DARKSTAT_CHROOT_DIR#/}"
|
|
}
|