net-analyzer/symon: Version bump.

Package-Manager: Portage-2.3.4, Repoman-2.3.1
This commit is contained in:
Jeroen Roovers
2017-03-07 09:00:48 +01:00
parent bbc294f73e
commit da1d30da88
2 changed files with 106 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST symon-2.87.tar.gz 107607 SHA256 3c0fa1aa0073f66c45697ffc12bb8da669eb67aeac22041d21235bbc515a8602 SHA512 8fce5cf2312f1d7ba78f693da2df9fea3bbeacae0c1b65f79c5f2444fcf07e07b11a5a7229ba762ac47ce484429a42f37bcbcc9e001fce0e5813a0dffd57a953 WHIRLPOOL ce9277f03198fbfa197aaa3540d6f5226d3f449bf69a2ee083917f4afe2e6439cfcc3289792c1f1ecf727d004d6aec3f470a813700f033fa6d9e13390ed5ce22
DIST symon-2.88.tar.gz 110149 SHA256 02fd2641b0f671b1a623ff37099c75a3523e3ae98c7fdb1f5ebd04cb9cfa20f1 SHA512 d2079caefcde4cf017460560826c7bf9e97aee9dcce886cd0a85d671bdad877c513889c9b7cd67844dbb4161ce6b6e6f99709475dd2591141f1bc61ee11e8173 WHIRLPOOL b5724c1e787ba2932afecd0902cedea590e6a7a8de41c0b914ac53fed863b47863585fef401d8b5d69d085cd06c5b1eac436a3abb9f230b7f071a09ae2c6eacb

View File

@@ -0,0 +1,105 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils perl-module toolchain-funcs
DESCRIPTION="Performance and information monitoring tool"
HOMEPAGE="http://wpd.home.xs4all.nl/symon"
SRC_URI="${HOMEPAGE}/philes/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE="perl +symon symux"
REQUIRED_USE="
|| ( perl symon symux )
"
RDEPEND="
perl? ( dev-lang/perl )
symux? ( net-analyzer/rrdtool )
"
DEPEND="
${RDEPEND}
virtual/pmake
"
S=${WORKDIR}/${PN}
# Deletes the directory passed as an argument from the internal pmake
# variable SUBDIR.
zap_subdir() {
sed -i "/^SUBDIR/s|$1||" Makefile || die
}
src_prepare() {
default
sed -i \
-e '/^[ \t]*${CC}.*\${LIBS}/s:\${CC}:$(CC) $(LDFLAGS):' \
sym*/Makefile || die
}
src_configure() {
use symon && USE_SYMON=1
# Do some sed magic in accordance with the USE flags.
use perl && [[ -z ${USE_SYMON} ]] && ! use symux && zap_subdir lib
! use perl && zap_subdir client
! use symux && zap_subdir symux
[[ -z ${USE_SYMON} ]] && zap_subdir symon
}
src_compile() {
pmake CC="$(tc-getCC)" CFLAGS+="${CFLAGS}" STRIP=true || die
}
src_install() {
if [[ -n ${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
dodir /usr/share/symon
insinto /usr/share/symon
doins symux/c_smrrds.sh
fperms a+x /usr/share/symon/c_smrrds.sh
dodir /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
}