summaryrefslogtreecommitdiff
blob: c49110e2da15991b3f95eb87c2f2009a8ca9e3ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti/cacti-0.6.8a.ebuild,v 1.4 2002/12/15 10:44:20 bjb Exp $

DESCRIPTION="Cacti is a complete frondend to rrdtool"
HOMEPAGE="http://www.raxnet.net/products/cacti/"
SRC_URI="http://www.raxnet.net/downloads/${P}.tar.gz"

IUSE="snmp"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~alpha"

DEPEND=""
RDEPEND="net-www/apache
	snmp? ( net-analyzer/ucd-snmp )
	dev-db/mysql
	dev-php/php
	dev-php/mod_php"

INSTALL_DEST="`grep '^DocumentRoot' /etc/apache/conf/apache.conf | cut -d\  -f2`"
[ -z "${INSTALL_DEST}" ] && INSTALL_DEST="/home/httpd/htdocs"
INSTALL_DEST="${INSTALL_DEST}/cacti"

src_install() {
	dodoc docs/{CHANGELOG,CONTRIB,README}
	rm README LICENSE docs/{CHANGELOG,CONTRIB,README}

	dodir ${INSTALL_DEST}
	chown apache.apache * -R
	mv * ${D}/${INSTALL_DEST}/
}

pkg_postinst() {
	einfo
	einfo "The cacti has been copied to ${INSTALL_DEST}"
	einfo
	einfo "Before cacti works you must create the cacti database:"
	einfo " mysqladmin -u root -p create cacti"
	einfo " mysql -u root -p cacti < ${INSTALL_DEST}/cacti.sql"
	einfo "And you must setup the config.php file:"
	einfo " nano ${INSTALL_DEST}/include/config.php"
	einfo
	einfo "FINALLY, you must have these settings in your php.ini:"
	einfo " register_globals = On"
	einfo " register_argc_argv = On"
	einfo
}