blob: 6eabead00ad5fe2448c8023993e471fe3af57d32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios/nagios-2.0b_p1.ebuild,v 1.2 2005/02/24 09:51:20 dragonheart Exp $
DESCRIPTION="The Nagios"
HOMEPAGE="http://www.nagios.org"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~sparc ~ppc ~amd64"
IUSE=""
RDEPEND="~net-analyzer/nagios-core-${PV}
>=net-analyzer/nagios-plugins-1.4
>=net-analyzer/nagios-nrpe-1.8
>=net-analyzer/nagios-nsca-2.3
=net-analyzer/nagios-imagepack-1.0"
pkg_postrm() {
einfo "Note: this is a META ebuild for ${P}."
einfo "to remove it completely or before re-emerging"
einfo "either use 'depclean', or remove/re-emerge these packages:"
echo ""
for dep in ${RDEPEND}; do
einfo " ${dep}"
done
echo ""
}
|