summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2003-09-01 17:32:41 +0000
committerMartin Holzer <mholzer@gentoo.org>2003-09-01 17:32:41 +0000
commit81e289c42ee5dee17d5c83b4fe9e3b509a6b17a0 (patch)
treee7eec8a6dd9e871bfe226f512a7fdda5b786d145 /net-analyzer/cacti
parentVersion bumped. (diff)
downloadgentoo-2-81e289c42ee5dee17d5c83b4fe9e3b509a6b17a0.tar.gz
gentoo-2-81e289c42ee5dee17d5c83b4fe9e3b509a6b17a0.tar.bz2
gentoo-2-81e289c42ee5dee17d5c83b4fe9e3b509a6b17a0.zip
cleanup
Diffstat (limited to 'net-analyzer/cacti')
-rw-r--r--net-analyzer/cacti/Manifest6
-rw-r--r--net-analyzer/cacti/cacti-0.8.1-r1.ebuild115
-rw-r--r--net-analyzer/cacti/cacti-0.8.1.ebuild114
-rw-r--r--net-analyzer/cacti/cacti-0.8.2a.ebuild115
-rw-r--r--net-analyzer/cacti/files/digest-cacti-0.8.11
-rw-r--r--net-analyzer/cacti/files/digest-cacti-0.8.1-r11
-rw-r--r--net-analyzer/cacti/files/digest-cacti-0.8.2a1
7 files changed, 0 insertions, 353 deletions
diff --git a/net-analyzer/cacti/Manifest b/net-analyzer/cacti/Manifest
index ab8ed36a5322..a6b3bea8184d 100644
--- a/net-analyzer/cacti/Manifest
+++ b/net-analyzer/cacti/Manifest
@@ -1,13 +1,7 @@
MD5 4045b3507c78eb4385468d9495ea9861 ChangeLog 1727
MD5 d96fabbabcc5309989f97c185cc8c6de cacti-0.6.8a.ebuild 1482
-MD5 4a83ea90dd510dbc3a375697bdb5d322 cacti-0.8.1.ebuild 4026
-MD5 4c987af71ae2cf59646137f58eaf9f9b cacti-0.8.1-r1.ebuild 4045
-MD5 93972dff8384bda354cd64bff2d6b6d6 cacti-0.8.2a.ebuild 4043
MD5 b15775a0e1e4e88236f8d66bf4de988d cacti-0.8.3.ebuild 4042
MD5 c2597790dff6b0fa37a095f9d18afb65 cacti-0.8.3a.ebuild 4043
MD5 36cff775a40a01ca080d9b290109a795 files/digest-cacti-0.6.8a 64
-MD5 f1e420ab088a8222b4020ab76a92c387 files/digest-cacti-0.8.1 63
-MD5 f1e420ab088a8222b4020ab76a92c387 files/digest-cacti-0.8.1-r1 63
-MD5 0dfc59a82b8b5e964cd8a1db1fa5685c files/digest-cacti-0.8.2a 64
MD5 381882ca083a8b1f4ecc30a381451c75 files/digest-cacti-0.8.3 63
MD5 68b23916512df61b699d43aa9f7d25a5 files/digest-cacti-0.8.3a 64
diff --git a/net-analyzer/cacti/cacti-0.8.1-r1.ebuild b/net-analyzer/cacti/cacti-0.8.1-r1.ebuild
deleted file mode 100644
index 060e2be9a056..000000000000
--- a/net-analyzer/cacti/cacti-0.8.1-r1.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# 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.1-r1.ebuild,v 1.1 2003/07/29 18:53:33 mholzer 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
-}
diff --git a/net-analyzer/cacti/cacti-0.8.1.ebuild b/net-analyzer/cacti/cacti-0.8.1.ebuild
deleted file mode 100644
index 42d70e47c5a5..000000000000
--- a/net-analyzer/cacti/cacti-0.8.1.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# 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.1.ebuild,v 1.4 2003/06/13 20:06:19 vapier 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
-
- 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
-}
diff --git a/net-analyzer/cacti/cacti-0.8.2a.ebuild b/net-analyzer/cacti/cacti-0.8.2a.ebuild
deleted file mode 100644
index b8f6f742cb81..000000000000
--- a/net-analyzer/cacti/cacti-0.8.2a.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# 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.2a.ebuild,v 1.1 2003/07/29 19:07:29 mholzer 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
-}
diff --git a/net-analyzer/cacti/files/digest-cacti-0.8.1 b/net-analyzer/cacti/files/digest-cacti-0.8.1
deleted file mode 100644
index 3ec1397a3b8d..000000000000
--- a/net-analyzer/cacti/files/digest-cacti-0.8.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 d87613690e82e025412de6d747b0674e cacti-0.8.1.tar.gz 513944
diff --git a/net-analyzer/cacti/files/digest-cacti-0.8.1-r1 b/net-analyzer/cacti/files/digest-cacti-0.8.1-r1
deleted file mode 100644
index 3ec1397a3b8d..000000000000
--- a/net-analyzer/cacti/files/digest-cacti-0.8.1-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 d87613690e82e025412de6d747b0674e cacti-0.8.1.tar.gz 513944
diff --git a/net-analyzer/cacti/files/digest-cacti-0.8.2a b/net-analyzer/cacti/files/digest-cacti-0.8.2a
deleted file mode 100644
index 5c98f901d16f..000000000000
--- a/net-analyzer/cacti/files/digest-cacti-0.8.2a
+++ /dev/null
@@ -1 +0,0 @@
-MD5 2f10bfc2b01f1b11866f319fe74b93e7 cacti-0.8.2a.tar.gz 509008