diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2024-03-07 19:02:13 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2024-03-07 19:02:13 +0000 |
| commit | 76d0e0d7d89199ae1e8da17500460a22ddfee935 (patch) | |
| tree | 04e54e73529def4f99a6c511b42648c206b2104d /net-analyzer/munin-contrib | |
| parent | a35c8d9ce7b60a748d248eeb61092abb433d11a1 (diff) | |
| download | baldeagleos-repo-76d0e0d7d89199ae1e8da17500460a22ddfee935.tar.gz baldeagleos-repo-76d0e0d7d89199ae1e8da17500460a22ddfee935.tar.xz baldeagleos-repo-76d0e0d7d89199ae1e8da17500460a22ddfee935.zip | |
Adding metadata
Diffstat (limited to 'net-analyzer/munin-contrib')
| -rw-r--r-- | net-analyzer/munin-contrib/munin-contrib-0.2024.03.04-r1.ebuild | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/net-analyzer/munin-contrib/munin-contrib-0.2024.03.04-r1.ebuild b/net-analyzer/munin-contrib/munin-contrib-0.2024.03.04-r1.ebuild new file mode 100644 index 000000000000..3305c7dcd36c --- /dev/null +++ b/net-analyzer/munin-contrib/munin-contrib-0.2024.03.04-r1.ebuild @@ -0,0 +1,111 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +inherit toolchain-funcs + +COMMIT="83f4e970c4a7378540057318a5083653ee2f138b" + +DESCRIPTION="User contributed stuff related to munin" +HOMEPAGE="https://github.com/munin-monitoring/contrib" +SRC_URI="https://github.com/munin-monitoring/contrib/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/contrib-${COMMIT}" + +LICENSE="GPL-3+ Apache-2.0 GPL-2 LGPL-2 GPL-2+ LGPL-3+ MIT" #TODO: investigate all the licenses +SLOT="0" +KEYWORDS="~amd64" +IUSE="examples templates tools" + +RDEPEND="net-analyzer/munin" + +README_PLUGINS=( + plugins/README.md + plugins/apache/apache_byprojects/README.md + plugins/apache/apache_vhosts/README.txt + plugins/apt/deb_packages/README.md + plugins/jmx/readme.txt + plugins/kamailio/README.md + plugins/network/linux_if/README.md + plugins/nfs-freebsd/README.rst + plugins/nginx/nginx_byprojects/README.md + plugins/prosody/README.rst + plugins/rackspace/README + plugins/tarsnap/README.md + plugins/varnish/README-varnish4.md + plugins/varnish/README.rst + plugins/znc/README.md + plugins/zope/README-zodb +) +README_TOOLS=( + tools/munin-node-c/README + tools/munin-node-from-hell/README.rst + tools/munin-plugins-busybox/README + tools/pmmn/plugins/README + tools/pypmmn/README.rst +) + +src_prepare() { + default + rm "plugins/nginx/nginx_byprojects/LICENSE.txt" || die +} + +src_compile() { + export CC=$(tc-getCC) + + pushd plugins/cpu || die + emake multicpu1sec-c + rm multicpu1sec-c.c || die + popd + pushd plugins/disk/smart-c || die + emake + rm *.h *.o *.c Makefile || die + popd + pushd plugins/network || die + emake if1sec-c + rm if1sec-c.c || die + popd +} + +src_install() { + if use tools ; then + for i in "${README_TOOLS[@]}" ; do + p="${ED}/usr/share/doc/${PF}/${i%/*}" + mkdir -p "${p}" || die + mv "${i}" "${p}" || die + done + insinto "/usr/libexec/munin" + doins -r tools + fi + + #install documentation in subfolders + for i in plugins/{apt,network,}/*/example-graphs ; do + p="${ED}/usr/share/doc/${PF}/${i}" + mkdir -p "${p}" || die + mv "${i}" "${p}" || die + done + for i in "${README_PLUGINS[@]}" ; do + p="${ED}/usr/share/doc/${PF}/${i%/*}" + mkdir -p "${p}" || die + mv "${i}" "${p}" || die + done + + #install plugins without getting mad at preserving exec bit + mkdir -p "${ED}/usr/libexec/munin/plugins/contrib" || die + mv plugins/* "${ED}/usr/libexec/munin/plugins/contrib" || die + + elog "2023 Feb 1, the network/transmission file was replaced " + elog "by a directory of the same name. You may get a file collision " + elog "warning because of it. As long as you haven't made manual " + elog "edits to the file, you can remove the transmission.backup.#### " + elog "file if one is made." + elog + elog "See https://github.com/munin-monitoring/contrib/commit/2a12025ee5a22dad41be8f1c05052c2a93e3d3bd" + + insinto "/etc/munin/templates" + use templates && doins -r templates/munstrap + + use examples && dodoc -r samples/munin.conf + + dodoc README.md +} |
