diff options
author | Sam James <sam@gentoo.org> | 2020-07-29 00:19:26 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-07-29 00:19:39 +0000 |
commit | a682b03e136370d0b875eea46428f955976a9f3d (patch) | |
tree | 75b8c9941652a88e38dc74bf84a62fbf7f5883f9 /net-analyzer/cacti/cacti-1.2.12.ebuild | |
parent | mail-client/roundcube: security cleanup (diff) | |
download | gentoo-a682b03e136370d0b875eea46428f955976a9f3d.tar.gz gentoo-a682b03e136370d0b875eea46428f955976a9f3d.tar.bz2 gentoo-a682b03e136370d0b875eea46428f955976a9f3d.zip |
net-analyzer/cacti: security cleanup
Bug: https://bugs.gentoo.org/732522
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer/cacti/cacti-1.2.12.ebuild')
-rw-r--r-- | net-analyzer/cacti/cacti-1.2.12.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/net-analyzer/cacti/cacti-1.2.12.ebuild b/net-analyzer/cacti/cacti-1.2.12.ebuild deleted file mode 100644 index 2ec9213257a6..000000000000 --- a/net-analyzer/cacti/cacti-1.2.12.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit eutils 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 . "${D}"${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 -} |