diff options
author | Sam James <sam@gentoo.org> | 2021-12-10 03:39:15 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-12-10 03:48:54 +0000 |
commit | f4de2d16bde77e959301b1a6ee62e9f9ceecaa66 (patch) | |
tree | 6a8490f1545f1c2c8b569864647ba5d6960e8d54 /net-analyzer/cacti/cacti-1.2.19.ebuild | |
parent | net-analyzer/iptstate: add 2.2.7 (diff) | |
download | gentoo-f4de2d16bde77e959301b1a6ee62e9f9ceecaa66.tar.gz gentoo-f4de2d16bde77e959301b1a6ee62e9f9ceecaa66.tar.bz2 gentoo-f4de2d16bde77e959301b1a6ee62e9f9ceecaa66.zip |
net-analyzer/cacti: add 1.2.19
Bug: https://bugs.gentoo.org/823788
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer/cacti/cacti-1.2.19.ebuild')
-rw-r--r-- | net-analyzer/cacti/cacti-1.2.19.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/net-analyzer/cacti/cacti-1.2.19.ebuild b/net-analyzer/cacti/cacti-1.2.19.ebuild new file mode 100644 index 000000000000..1dfa8747632d --- /dev/null +++ b/net-analyzer/cacti/cacti-1.2.19.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit edos2unix webapp + +# Support for _p* in version. +MY_P=${P/_p*/} + +DESCRIPTION="Cacti is a complete frontend to rrdtool" +HOMEPAGE="https://www.cacti.net/" +SRC_URI="https://www.cacti.net/downloads/${MY_P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="snmp doc" + +need_httpd + +RDEPEND=" + dev-lang/php[cli,mysql,pdo,session,sockets,xml] + dev-php/adodb + net-analyzer/rrdtool[graph] + virtual/cron + snmp? ( >=net-analyzer/net-snmp-5.2.0 ) +" + +src_compile() { :; } + +src_install() { + dodoc CHANGELOG + dodoc -r docs + mv docs .. || die + + webapp_src_preinst + + edos2unix `find -type f -name '*.php'` + + dodir ${MY_HTDOCSDIR} + cp -r . "${ED}"${MY_HTDOCSDIR} + + webapp_serverowned ${MY_HTDOCSDIR}/rra + webapp_serverowned ${MY_HTDOCSDIR}/log + webapp_configfile ${MY_HTDOCSDIR}/include/config.php + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt + + webapp_src_install +} |