You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/nb/nb-0.8.14.ebuild

58 lines
1.2 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nb/nb-0.8.14.ebuild,v 1.2 2013/03/09 18:23:17 jer Exp $
EAPI=5
inherit autotools eutils
DESCRIPTION="Nodebrain is a tool to monitor and do event correlation."
HOMEPAGE="http://nodebrain.sourceforge.net/"
SRC_URI="mirror://sourceforge/nodebrain/nodebrain-${PV}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="static-libs"
DEPEND="
dev-lang/perl
virtual/pkgconfig
sys-apps/texinfo
"
RDEPEND="
!sys-boot/netboot
!www-apps/nanoblogger
"
S="${WORKDIR}/nodebrain-${PV}"
src_prepare() {
# fdl.texi is not included in the sources
sed -i \
-e '/@include fdl.texi/d' \
doc/nbTutorial/nbTutorial.texi || die
epatch "${FILESDIR}"/${PN}-0.8.14-include.patch
epatch "${FILESDIR}"/${PN}-0.8.14-configure.patch
eautoreconf
}
src_configure() {
econf \
$(use_enable static-libs static) \
--include=/usr/include
}
src_compile() {
# Fails at parallel make
emake -j1
}
src_install() {
default
use static-libs || prune_libtool_files
dodoc AUTHORS NEWS README THANKS sample/*
dohtml html/*
}