You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.8 KiB
79 lines
1.8 KiB
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
inherit autotools git-r3 user
|
|
|
|
DESCRIPTION="Network traffic analyzer with cute web interface"
|
|
HOMEPAGE="https://unix4lyfe.org/darkstat/"
|
|
EGIT_REPO_URI="https://www.unix4lyfe.org/git/darkstat"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
|
|
BDEPEND="
|
|
app-editors/vim-core
|
|
"
|
|
DEPEND="
|
|
dev-libs/libbsd
|
|
net-libs/libpcap
|
|
sys-libs/zlib
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
"
|
|
DARKSTAT_CHROOT_DIR=${DARKSTAT_CHROOT_DIR:-/var/lib/darkstat}
|
|
DOCS=( AUTHORS ChangeLog README 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}"
|
|
chown darkstat:0 "${D}${DARKSTAT_CHROOT_DIR}"
|
|
}
|
|
|
|
pkg_preinst() {
|
|
enewuser darkstat
|
|
}
|
|
|
|
pkg_postinst() {
|
|
# Workaround bug #141619
|
|
DARKSTAT_CHROOT_DIR=$(
|
|
sed -n 's/^#CHROOT=\(.*\)/\1/p' "${ROOT}"/etc/conf.d/darkstat
|
|
)
|
|
chown darkstat:0 "${ROOT}${DARKSTAT_CHROOT_DIR}"
|
|
|
|
elog "To start different darkstat instances which will listen on a different"
|
|
elog "interfaces create in /etc/init.d directory the 'darkstat.if' symlink to"
|
|
elog "darkstat script where 'if' is the name of the interface."
|
|
elog "Also in /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: \"${ROOT}${DARKSTAT_CHROOT_DIR}\""
|
|
}
|