diff options
Diffstat (limited to 'net-analyzer/cacti/cacti-0.8.6f.ebuild')
-rw-r--r-- | net-analyzer/cacti/cacti-0.8.6f.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/net-analyzer/cacti/cacti-0.8.6f.ebuild b/net-analyzer/cacti/cacti-0.8.6f.ebuild deleted file mode 100644 index 14ab11cdb5dd..000000000000 --- a/net-analyzer/cacti/cacti-0.8.6f.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti/cacti-0.8.6f.ebuild,v 1.3 2005/07/03 02:55:36 ramereth Exp $ - -inherit eutils webapp - -DESCRIPTION="Cacti is a complete frontend to rrdtool" -HOMEPAGE="http://www.cacti.net/" -SRC_URI="http://www.cacti.net/downloads/${P}.tar.gz" - -LICENSE="GPL-2" -KEYWORDS="~alpha ~amd64 ~ppc sparc x86" -IUSE="snmp" - -DEPEND="" - -# TODO: RDEPEND Not just apache... but there's no virtual/webserver (yet) - -RDEPEND="net-www/apache - snmp? ( net-analyzer/net-snmp ) - net-analyzer/rrdtool - dev-db/mysql - virtual/cron - dev-php/php - dev-php/mod_php" - -pkg_setup() { - webapp_pkg_setup - built_with_use dev-php/php mysql || \ - die "dev-php/php must be compiled with USE=mysql" - built_with_use dev-php/mod_php mysql || \ - die "dev-php/mod_php must be compiled with USE=mysql" -} - -src_compile() { - einfo "Nothing to compile." -} - -src_install() { - webapp_src_preinst - - dodoc LICENSE - rm LICENSE README - - dodoc docs/{CHANGELOG,CONTRIB,INSTALL,README,REQUIREMENTS,UPGRADE} - rm -rf docs - - edos2unix `find -type f -name '*.php'` - - dodir ${MY_HTDOCSDIR} - cp -r . ${D}${MY_HTDOCSDIR} - - webapp_configfile ${MY_HTDOCSDIR}/include/config.php - webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt - - webapp_src_install -} - |