Gentoo Archives: gentoo-commits

From: Ian Delaney <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_logfiles/
Date: Thu, 31 Dec 2015 05:53:17
Message-Id: 1451541107.c2f6f6bf6db398a747dc90ee652a0509d5b9adf2.idella4@gentoo
1 commit: c2f6f6bf6db398a747dc90ee652a0509d5b9adf2
2 Author: Nicholas Vinson <nvinson234 <AT> gmail <DOT> com>
3 AuthorDate: Sun Nov 22 13:02:36 2015 +0000
4 Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 31 05:51:47 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2f6f6bf
7
8 net-analyzer/nagios-check_logfiles: Switching to EAPI 6
9
10 Package-Manager: portage-2.2.25
11
12 .../nagios-check_logfiles-3.7.3.1-r1.ebuild | 27 ++++++++++++++++++++++
13 1 file changed, 27 insertions(+)
14
15 diff --git a/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-3.7.3.1-r1.ebuild b/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-3.7.3.1-r1.ebuild
16 new file mode 100644
17 index 0000000..567f02d
18 --- /dev/null
19 +++ b/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-3.7.3.1-r1.ebuild
20 @@ -0,0 +1,27 @@
21 +# Copyright 1999-2015 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +DESCRIPTION="A nagios plugin for checking logfiles"
28 +HOMEPAGE="https://labs.consol.de/nagios/check_logfiles/index.html"
29 +
30 +MY_P=${P/nagios-/}
31 +
32 +SRC_URI="https://labs.consol.de/assets/downloads/nagios/${MY_P}.tar.gz"
33 +LICENSE="GPL-3"
34 +SLOT="0"
35 +
36 +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
37 +
38 +RDEPEND=">=net-analyzer/nagios-plugins-1.4.13-r1"
39 +
40 +S="${WORKDIR}/${MY_P}"
41 +
42 +src_configure() {
43 + econf \
44 + --libexecdir=/usr/$(get_libdir)/nagios/plugins \
45 + --prefix=/usr \
46 + --sysconfdir=/etc/nagios
47 +}