diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2011-04-07 15:11:17 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2011-04-07 15:11:17 +0000 |
commit | 1c8ede51d613f3181df175f3e440aa874c411911 (patch) | |
tree | 3b3ec98f0d85dcd7a06ca5f6c508d68eb9ef4122 /net-analyzer | |
parent | remove old version (diff) | |
download | gentoo-2-1c8ede51d613f3181df175f3e440aa874c411911.tar.gz gentoo-2-1c8ede51d613f3181df175f3e440aa874c411911.tar.bz2 gentoo-2-1c8ede51d613f3181df175f3e440aa874c411911.zip |
version bump wrt #362421
(Portage version: 2.2.0_alpha23/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/nagios-check_mysql_health/ChangeLog | 10 | ||||
-rw-r--r-- | net-analyzer/nagios-check_mysql_health/nagios-check_mysql_health-2.1.5.ebuild | 31 |
2 files changed, 39 insertions, 2 deletions
diff --git a/net-analyzer/nagios-check_mysql_health/ChangeLog b/net-analyzer/nagios-check_mysql_health/ChangeLog index 177a4df92f93..e5bbb79501ba 100644 --- a/net-analyzer/nagios-check_mysql_health/ChangeLog +++ b/net-analyzer/nagios-check_mysql_health/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/nagios-check_mysql_health -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-check_mysql_health/ChangeLog,v 1.2 2010/05/20 17:24:27 robbat2 Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-check_mysql_health/ChangeLog,v 1.3 2011/04/07 15:11:17 hollow Exp $ + +*nagios-check_mysql_health-2.1.5 (07 Apr 2011) + + 07 Apr 2011; Benedikt Böhm <hollow@gentoo.org> + +nagios-check_mysql_health-2.1.5.ebuild: + version bump wrt #362421 20 May 2010; Robin H. Johnson <robbat2@gentoo.org> nagios-check_mysql_health-2.1.1.ebuild: diff --git a/net-analyzer/nagios-check_mysql_health/nagios-check_mysql_health-2.1.5.ebuild b/net-analyzer/nagios-check_mysql_health/nagios-check_mysql_health-2.1.5.ebuild new file mode 100644 index 000000000000..a32b2b6dba02 --- /dev/null +++ b/net-analyzer/nagios-check_mysql_health/nagios-check_mysql_health-2.1.5.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-check_mysql_health/nagios-check_mysql_health-2.1.5.ebuild,v 1.1 2011/04/07 15:11:17 hollow Exp $ + +EAPI="2" + +inherit multilib autotools + +DESCRIPTION="A nagios plugin for checking MySQL server health" +HOMEPAGE="http://labs.consol.de/lang/de/nagios/check_mysql_health/" +SRC_URI="http://labs.consol.de/wp-content/uploads/2010/12/check_mysql_health-${PV}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=net-analyzer/nagios-plugins-1.4.13-r1" +RDEPEND="${DEPEND} + virtual/mysql" + +S="${WORKDIR}"/check_mysql_health-${PV} + +src_prepare() { + eautoreconf +} + +src_install() { + exeinto /usr/$(get_libdir)/nagios/plugins + doexe plugins-scripts/check_mysql_health +} |