blob: aeb921815fd384be89ae914e18969d7f2c0062f5 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# 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.6c.ebuild,v 1.4 2005/03/05 00:13:17 weeve 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="x86 ~ppc sparc ~alpha ~amd64"
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"
check_useflag() {
local my_pkg=$(best_version ${1})
local my_flag=${2}
if [[ $(grep -wo ${my_flag} /var/db/pkg/${my_pkg}/USE) ]]
then
return 0
fi
eerror "${my_pkg} was compiled without ${my_flag}. Please re-emerge it with USE=${my_flag}"
die "check_useflag failed"
}
pkg_setup() {
webapp_pkg_setup
# Check if php, mod_php was emerged with mysql useflag
check_useflag dev-php/php mysql
check_useflag dev-php/mod_php 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
#Don't overwrite old config
mv include/config.php include/config-sample.php
edos2unix `find -type f -name '*.php'`
dodir ${D}${MY_HTDOCSDIR}
cp -r . ${D}${MY_HTDOCSDIR}
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
webapp_src_install
}
|