From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 03089139694 for ; Mon, 17 Apr 2017 05:11:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2801CE0CE1; Mon, 17 Apr 2017 05:11:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 03ABDE0CE1 for ; Mon, 17 Apr 2017 05:11:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D453E3415B7 for ; Mon, 17 Apr 2017 05:11:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BAFC7434 for ; Mon, 17 Apr 2017 05:11:42 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1492405900.1b83413ccdfc7b363fb230d16a469eee4b65822c.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nodebrain/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/nodebrain/nodebrain-9999.ebuild X-VCS-Directories: net-analyzer/nodebrain/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 1b83413ccdfc7b363fb230d16a469eee4b65822c X-VCS-Branch: master Date: Mon, 17 Apr 2017 05:11:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8e773523-f859-4ef5-b79f-45870308fa0b X-Archives-Hash: 71e1a872f23a5909cec308a040d26b1e commit: 1b83413ccdfc7b363fb230d16a469eee4b65822c Author: Jeroen Roovers gentoo org> AuthorDate: Mon Apr 17 05:10:37 2017 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Mon Apr 17 05:11:40 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b83413c net-analyzer/nodebrain: Add live ebuild. Package-Manager: Portage-2.3.5, Repoman-2.3.2 net-analyzer/nodebrain/nodebrain-9999.ebuild | 52 ++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/net-analyzer/nodebrain/nodebrain-9999.ebuild b/net-analyzer/nodebrain/nodebrain-9999.ebuild new file mode 100644 index 00000000000..c27ee0d59ed --- /dev/null +++ b/net-analyzer/nodebrain/nodebrain-9999.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools eutils git-r3 + +DESCRIPTION="Monitor and do event correlation" +HOMEPAGE="http://nodebrain.sourceforge.net/" +EGIT_REPO_URI="https://github.com/trettevik/nodebrain-nb" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="" +IUSE="static-libs" + +CDEPEND=" + dev-libs/libedit +" +DEPEND=" + ${CDEPEND} + dev-lang/perl + virtual/pkgconfig + sys-apps/texinfo +" +RDEPEND=" + ${CDEPEND} + !sys-boot/netboot + !www-apps/nanoblogger +" +PATCHES=( + "${FILESDIR}"/${PN}-0.8.14-include.patch +) + +src_prepare() { + default + + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + --include=/usr/include +} + +src_install() { + default + + dodoc -r AUTHORS ChangeLog NEWS README THANKS sample/ html/ + + prune_libtool_files +}