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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti/cacti-0.8.3.ebuild,v 1.2 2003/09/05 23:40:08 msterret Exp $
inherit eutils
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"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~alpha"
IUSE="snmp"
DEPEND=""
RDEPEND="net-www/apache
snmp? ( virtual/snmp )
net-analyzer/rrdtool
dev-db/mysql
dev-php/php
dev-php/mod_php"
export HTTPD_ROOT=/home/httpd/htdocs
export HTTPD_USER=apache
export HTTPD_GROUP=apache
export INSTALL_DEST=${HTTPD_ROOT}/cacti
src_install() {
dohtml docs/{INSTALL,UPGRADE}.htm
dodoc docs/{CHANGELOG,CONTRIB}
dodoc LICENSE
rm docs/{INSTALL,UPGRADE,INSTALL-WIN32}.htm
rm docs/{README,CHANGELOG,CONTRIB}
rm LICENSE README
mv docs/manual .
rm -fr docs
rm -rf cactid
dodir ${INSTALL_DEST}
edos2unix `find -type f -name '*.php'`
chown -R ${HTTPD_USER}.${HTTPD_GROUP} *
mv * ${D}/${INSTALL_DEST}/
}
pkg_postinst() {
# check to see if we have a previous version installed
minor_inst="$(ls -d /var/db/pkg/net-analyzer/cacti*|head -n 1|cut -d\. -f2)"
rel_inst="$(ls -d /var/db/pkg/net-analyzer/cacti*|head -n 1|cut -d\. -f3)"
if [ ${minor_inst}${rel_inst} -lt 81 ]
then
einfo
einfo "The cacti has been installed to ${INSTALL_DEST}"
einfo
einfo "Before cacti works you must upgrade the cacti database:"
einfo "1. Backup the old cacti database:"
einfo " shell> mysqlhotcopy --suffix=_old cacti"
einfo "2. Drop the old cacti database:"
einfo " shell> mysqladmin -p drop cacti"
einfo "3. Create the new cacti database"
einfo " shell> mysqladmin --user=root create cacti"
einfo "4. Import the default cacti database:"
einfo " shell> mysql cacti < ${INSTALL_DEST}/cacti.sql"
einfo "5. Edit ${INSTALL_DEST}/include/config.php."
einfo " + Modify the MySQL user, password and database for your"
einfo " cacti configuration."
einfo " \$database_default = \"cacti\";"
einfo " \$database_hostname = \"localhost\";"
einfo " \$database_username = \"cactiuser\";"
einfo " \$database_password = \"cacti\";"
einfo "6. Point your web browser to: http://your-server/cacti/"
einfo " Select \"Upgrade\"."
einfo " Make sure to fill in all of the path variables carefully and"
einfo " correctly on the following screen."
einfo
einfo "FINALLY, you must have these settings in your php.ini:"
einfo " register_globals = On"
einfo " register_argc_argv = On"
einfo
einfo "Test your upgraded installation. When all is fine you can"
eingo "drop the cacti_old database like so:"
einfo " shell> mysqladmin -p drop cacti_old"
einfo
else
einfo
einfo "The cacti has been copied to ${INSTALL_DEST}"
einfo
einfo "Before cacti works you must:"
einfo "1. Create the new cacti database"
einfo " shell> mysqladmin --user=root create cacti"
einfo "2. Import the default cacti database:"
einfo " shell> mysql cacti < ${INSTALL_DEST}/cacti.sql"
einfo "3. Optional: Create a MySQL username and password for cacti."
einfo " shell> mysql --user=root mysql"
einfo " mysql> GRANT ALL ON cacti.* TO cactiuser@localhost IDENTIFIED BY 'somepassword';"
einfo " mysql> flush privileges;"
einfo "4. Edit ${INSTALL_DEST}/include/config.php."
einfo " + Modify the MySQL user, password and database for your"
einfo " cacti configuration."
einfo " \$database_default = \"cacti\";"
einfo " \$database_hostname = \"localhost\";"
einfo " \$database_username = \"cactiuser\";"
einfo " \$database_password = \"cacti\";"
einfo "5. Point your web browser to: http://your-server/cacti/"
einfo " Make sure to fill in all of the path variables carefully and"
einfo " correctly on the following screen."
einfo
einfo "FINALLY, you must have these settings in your php.ini:"
einfo " register_globals = On"
einfo " register_argc_argv = On"
einfo
fi
}
|