net-analyzer/cacti: add 1.2.19

Bug: https://bugs.gentoo.org/823788
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2021-12-10 03:39:15 +00:00
parent 6b74ed44db
commit f4de2d16bd
2 changed files with 50 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST cacti-1.2.17.tar.gz 38344112 BLAKE2B e555fc99560d10e94181c38b50e6f839532fb3dc66ff688b36a7efd10c15304e7636c9b4b483763fcea751317bcb283bb2bd8f813d5759c98aed6bbf02fd256a SHA512 94ae75b2494a91c536906c7bbeaa948d16c7ad96ed3a62c1eb21175f92c01787c6849960bbc791e04b3df46edbfd3cd787eb825bb423ce0814c0904edb2c915d
DIST cacti-1.2.19.tar.gz 38477886 BLAKE2B 7d72ecd376c633f1a4e46d3ed69977eb4d342deb900aabcbccbe6213368d67f75909f55c5e1bf21dcd8e422b4504dc1a25a63fe7cf26394d4b43a35db0cedce3 SHA512 076397f4cf048dac6e0c9bb8a4889ba94ca9e40c4d53c2c142ed9e19c7a0dc5c5aa8e2321563b914635a753b59b215926a1a73723fa41d1006473cc34667ad70

View File

@@ -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
}