Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nodebrain/
Date: Mon, 17 Apr 2017 05:11:48
Message-Id: 1492405900.1b83413ccdfc7b363fb230d16a469eee4b65822c.jer@gentoo
1 commit: 1b83413ccdfc7b363fb230d16a469eee4b65822c
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 17 05:10:37 2017 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 17 05:11:40 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b83413c
7
8 net-analyzer/nodebrain: Add live ebuild.
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 net-analyzer/nodebrain/nodebrain-9999.ebuild | 52 ++++++++++++++++++++++++++++
13 1 file changed, 52 insertions(+)
14
15 diff --git a/net-analyzer/nodebrain/nodebrain-9999.ebuild b/net-analyzer/nodebrain/nodebrain-9999.ebuild
16 new file mode 100644
17 index 00000000000..c27ee0d59ed
18 --- /dev/null
19 +++ b/net-analyzer/nodebrain/nodebrain-9999.ebuild
20 @@ -0,0 +1,52 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +inherit autotools eutils git-r3
26 +
27 +DESCRIPTION="Monitor and do event correlation"
28 +HOMEPAGE="http://nodebrain.sourceforge.net/"
29 +EGIT_REPO_URI="https://github.com/trettevik/nodebrain-nb"
30 +
31 +LICENSE="MIT"
32 +SLOT="0"
33 +KEYWORDS=""
34 +IUSE="static-libs"
35 +
36 +CDEPEND="
37 + dev-libs/libedit
38 +"
39 +DEPEND="
40 + ${CDEPEND}
41 + dev-lang/perl
42 + virtual/pkgconfig
43 + sys-apps/texinfo
44 +"
45 +RDEPEND="
46 + ${CDEPEND}
47 + !sys-boot/netboot
48 + !www-apps/nanoblogger
49 +"
50 +PATCHES=(
51 + "${FILESDIR}"/${PN}-0.8.14-include.patch
52 +)
53 +
54 +src_prepare() {
55 + default
56 +
57 + eautoreconf
58 +}
59 +
60 +src_configure() {
61 + econf \
62 + $(use_enable static-libs static) \
63 + --include=/usr/include
64 +}
65 +
66 +src_install() {
67 + default
68 +
69 + dodoc -r AUTHORS ChangeLog NEWS README THANKS sample/ html/
70 +
71 + prune_libtool_files
72 +}