diff options
author | Dean Bailey <alron@gentoo.org> | 2003-01-30 19:34:38 +0000 |
---|---|---|
committer | Dean Bailey <alron@gentoo.org> | 2003-01-30 19:34:38 +0000 |
commit | ee754c0dd7d0b21ff3c629450f2766885ffc00d8 (patch) | |
tree | 4de3f60c24e4cf77cbc06f8c59b20aa9cddfd1e1 /net-analyzer/nagios-plugins | |
parent | add a kde_src_unpack(). it calls base_src_unpack (passing on all section para... (diff) | |
download | gentoo-2-ee754c0dd7d0b21ff3c629450f2766885ffc00d8.tar.gz gentoo-2-ee754c0dd7d0b21ff3c629450f2766885ffc00d8.tar.bz2 gentoo-2-ee754c0dd7d0b21ff3c629450f2766885ffc00d8.zip |
fixed some deps
Diffstat (limited to 'net-analyzer/nagios-plugins')
3 files changed, 61 insertions, 1 deletions
diff --git a/net-analyzer/nagios-plugins/ChangeLog b/net-analyzer/nagios-plugins/ChangeLog index 7bea178750d0..73cad17faf56 100644 --- a/net-analyzer/nagios-plugins/ChangeLog +++ b/net-analyzer/nagios-plugins/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-analyzer/nagios-plugins # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-plugins/ChangeLog,v 1.5 2003/01/15 20:01:19 alron Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-plugins/ChangeLog,v 1.6 2003/01/30 19:34:38 alron Exp $ + +*nagios-plugins-1.3.0_beta2-r1 + 30 Jan 2003; Dean Bailey <alron@gentoo.org> nagios-plugins-1.3.0_beta2-r1 : + Changed a few deps, this is still ~x86 untill it can be fully tested. + The dep changes were suggested via a bugs.gentoo.org submission by + someone who I cant remember at this point in time. He will be listed here + once I log on and dig again. 15 Jan 2003; Dean Bailey <alron@gentoo.org> nagios-plugins-1.3.0_beta2 : Changed ~x86 to x86 and added sparc and ppc keywords diff --git a/net-analyzer/nagios-plugins/files/digest-nagios-plugins-1.3.0_beta2-r1 b/net-analyzer/nagios-plugins/files/digest-nagios-plugins-1.3.0_beta2-r1 new file mode 100644 index 000000000000..8bc1c0eac314 --- /dev/null +++ b/net-analyzer/nagios-plugins/files/digest-nagios-plugins-1.3.0_beta2-r1 @@ -0,0 +1 @@ +MD5 7a6cce300f6a90c7587d4eced4271182 nagios-plugins-1.3.0-beta2.tar.gz 438141 diff --git a/net-analyzer/nagios-plugins/nagios-plugins-1.3.0_beta2-r1.ebuild b/net-analyzer/nagios-plugins/nagios-plugins-1.3.0_beta2-r1.ebuild new file mode 100644 index 000000000000..4eb959ec7082 --- /dev/null +++ b/net-analyzer/nagios-plugins/nagios-plugins-1.3.0_beta2-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-plugins/nagios-plugins-1.3.0_beta2-r1.ebuild,v 1.1 2003/01/30 19:34:38 alron Exp $ +DESCRIPTION="Nagios $PV plugins - Pack of plugins to make Nagios work properly" +HOMEPAGE="http://www.nagios.org/" +SRC_URI="mirror://sourceforge/nagiosplug/nagios-plugins-1.3.0-beta2.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~sparc ~ppc" +IUSE="" +DEPEND=">=bind-tools-9.2.2_rc1 + >=openssl-0.9.6g + >=perl-5.6.1-r7 + >=fping-2.4_beta2-r1 + >=ntp-4.1.1a + >=Net-SNMP-4.0.1-r1 + >=net-snmp-5.0.6 + samba? ( >=samba-2.2.5-r1 ) + >=openssh-3.5_p1 + mysql? ( >=mysql-3.23.52-r1 ) + >=autoconf-2.53a + >=qstat-25 + postgre? ( >=postgresql-7.2 )" + +S="${WORKDIR}/nagios-plugins-1.3.0-beta2" +src_compile() { + patch -p1 < ${FILESDIR}/install-opts-fix.diff + autoconf + ./configure \ + --host=${CHOST} \ + --prefix=/usr/nagios \ + --with-nagios-user=nagios \ + --sysconfdir=/etc/nagios \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + make || die +} + +src_install() { + dodoc AUTHORS CODING COPYING ChangeLog FAQ INSTALL LEGALNEWS README REQUIREMENTS ROADMAP Requirements + make DESTDIR=${D} install || die +} +pkg_preinst() { + userdel nagios 2> /dev/null + if ! groupmod nagios; then + groupadd -g 75 nagios 2> /dev/null || \ + die "Failed to create nagios group" + fi + useradd -u 75 -g nagios -s /dev/null -d /var/empty -c "nagios" nagios || \ + die "Failed to create nagios user" + chown -R nagios:nagios ${D}/usr/nagios/libexec || die "Failed Chown of ${D}/usr/nagios/libexec" +} |