summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Reffett <creffett@gentoo.org>2014-01-26 03:42:40 +0000
committerChris Reffett <creffett@gentoo.org>2014-01-26 03:42:40 +0000
commitaa92bea7d91af656cb2c329d140b68054358fd82 (patch)
tree10a5d09a01bf11b5ee2691bee6fdb4626f9a0a2a /net-analyzer/nagios-plugins-snmp
parentUpdate maintainers (add ahamilto as maintainer, me as proxy, proxy-maint herd... (diff)
downloadgentoo-2-aa92bea7d91af656cb2c329d140b68054358fd82.tar.gz
gentoo-2-aa92bea7d91af656cb2c329d140b68054358fd82.tar.bz2
gentoo-2-aa92bea7d91af656cb2c329d140b68054358fd82.zip
Update maintainers (add ahamilto as maintainer, me as proxy, proxy-maint herd too)
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 42618354)
Diffstat (limited to 'net-analyzer/nagios-plugins-snmp')
-rw-r--r--net-analyzer/nagios-plugins-snmp/ChangeLog9
-rw-r--r--net-analyzer/nagios-plugins-snmp/metadata.xml11
-rw-r--r--net-analyzer/nagios-plugins-snmp/nagios-plugins-snmp-0.6.0-r1.ebuild55
3 files changed, 18 insertions, 57 deletions
diff --git a/net-analyzer/nagios-plugins-snmp/ChangeLog b/net-analyzer/nagios-plugins-snmp/ChangeLog
index 1cade72685fa..9619a70225c5 100644
--- a/net-analyzer/nagios-plugins-snmp/ChangeLog
+++ b/net-analyzer/nagios-plugins-snmp/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-analyzer/nagios-plugins-snmp
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-plugins-snmp/ChangeLog,v 1.20 2012/11/20 20:10:32 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-plugins-snmp/ChangeLog,v 1.21 2014/01/26 03:42:40 creffett Exp $
+
+ 26 Jan 2014; Chris Reffett <creffett@gentoo.org>
+ -nagios-plugins-snmp-0.6.0-r1.ebuild, metadata.xml:
+ Update maintainers (add ahamilto as maintainer, me as proxy, proxy-maint herd
+ too)
20 Nov 2012; Agostino Sarubbo <ago@gentoo.org>
nagios-plugins-snmp-0.6.0-r2.ebuild:
diff --git a/net-analyzer/nagios-plugins-snmp/metadata.xml b/net-analyzer/nagios-plugins-snmp/metadata.xml
index ab2e9579522e..fad986e477b0 100644
--- a/net-analyzer/nagios-plugins-snmp/metadata.xml
+++ b/net-analyzer/nagios-plugins-snmp/metadata.xml
@@ -1,6 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
+ <maintainer>
+ <email>andrew@ahamilto.net</email>
+ <name>Andrew Hamilton</name>
+ <description>Maintainer. Assign bugs to him.</description>
+ </maintainer>
+ <maintainer>
+ <email>creffett@gentoo.org</email>
+ <name>Chris Reffett</name>
+ <description>Proxy maintainer. CC him on bugs.</description>
+ </maintainer>
+ <herd>proxy-maintainers</herd>
<herd>sysadmin</herd>
</pkgmetadata>
diff --git a/net-analyzer/nagios-plugins-snmp/nagios-plugins-snmp-0.6.0-r1.ebuild b/net-analyzer/nagios-plugins-snmp/nagios-plugins-snmp-0.6.0-r1.ebuild
deleted file mode 100644
index 54a03f968fde..000000000000
--- a/net-analyzer/nagios-plugins-snmp/nagios-plugins-snmp-0.6.0-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-plugins-snmp/nagios-plugins-snmp-0.6.0-r1.ebuild,v 1.6 2012/06/12 02:41:55 zmedico Exp $
-
-inherit autotools user
-
-DESCRIPTION="Additional Nagios plugins for monitoring SNMP capable devices"
-HOMEPAGE="http://nagios.manubulon.com"
-SRC_URI="http://nagios.manubulon.com/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 ~sparc x86"
-IUSE=""
-
-DEPEND="net-analyzer/net-snmp"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/nagios-plugins-snmp
-
-pkg_setup() {
- enewgroup nagios
- enewuser nagios -1 /bin/bash /var/nagios/home nagios
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- eautoreconf
-}
-
-src_compile() {
- econf \
- --prefix=/usr/nagios \
- --sysconfdir=/etc/nagios || die "econf failed"
-
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "make install failed"
-
- chown -R root:nagios "${D}"/usr/nagios/libexec || die "Failed Chown of ${D}usr/nagios/libexec"
- chmod -R o-rwx "${D}"/usr/nagios/libexec || die "Failed Chmod of ${D}usr/nagios/libexec"
-
- dodoc README NEWS AUTHORS
-
- cat <<- EOF > "${T}"/55-nagios-plugins-snmp-revdep
- SEARCH_DIRS="/usr/nagios/libexec"
- EOF
-
- insinto /etc/revdep-rebuild
- doins "${T}"/55-nagios-plugins-snmp-revdep
-}