2023-02-04 03:17:19 +01:00
|
|
|
# Copyright 1999-2023 Gentoo Authors
|
2022-03-15 21:35:18 +01:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2022-07-15 16:35:00 +02:00
|
|
|
EAPI=8
|
2023-05-02 17:18:53 +02:00
|
|
|
PYTHON_COMPAT=( python{3_10,3_11} )
|
2022-03-15 21:35:18 +01:00
|
|
|
|
2023-10-05 01:34:25 +02:00
|
|
|
inherit autotools fcaps flag-o-matic linux-info python-single-r1 systemd toolchain-funcs
|
2022-03-15 21:35:18 +01:00
|
|
|
|
|
|
|
if [[ ${PV} == *9999 ]] ; then
|
|
|
|
EGIT_REPO_URI="https://github.com/netdata/${PN}.git"
|
|
|
|
inherit git-r3
|
|
|
|
else
|
2022-07-15 16:35:00 +02:00
|
|
|
SRC_URI="https://github.com/netdata/${PN}/releases/download/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
S="${WORKDIR}/${PN}-v${PV}"
|
2023-10-05 01:34:25 +02:00
|
|
|
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
|
2022-03-15 21:35:18 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
DESCRIPTION="Linux real time system monitoring, done right!"
|
|
|
|
HOMEPAGE="https://github.com/netdata/netdata https://my-netdata.io/"
|
|
|
|
|
|
|
|
LICENSE="GPL-3+ MIT BSD"
|
|
|
|
SLOT="0"
|
2023-02-04 03:17:19 +01:00
|
|
|
IUSE="caps cloud +compression cpu_flags_x86_sse2 cups +dbengine ipmi +jsonc +lto mongodb mysql nfacct nodejs postgres prometheus +python tor xen"
|
2022-03-15 21:35:18 +01:00
|
|
|
REQUIRED_USE="
|
|
|
|
mysql? ( python )
|
|
|
|
python? ( ${PYTHON_REQUIRED_USE} )
|
|
|
|
tor? ( python )"
|
|
|
|
|
|
|
|
# most unconditional dependencies are for plugins.d/charts.d.plugin:
|
|
|
|
RDEPEND="
|
|
|
|
acct-group/netdata
|
|
|
|
acct-user/netdata
|
|
|
|
app-misc/jq
|
|
|
|
>=app-shells/bash-4:0
|
2023-12-31 21:36:10 +01:00
|
|
|
dev-libs/libpcre2:=
|
2022-03-15 21:35:18 +01:00
|
|
|
|| (
|
|
|
|
net-analyzer/openbsd-netcat
|
|
|
|
net-analyzer/netcat
|
|
|
|
)
|
|
|
|
net-misc/curl
|
|
|
|
net-misc/wget
|
|
|
|
sys-apps/util-linux
|
2022-12-19 13:19:14 +01:00
|
|
|
app-alternatives/awk
|
2022-03-15 21:35:18 +01:00
|
|
|
caps? ( sys-libs/libcap )
|
|
|
|
cups? ( net-print/cups )
|
|
|
|
dbengine? (
|
2023-12-31 21:36:10 +01:00
|
|
|
app-arch/brotli:=
|
2022-12-19 13:19:14 +01:00
|
|
|
app-arch/lz4:=
|
2023-12-31 21:36:10 +01:00
|
|
|
app-arch/zstd:=
|
2022-03-15 21:35:18 +01:00
|
|
|
dev-libs/openssl:=
|
|
|
|
)
|
2022-12-19 13:19:14 +01:00
|
|
|
dev-libs/libuv:=
|
2023-06-24 21:26:33 +02:00
|
|
|
dev-libs/libyaml
|
2022-03-15 21:35:18 +01:00
|
|
|
cloud? ( dev-libs/protobuf:= )
|
2023-06-15 17:19:23 +02:00
|
|
|
sys-libs/zlib
|
2022-03-15 21:35:18 +01:00
|
|
|
ipmi? ( sys-libs/freeipmi )
|
|
|
|
jsonc? ( dev-libs/json-c:= )
|
|
|
|
mongodb? ( dev-libs/mongo-c-driver )
|
|
|
|
nfacct? (
|
|
|
|
net-firewall/nfacct
|
2022-12-19 13:19:14 +01:00
|
|
|
net-libs/libmnl:=
|
2022-03-15 21:35:18 +01:00
|
|
|
)
|
|
|
|
nodejs? ( net-libs/nodejs )
|
|
|
|
prometheus? (
|
2022-12-19 13:19:14 +01:00
|
|
|
app-arch/snappy:=
|
2022-03-15 21:35:18 +01:00
|
|
|
dev-libs/protobuf:=
|
|
|
|
)
|
|
|
|
python? (
|
|
|
|
${PYTHON_DEPS}
|
|
|
|
$(python_gen_cond_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]')
|
|
|
|
mysql? ( $(python_gen_cond_dep 'dev-python/mysqlclient[${PYTHON_USEDEP}]') )
|
|
|
|
postgres? ( $(python_gen_cond_dep 'dev-python/psycopg:2[${PYTHON_USEDEP}]') )
|
|
|
|
tor? ( $(python_gen_cond_dep 'net-libs/stem[${PYTHON_USEDEP}]') )
|
|
|
|
)
|
|
|
|
xen? (
|
|
|
|
app-emulation/xen-tools
|
|
|
|
dev-libs/yajl
|
|
|
|
)"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
virtual/pkgconfig"
|
|
|
|
|
|
|
|
FILECAPS=(
|
2023-08-22 05:20:14 +02:00
|
|
|
'cap_dac_read_search,cap_sys_ptrace+ep'
|
|
|
|
'usr/libexec/netdata/plugins.d/apps.plugin'
|
|
|
|
'usr/libexec/netdata/plugins.d/debugfs.plugin' --
|
|
|
|
'cap_setuid=ep'
|
|
|
|
'usr/libexec/netdata/plugins.d/slabinfo.plugin' --
|
|
|
|
'cap_setuid=ep'
|
|
|
|
'usr/libexec/netdata/plugins.d/cgroup-network' --
|
|
|
|
'cap_perfmon=ep'
|
|
|
|
'usr/libexec/netdata/plugins.d/perf.plugin'
|
2022-03-15 21:35:18 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
pkg_setup() {
|
|
|
|
use python && python-single-r1_pkg_setup
|
|
|
|
linux-info_pkg_setup
|
|
|
|
}
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
default
|
|
|
|
eautoreconf
|
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
if use ppc64; then
|
|
|
|
# bundled dlib does not support vsx on big-endian
|
|
|
|
# https://github.com/davisking/dlib/issues/397
|
|
|
|
[[ $(tc-endian) == big ]] && append-flags -mno-vsx
|
|
|
|
fi
|
|
|
|
|
|
|
|
econf \
|
|
|
|
--localstatedir="${EPREFIX}"/var \
|
|
|
|
--with-user=netdata \
|
|
|
|
--without-bundled-protobuf \
|
|
|
|
$(use_enable cloud) \
|
|
|
|
$(use_enable jsonc) \
|
|
|
|
$(use_enable cups plugin-cups) \
|
|
|
|
$(use_enable dbengine) \
|
|
|
|
$(use_enable nfacct plugin-nfacct) \
|
|
|
|
$(use_enable ipmi plugin-freeipmi) \
|
2023-02-04 03:17:19 +01:00
|
|
|
--disable-exporting-kinesis \
|
2022-03-15 21:35:18 +01:00
|
|
|
$(use_enable lto lto) \
|
2022-07-15 16:35:00 +02:00
|
|
|
$(use_enable mongodb exporting-mongodb) \
|
|
|
|
$(use_enable prometheus exporting-prometheus-remote-write) \
|
2022-03-15 21:35:18 +01:00
|
|
|
$(use_enable xen plugin-xenstat) \
|
2023-06-15 17:19:23 +02:00
|
|
|
$(use_enable cpu_flags_x86_sse2 x86-sse)
|
2022-03-15 21:35:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
emake clean
|
|
|
|
default
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
default
|
|
|
|
|
|
|
|
rm -rf "${D}/var/cache" || die
|
|
|
|
|
|
|
|
keepdir /var/log/netdata
|
|
|
|
fowners -Rc netdata:netdata /var/log/netdata
|
|
|
|
keepdir /var/lib/netdata
|
|
|
|
keepdir /var/lib/netdata/registry
|
|
|
|
fowners -Rc netdata:netdata /var/lib/netdata
|
|
|
|
|
|
|
|
fowners -Rc root:netdata /usr/share/${PN}
|
|
|
|
|
|
|
|
fowners -Rc root:netdata /usr/libexec/netdata/plugins.d
|
|
|
|
|
|
|
|
fperms 4750 /usr/libexec/netdata/plugins.d/{cgroup-network,ioping.plugin,perf.plugin,slabinfo.plugin}
|
|
|
|
|
2023-05-02 17:18:53 +02:00
|
|
|
newinitd system/openrc/init.d/netdata ${PN}
|
2023-10-05 01:34:25 +02:00
|
|
|
newconfd system/openrc/conf.d/netdata ${PN}
|
2023-05-02 17:18:53 +02:00
|
|
|
systemd_dounit system/systemd/netdata.service
|
2023-10-05 01:34:25 +02:00
|
|
|
systemd_dounit system/systemd/netdata-updater.service
|
|
|
|
systemd_dounit system/systemd/netdata-updater.timer
|
2022-03-15 21:35:18 +01:00
|
|
|
insinto /etc/netdata
|
|
|
|
doins system/netdata.conf
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postinst() {
|
|
|
|
fcaps_pkg_postinst
|
|
|
|
|
|
|
|
if use nfacct ; then
|
|
|
|
fcaps 'cap_net_admin' 'usr/libexec/netdata/plugins.d/nfacct.plugin'
|
|
|
|
fi
|
|
|
|
|
|
|
|
if use xen ; then
|
|
|
|
fcaps 'cap_dac_override' 'usr/libexec/netdata/plugins.d/xenstat.plugin'
|
|
|
|
fi
|
|
|
|
|
|
|
|
if use ipmi ; then
|
|
|
|
fcaps 'cap_dac_override' 'usr/libexec/netdata/plugins.d/freeipmi.plugin'
|
|
|
|
fi
|
|
|
|
}
|