blob: ca800134873c9dde12ac6548490c596aeeb3b3bd (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-check_fail2ban/nagios-check_fail2ban-2.ebuild,v 1.1 2010/05/12 08:47:16 hollow Exp $
EAPI="2"
inherit autotools
DESCRIPTION="A nagios plugin for checking the fail2ban daemon"
HOMEPAGE="http://bb.xnull.de/projects/check_fail2ban/"
SRC_URI="http://bb.xnull.de/projects/check_fail2ban/dist/check_fail2ban-${PV}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=net-analyzer/nagios-plugins-1.4.13-r1"
RDEPEND="${DEPEND}"
S="${WORKDIR}"/check_fail2ban-${PV}
src_prepare() {
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
|