diff options
author | Lance Albertson <ramereth@gentoo.org> | 2005-09-10 19:56:27 +0000 |
---|---|---|
committer | Lance Albertson <ramereth@gentoo.org> | 2005-09-10 19:56:27 +0000 |
commit | 08b45bed0d478545f413223a5f7c15e4750051c8 (patch) | |
tree | a99fb6619ac730270e8e5f54e9bc9e89637bff05 /net-analyzer/cacti/cacti-0.8.6g.ebuild | |
parent | Marked stable on amd64 (diff) | |
download | historical-08b45bed0d478545f413223a5f7c15e4750051c8.tar.gz historical-08b45bed0d478545f413223a5f7c15e4750051c8.tar.bz2 historical-08b45bed0d478545f413223a5f7c15e4750051c8.zip |
new version bump, remove old version
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'net-analyzer/cacti/cacti-0.8.6g.ebuild')
-rw-r--r-- | net-analyzer/cacti/cacti-0.8.6g.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/net-analyzer/cacti/cacti-0.8.6g.ebuild b/net-analyzer/cacti/cacti-0.8.6g.ebuild new file mode 100644 index 000000000000..47b3a8d190a6 --- /dev/null +++ b/net-analyzer/cacti/cacti-0.8.6g.ebuild @@ -0,0 +1,71 @@ +# 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.6g.ebuild,v 1.1 2005/09/10 19:56:27 ramereth Exp $ + +inherit eutils webapp + +DESCRIPTION="Cacti is a complete frontend to rrdtool" +HOMEPAGE="http://www.cacti.net/" +# patches (none needed for new 0.8.6g) +#UPSTREAM_PATCHES="" +SRC_URI="http://www.cacti.net/downloads/${P}.tar.gz" +#for i in $UPSTREAM_PATCHES ; do +# SRC_URI="${SRC_URI} http://www.cacti.net/downloads/patches/${PV}/${i}" +#done + +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 + virtual/php + virtual/httpd-php" + +src_unpack() { + unpack ${P}.tar.gz + # patches (none needed for new 0.8.6g) + #for i in ${UPSTREAM_PATCHES} ; do + # EPATCH_OPTS="-p1 -d ${S} -N" epatch ${DISTDIR}/${i} + #done ; +} + +pkg_setup() { + webapp_pkg_setup + built_with_use virtual/php mysql || \ + die "php cli sapi must be compiled with USE=mysql" + built_with_use virtual/httpd-php mysql || \ + die "php apache/cgi sapi 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 +} + |