You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/cacti/cacti-0.8.8b.ebuild

83 lines
1.9 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti/cacti-0.8.8b.ebuild,v 1.1 2013/08/25 13:08:23 jmbsvicetto Exp $
EAPI="4"
inherit depend.php eutils webapp
# Support for _p* in version.
MY_P=${P/_p*/}
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
UPSTREAM_PATCHES=""
if [[ -n ${UPSTREAM_PATCHES} ]]; then
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 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="snmp doc"
need_httpd
DEPEND=""
RDEPEND="
dev-lang/php[cli,mysql,session,sockets,xml]
dev-php/adodb
net-analyzer/rrdtool
virtual/cron
virtual/mysql
snmp? ( >=net-analyzer/net-snmp-5.2.0 )
"
src_unpack() {
unpack ${MY_P}.tar.gz
if [[ -n ${UPSTREAM_PATCHES} ]]; then
[ ! ${MY_P} == ${P} ] && mv ${MY_P} ${P}
fi
}
src_prepare() {
if [[ -n ${UPSTREAM_PATCHES} ]]; then
for i in ${UPSTREAM_PATCHES} ; do
EPATCH_OPTS="-p1 -d ${S} -N" epatch "${DISTDIR}"/${i}.patch
done ;
fi
sed -i -e \
's:$config\["library_path"\] . "/adodb/adodb.inc.php":"adodb/adodb.inc.php":' \
"${S}"/include/global.php || die
rm -rf lib/adodb || die # don't use bundled adodb
}
src_compile() { :; }
src_install() {
webapp_src_preinst
rm LICENSE README || die
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
}