mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-15 14:42:44 +00:00
Upstream fix for compatibility with new rrd. Simplified ebuild file, folded seds, corrected pmakefile. Restricts tests - there are none, but runner fails due to pmake. Fixes build on musl. Closes: https://bugs.gentoo.org/716080 Closes: https://bugs.gentoo.org/932440 Closes: https://bugs.gentoo.org/623448 Closes: https://bugs.gentoo.org/911776 Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/40843 Signed-off-by: Sam James <sam@gentoo.org>
99 lines
2.2 KiB
Bash
99 lines
2.2 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit edo perl-module toolchain-funcs
|
|
|
|
DESCRIPTION="Performance and information monitoring tool"
|
|
HOMEPAGE="https://wpd.home.xs4all.nl/symon/"
|
|
SRC_URI="https://wpd.home.xs4all.nl/symon/philes/${P}.tar.gz"
|
|
S="${WORKDIR}"/${PN}
|
|
|
|
LICENSE="BSD-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~sparc ~x86"
|
|
IUSE="perl +symon symux"
|
|
REQUIRED_USE="|| ( perl symon symux )"
|
|
# there are no tests, trying to run them fails because pmakefile
|
|
RESTRICT="test"
|
|
|
|
BDEPEND="dev-build/pmake"
|
|
RDEPEND="
|
|
perl? ( dev-lang/perl )
|
|
symux? ( net-analyzer/rrdtool )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
# Deletes the directory passed as an argument from the internal pmake
|
|
# variable SUBDIR.
|
|
zap_subdir() {
|
|
sed -i "/^SUBDIR/s|$1||" Makefile || die
|
|
}
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-condition-makefiles.patch"
|
|
"${FILESDIR}/${P}-extern_c.patch"
|
|
)
|
|
|
|
src_configure() {
|
|
# Do some sed magic in accordance with the USE flags.
|
|
use perl && ! use symon && ! use symux && zap_subdir lib
|
|
! use perl && zap_subdir client
|
|
! use symux && zap_subdir symux
|
|
! use symon && zap_subdir symon
|
|
}
|
|
|
|
src_compile() {
|
|
edo pmake CC="$(tc-getCC)" CFLAGS+="${CFLAGS}" LDFLAGS+="${LDFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
if use symon; then
|
|
insinto /etc
|
|
doins "${FILESDIR}"/symon.conf
|
|
|
|
newinitd "${FILESDIR}"/symon-init.d symon
|
|
|
|
dodoc CHANGELOG HACKERS TODO
|
|
|
|
doman symon/symon.8
|
|
dosbin symon/symon
|
|
fi
|
|
|
|
if use perl; then
|
|
dobin client/getsymonitem.pl
|
|
|
|
perl_set_version
|
|
insinto ${VENDOR_LIB}
|
|
doins client/SymuxClient.pm
|
|
fi
|
|
|
|
if use symux; then
|
|
insinto /etc
|
|
doins "${FILESDIR}"/symux.conf
|
|
|
|
newinitd "${FILESDIR}"/symux-init.d symux
|
|
|
|
doman symux/symux.8
|
|
dosbin symux/symux
|
|
|
|
insinto /usr/share/symon
|
|
doins symux/c_smrrds.sh
|
|
fperms a+x /usr/share/symon/c_smrrds.sh
|
|
|
|
dodir /var/lib/symon/rrds/localhost
|
|
keepdir /var/lib/symon/rrds/localhost
|
|
fi
|
|
}
|
|
|
|
pkg_postinst() {
|
|
if use symux; then
|
|
elog "The RRDs files can be obtained by running"
|
|
elog "/usr/share/symon/c_smrrds.sh all."
|
|
elog "For information about migrating RRDs from a previous"
|
|
elog "symux version read the LEGACY FORMATS section of symux(8)."
|
|
elog "To view the rrdtool pictures of the stored data, emerge"
|
|
elog "net-analyzer/syweb."
|
|
fi
|
|
}
|