net-analyzer/nodebrain: Add missing include (bug #637486).

Package-Manager: Portage-2.3.14, Repoman-2.3.6
This commit is contained in:
Jeroen Roovers
2017-11-20 10:04:16 +01:00
parent 6aebe3ed8d
commit cd4fe5605f
3 changed files with 60 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
--- a/lib/nbhash.c
+++ b/lib/nbhash.c
@@ -81,6 +81,7 @@
*/
#include <nb/nbi.h>
#include <stddef.h>
+#include <stdint.h>
struct TYPE *typeHash;

View File

@@ -0,0 +1,47 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils
DESCRIPTION="Monitor and do event correlation"
HOMEPAGE="http://nodebrain.sourceforge.net/"
SRC_URI="mirror://sourceforge/nodebrain/nodebrain-${PV}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
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
"${FILESDIR}"/${PN}-0.9.04-include.patch
)
src_configure() {
econf \
$(use_enable static-libs static) \
--include=/usr/include
}
src_install() {
default
prune_libtool_files
dodoc -r AUTHORS ChangeLog NEWS README THANKS sample/ html/
}

View File

@@ -29,6 +29,7 @@ RDEPEND="
"
PATCHES=(
"${FILESDIR}"/${PN}-0.8.14-include.patch
"${FILESDIR}"/${PN}-0.9.04-include.patch
)
src_prepare() {
@@ -46,7 +47,7 @@ src_configure() {
src_install() {
default
dodoc -r AUTHORS ChangeLog NEWS README THANKS sample/ html/
prune_libtool_files
dodoc -r AUTHORS ChangeLog NEWS README THANKS sample/ html/
}