summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--net-analyzer/cacti-spine/ChangeLog6
-rw-r--r--net-analyzer/cacti-spine/cacti-spine-0.8.7a.ebuild58
-rw-r--r--net-analyzer/cacti-spine/cacti-spine-0.8.7c.ebuild63
-rw-r--r--net-analyzer/cacti-spine/cacti-spine-0.8.7e.ebuild63
4 files changed, 5 insertions, 185 deletions
diff --git a/net-analyzer/cacti-spine/ChangeLog b/net-analyzer/cacti-spine/ChangeLog
index c1c720c2db93..684463f7d387 100644
--- a/net-analyzer/cacti-spine/ChangeLog
+++ b/net-analyzer/cacti-spine/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-analyzer/cacti-spine
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti-spine/ChangeLog,v 1.19 2010/01/06 20:21:07 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti-spine/ChangeLog,v 1.20 2010/01/11 22:11:35 pva Exp $
+
+ 11 Jan 2010; Peter Volkov <pva@gentoo.org> -cacti-spine-0.8.7a.ebuild,
+ -cacti-spine-0.8.7c.ebuild, -cacti-spine-0.8.7e.ebuild:
+ Drop old.
06 Jan 2010; Brent Baude <ranger@gentoo.org> cacti-spine-0.8.7e-r1.ebuild:
Marking cacti-spine-0.8.7e-r1 ppc64 for bug 293268
diff --git a/net-analyzer/cacti-spine/cacti-spine-0.8.7a.ebuild b/net-analyzer/cacti-spine/cacti-spine-0.8.7a.ebuild
deleted file mode 100644
index 0c86e541c326..000000000000
--- a/net-analyzer/cacti-spine/cacti-spine-0.8.7a.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti-spine/cacti-spine-0.8.7a.ebuild,v 1.8 2008/05/19 16:52:49 pva Exp $
-
-WANT_AUTOCONF="latest"
-inherit autotools
-
-MY_PV=${PV/_p/-}
-DESCRIPTION="Spine is a fast poller for Cacti (formerly known as Cactid)"
-HOMEPAGE="http://cacti.net/spine_info.php"
-SRC_URI="http://www.cacti.net/downloads/spine/${PN}-${MY_PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 sparc x86"
-IUSE=""
-
-DEPEND="net-analyzer/net-snmp
- virtual/mysql"
-RDEPEND="${DEPEND}
- >net-analyzer/cacti-0.8.7"
-
-src_unpack() {
- unpack ${A} ; cd "${S}"
- sed -i -e 's/^bin_PROGRAMS/sbin_PROGRAMS/' Makefile.am
- sed -i -e 's/wwwroot\/cacti\/log/var\/log/g' spine.h
- eaclocal
- eautoconf
-}
-
-src_compile() {
- econf || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- exeinto usr/sbin ; doexe "${S}"/spine
- insinto etc/ ; insopts -m0640 -o root ; doins "${S}"/spine.conf
- dodoc ChangeLog INSTALL README
-}
-
-pkg_postinst() {
- ewarn "NOTE: If you upgraded from cactid, do not forgive to setup spine"
- ewarn "instead of cactid through web interface."
- ewarn
- elog "Please see cacti's site for installation instructions."
- elog "Theres no need to change the crontab for this, just"
- elog "read the instructions on how to implement it"
- elog
- elog "http://cacti.net/spine_install.php"
- echo
- ewarn "/etc/spine.conf should be readable by webserver, thus after you"
- ewarn "decide on webserver/webserver group do not forget to change it's"
- ewarn "group with the following command:"
- ewarn
- ewarn " # chown root:wwwgroup /etc/spine.conf"
- echo
-}
diff --git a/net-analyzer/cacti-spine/cacti-spine-0.8.7c.ebuild b/net-analyzer/cacti-spine/cacti-spine-0.8.7c.ebuild
deleted file mode 100644
index f126ef26c8ad..000000000000
--- a/net-analyzer/cacti-spine/cacti-spine-0.8.7c.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti-spine/cacti-spine-0.8.7c.ebuild,v 1.2 2009/08/24 16:14:01 ramereth Exp $
-
-inherit autotools
-
-if [[ ${PV} =~ (_p)([0-9]+) ]] ; then
- inherit subversion
- SRC_URI=""
- MTSLPT_REV=${BASH_REMATCH[2]}
- ESVN_REPO_URI="svn://svn.cacti.net/var/svnroot/cacti/spine/branches/0.8.7/@${MTSLPT_REV}"
-else
- MY_PV=${PV/_p/-}
- SRC_URI="http://www.cacti.net/downloads/spine/${PN}-${MY_PV}.tar.gz"
-fi
-DESCRIPTION="Spine is a fast poller for Cacti (formerly known as Cactid)"
-HOMEPAGE="http://cacti.net/spine_info.php"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86"
-IUSE=""
-
-DEPEND="net-analyzer/net-snmp
- dev-libs/openssl
- virtual/mysql"
-RDEPEND="${DEPEND}
- >net-analyzer/cacti-0.8.7"
-
-src_unpack() {
- if [[ "${SRC_URI}" == "" ]] ; then
- subversion_src_unpack
- else
- unpack ${A}
- fi
- cd "${S}"
- sed -i -e 's/^bin_PROGRAMS/sbin_PROGRAMS/' Makefile.am
- rm configure # configure is not executable, autoconf recreates it...
- eautoreconf
-}
-
-src_install() {
- dosbin spine || die
- insinto /etc/
- insopts -m0640 -o root
- newins spine.conf.dist spine.conf || die
- dodoc ChangeLog README || die
-}
-
-pkg_postinst() {
- ewarn "NOTE: If you upgraded from cactid, do not forgive to setup spine"
- ewarn "instead of cactid through web interface."
- ewarn
- elog "Please see the cacti's site for installation instructions:"
- elog
- elog "http://cacti.net/spine_install.php"
- echo
- ewarn "/etc/spine.conf should be readable by webserver, thus after you"
- ewarn "decide on webserver do not forget to run the following command:"
- ewarn
- ewarn " # chown root:wwwgroup /etc/spine.conf"
- echo
-}
diff --git a/net-analyzer/cacti-spine/cacti-spine-0.8.7e.ebuild b/net-analyzer/cacti-spine/cacti-spine-0.8.7e.ebuild
deleted file mode 100644
index 572b3c5c07c1..000000000000
--- a/net-analyzer/cacti-spine/cacti-spine-0.8.7e.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti-spine/cacti-spine-0.8.7e.ebuild,v 1.2 2009/09/24 18:54:22 ramereth Exp $
-
-inherit autotools
-
-if [[ ${PV} =~ (_p)([0-9]+) ]] ; then
- inherit subversion
- SRC_URI=""
- MTSLPT_REV=${BASH_REMATCH[2]}
- ESVN_REPO_URI="svn://svn.cacti.net/var/svnroot/cacti/spine/branches/0.8.7/@${MTSLPT_REV}"
-else
- MY_PV=${PV/_p/-}
- SRC_URI="http://www.cacti.net/downloads/spine/${PN}-${MY_PV}.tar.gz"
-fi
-DESCRIPTION="Spine is a fast poller for Cacti (formerly known as Cactid)"
-HOMEPAGE="http://cacti.net/spine_info.php"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86"
-IUSE=""
-
-DEPEND="net-analyzer/net-snmp
- dev-libs/openssl
- virtual/mysql"
-RDEPEND="${DEPEND}
- >net-analyzer/cacti-0.8.7"
-
-src_unpack() {
- if [[ "${SRC_URI}" == "" ]] ; then
- subversion_src_unpack
- else
- unpack ${A}
- fi
- cd "${S}"
- sed -i -e 's/^bin_PROGRAMS/sbin_PROGRAMS/' Makefile.am
- rm configure # configure is not executable, autoconf recreates it...
- eautoreconf
-}
-
-src_install() {
- dosbin spine || die
- insinto /etc/
- insopts -m0640 -o root
- newins spine.conf spine.conf || die
- dodoc ChangeLog README || die
-}
-
-pkg_postinst() {
- ewarn "NOTE: If you upgraded from cactid, do not forgive to setup spine"
- ewarn "instead of cactid through web interface."
- ewarn
- elog "Please see the cacti's site for installation instructions:"
- elog
- elog "http://cacti.net/spine_install.php"
- echo
- ewarn "/etc/spine.conf should be readable by webserver, thus after you"
- ewarn "decide on webserver do not forget to run the following command:"
- ewarn
- ewarn " # chown root:wwwgroup /etc/spine.conf"
- echo
-}