diff options
author | 2009-11-25 11:14:41 +0000 | |
---|---|---|
committer | 2009-11-25 11:14:41 +0000 | |
commit | 19d343b5e446eb12ab6b4f32a67891e25434ac4c (patch) | |
tree | f99af5f7039d72be15d1b24adeddc94b11569f52 /net-analyzer/cacti/cacti-0.8.7e-r1.ebuild | |
parent | amd64 stable, bug #294297 (diff) | |
download | historical-19d343b5e446eb12ab6b4f32a67891e25434ac4c.tar.gz historical-19d343b5e446eb12ab6b4f32a67891e25434ac4c.tar.bz2 historical-19d343b5e446eb12ab6b4f32a67891e25434ac4c.zip |
Added patch to fix HTML injection vulnerabilities, thank Vadim Efimov for report, bug #294573. Removed old.
Package-Manager: portage-2.2_rc46/cvs/Linux x86_64
Diffstat (limited to 'net-analyzer/cacti/cacti-0.8.7e-r1.ebuild')
-rw-r--r-- | net-analyzer/cacti/cacti-0.8.7e-r1.ebuild | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/net-analyzer/cacti/cacti-0.8.7e-r1.ebuild b/net-analyzer/cacti/cacti-0.8.7e-r1.ebuild new file mode 100644 index 000000000000..6e73139e3223 --- /dev/null +++ b/net-analyzer/cacti/cacti-0.8.7e-r1.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti/cacti-0.8.7e-r1.ebuild,v 1.1 2009/11/25 11:14:41 pva Exp $ + +inherit eutils webapp depend.php + +# Support for _p* in version. +MY_P=${P/_p*/} +HAS_PATCHES=1 + +DESCRIPTION="Cacti is a complete frontend to rrdtool" +HOMEPAGE="http://www.cacti.net/" +SRC_URI="http://www.cacti.net/downloads/${MY_P}.tar.gz" + +# patches +if [ "${HAS_PATCHES}" == "1" ] ; then + UPSTREAM_PATCHES="cli_add_graph + snmp_invalid_response + template_duplication + fix_icmp_on_windows_iis_servers + cross_site_fix" + for i in ${UPSTREAM_PATCHES} ; do + SRC_URI="${SRC_URI} http://www.cacti.net/downloads/patches/${PV/_p*}/${i}.patch" + done +fi + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="snmp doc" + +DEPEND="" + +need_php_cli +need_httpd_cgi +need_php_httpd + +RDEPEND="snmp? ( >=net-analyzer/net-snmp-5.1.2 ) + net-analyzer/rrdtool + dev-php/adodb + virtual/mysql + virtual/cron" + +src_unpack() { + if [ "${HAS_PATCHES}" == "1" ] ; then + unpack ${MY_P}.tar.gz + [ ! ${MY_P} == ${P} ] && mv ${MY_P} ${P} + # patches + for i in ${UPSTREAM_PATCHES} ; do + EPATCH_OPTS="-p1 -d ${S} -N" epatch "${DISTDIR}"/${i}.patch + done ; + else + unpack ${MY_P}.tar.gz + fi + + sed -i -e \ + 's:$config\["library_path"\] . "/adodb/adodb.inc.php":"adodb/adodb.inc.php":' \ + "${S}"/include/global.php + + rm -rf lib/adodb # don't use bundled adodb +} + +pkg_setup() { + webapp_pkg_setup + has_php + require_php_with_use cli mysql xml session pcre sockets +} + +src_compile() { :; } + +src_install() { + webapp_src_preinst + + rm LICENSE README + dodoc docs/{CHANGELOG,CONTRIB,README,txt/manual.txt} || die + use doc && dohtml -r docs/html/ + rm -rf docs + + edos2unix `find -type f -name '*.php'` + + dodir ${MY_HTDOCSDIR} + cp -r . "${D}"${MY_HTDOCSDIR} + + webapp_serverowned ${MY_HTDOCSDIR}/rra + webapp_serverowned ${MY_HTDOCSDIR}/log/cacti.log + webapp_configfile ${MY_HTDOCSDIR}/include/config.php + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt + + webapp_src_install +} |