diff options
author | Tobias Scherbaum <dertobi123@gentoo.org> | 2010-01-26 18:36:22 +0000 |
---|---|---|
committer | Tobias Scherbaum <dertobi123@gentoo.org> | 2010-01-26 18:36:22 +0000 |
commit | e18687584d4b23f4bf41438120c3f3faf3940488 (patch) | |
tree | ebe29cbb8c5754baf10f946ee73bb5b59561204d /net-analyzer/pnp4nagios | |
parent | Marked ~amd64-linux (bug #302290) (diff) | |
download | gentoo-2-e18687584d4b23f4bf41438120c3f3faf3940488.tar.gz gentoo-2-e18687584d4b23f4bf41438120c3f3faf3940488.tar.bz2 gentoo-2-e18687584d4b23f4bf41438120c3f3faf3940488.zip |
Version bump, #301273
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/pnp4nagios')
-rw-r--r-- | net-analyzer/pnp4nagios/ChangeLog | 10 | ||||
-rw-r--r-- | net-analyzer/pnp4nagios/pnp4nagios-0.6.2.ebuild | 51 |
2 files changed, 59 insertions, 2 deletions
diff --git a/net-analyzer/pnp4nagios/ChangeLog b/net-analyzer/pnp4nagios/ChangeLog index 04c80c658ed9..0b780a9e5564 100644 --- a/net-analyzer/pnp4nagios/ChangeLog +++ b/net-analyzer/pnp4nagios/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/pnp4nagios -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/pnp4nagios/ChangeLog,v 1.12 2009/10/27 19:40:42 dertobi123 Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/pnp4nagios/ChangeLog,v 1.13 2010/01/26 18:36:22 dertobi123 Exp $ + +*pnp4nagios-0.6.2 (26 Jan 2010) + + 26 Jan 2010; Tobias Scherbaum <dertobi123@gentoo.org> + +pnp4nagios-0.6.2.ebuild: + Version bump, #301273 *pnp4nagios-0.4.14 (27 Oct 2009) diff --git a/net-analyzer/pnp4nagios/pnp4nagios-0.6.2.ebuild b/net-analyzer/pnp4nagios/pnp4nagios-0.6.2.ebuild new file mode 100644 index 000000000000..a61826c386b9 --- /dev/null +++ b/net-analyzer/pnp4nagios/pnp4nagios-0.6.2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/pnp4nagios/pnp4nagios-0.6.2.ebuild,v 1.1 2010/01/26 18:36:22 dertobi123 Exp $ + +EAPI="2" + +DESCRIPTION="A performance data analyzer for nagios" +HOMEPAGE="http://www.pnp4nagios.org" + +SRC_URI="mirror://sourceforge/${PN}/PNP-0.6/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" + +DEPEND=">=dev-lang/php-4.3[gd-external,pcre,filter,xml,zlib] + >=net-analyzer/rrdtool-1.2 + net-analyzer/nagios-core" +RDEPEND="${DEPEND} + virtual/perl-Getopt-Long + virtual/perl-Time-HiRes" + +src_configure() { + econf \ + --sysconfdir=/etc/pnp \ + --datarootdir=/usr/share/pnp \ + --with-perfdata-dir=/var/nagios/perfdata \ + --with-perfdata-spool-dir=/var/spool/pnp || die "econf failed" +} + +src_compile() { + emake all || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install install-config || die "emake install failed" + doinitd "${FILESDIR}/npcd" +} + +pkg_postinst() { + elog "To include the pnp webinterface into your Nagios setup you could use" + elog "an Alias in you Apache configuration as follows:" + + elog "\tAlias /nagios/pnp /usr/share/pnp/" + elog "\t<Directory "/usr/share/pnp">" + elog "\t\tAllowOverride AuthConfig" + elog "\t\tOrder allow,deny" + elog "\t\tAllow from all" + elog "\t</Directory>" +} |