gentoo/net-analyzer/vnstat/vnstat-9999.ebuild
Sam James 2753b05b48
net-analyzer/vnstat: fix paths in init script & friends
In 4315a67f1f687fa721f675d2b15f486e77b6c9a8, I moved us to using the
build system rather than installing files manually, but neglected that
we had a bunch of auxiliary files that referenced the old paths. Fix that.

Bug: https://bugs.gentoo.org/957055
Closes: https://bugs.gentoo.org/959388
Signed-off-by: Sam James <sam@gentoo.org>
2025-07-12 07:00:07 +01:00

80 lines
1.7 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit systemd tmpfiles
DESCRIPTION="Console-based network traffic monitor that keeps statistics of network usage"
HOMEPAGE="https://humdi.net/vnstat/"
if [[ ${PV} == *9999 ]] ; then
EGIT_REPO_URI="https://github.com/vergoh/vnstat"
inherit git-r3
else
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/teemutoivola.asc
inherit verify-sig
SRC_URI="
https://humdi.net/vnstat/${P}.tar.gz
https://github.com/vergoh/vnstat/releases/download/v${PV}/${P}.tar.gz
verify-sig? (
https://humdi.net/vnstat/${P}.tar.gz.asc
https://github.com/vergoh/vnstat/releases/download/v${PV}/${P}.tar.gz.asc
)
"
KEYWORDS="~amd64 arm arm64 ~hppa ~mips ppc ~ppc64 ~riscv ~sparc ~x86"
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-teemutoivola )"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE="gd selinux test"
RESTRICT="!test? ( test )"
RDEPEND="
acct-group/vnstat
acct-user/vnstat
dev-db/sqlite
gd? ( media-libs/gd[png] )
"
DEPEND="
${RDEPEND}
test? ( dev-libs/check )
"
RDEPEND+=" selinux? ( sec-policy/selinux-vnstatd )"
PATCHES=(
"${FILESDIR}"/${PN}-2.9-conf.patch
)
src_configure() {
local myeconfargs=(
$(use_enable gd image-output)
)
econf "${myeconfargs[@]}"
}
src_install() {
default
exeinto /usr/share/${PN}
newexe "${FILESDIR}"/vnstat.cron-r2 vnstat.cron
newconfd "${FILESDIR}"/vnstatd.confd-r1 vnstatd
newinitd "${FILESDIR}"/vnstatd.initd-r3 vnstatd
systemd_newunit "${FILESDIR}"/vnstatd.systemd-r1 vnstatd.service
newtmpfiles "${FILESDIR}"/vnstatd.tmpfile vnstatd.conf
newdoc INSTALL README.setup
dodoc CHANGES README UPGRADE FAQ examples/vnstat.cgi
}
pkg_postinst() {
tmpfiles_process vnstatd.conf
}