diff options
author | 2014-07-14 12:15:28 +0000 | |
---|---|---|
committer | 2014-07-14 12:15:28 +0000 | |
commit | e091f19cd2e0902fe1aee5e7e8d1db40f90d90b8 (patch) | |
tree | 994b33db34ba4014ce84bc450c055762d27838bf /net-analyzer/nb | |
parent | Version bump, drop old (diff) | |
download | gentoo-2-e091f19cd2e0902fe1aee5e7e8d1db40f90d90b8.tar.gz gentoo-2-e091f19cd2e0902fe1aee5e7e8d1db40f90d90b8.tar.bz2 gentoo-2-e091f19cd2e0902fe1aee5e7e8d1db40f90d90b8.zip |
Old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer/nb')
-rw-r--r-- | net-analyzer/nb/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/nb/files/nb-0.8.14-configure.patch | 15 | ||||
-rw-r--r-- | net-analyzer/nb/nb-0.8.14.ebuild | 57 |
3 files changed, 5 insertions, 73 deletions
diff --git a/net-analyzer/nb/ChangeLog b/net-analyzer/nb/ChangeLog index dd8c2d2f6c7b..66217b1c7bbf 100644 --- a/net-analyzer/nb/ChangeLog +++ b/net-analyzer/nb/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/nb # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nb/ChangeLog,v 1.19 2014/05/03 21:30:16 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nb/ChangeLog,v 1.20 2014/07/14 12:15:28 jer Exp $ + + 14 Jul 2014; Jeroen Roovers <jer@gentoo.org> -nb-0.8.14.ebuild, + -files/nb-0.8.14-configure.patch: + Old. *nb-0.8.16 (03 May 2014) diff --git a/net-analyzer/nb/files/nb-0.8.14-configure.patch b/net-analyzer/nb/files/nb-0.8.14-configure.patch deleted file mode 100644 index 3b0793a90190..000000000000 --- a/net-analyzer/nb/files/nb-0.8.14-configure.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- a/lib/configure.ac -+++ b/lib/configure.ac -@@ -130,10 +130,10 @@ - AC_CHECK_LIB(readline,readline,,[AC_MSG_ERROR(Required library -lreadline not found. Specify path in LDFLAGS.)]) - AC_CHECK_LIB(history,add_history,,[AC_MSG_ERROR(Required library -lhistory not found. Specify path in LDFLAGS.)]) - #AC_CHECK_LIB(ssl,SSL_library_init,,[AC_MSG_ERROR(Required library -lssl not found. Specify path in LDFLAGS.)]) --AC_SEARCH_LIBS(SSL_library_init,ssl) -+#AC_SEARCH_LIBS(SSL_library_init,ssl) - AC_SEARCH_LIBS(X509_get_subject_name,crypto) - #PKG_CHECK_MODULES(libssl,openssl) --#PKG_CHECK_MODULES([libssl],[openssl],[LIBS="$LIBS `$PKG_CONFIG --cflags --libs openssl`"],[AC_MSG_ERROR(Required library -lssl not found. You may want to download it from http://www.openssl.org/ or locate it and include in LDFLAGS or LD_LIBRARY_PATH to support this build.)]) -+PKG_CHECK_MODULES(libssl,openssl,[LIBS="$LIBS $libssl_LIBS"],[AC_MSG_ERROR(Required library -lssl not found. You may want to download it from http://www.openssl.org/ or locate it and include in LDFLAGS or LD_LIBRARY_PATH to support this build.)]) - - AC_SEARCH_LIBS(socket,socket) - AC_SEARCH_LIBS(inet_ntoa,nsl) diff --git a/net-analyzer/nb/nb-0.8.14.ebuild b/net-analyzer/nb/nb-0.8.14.ebuild deleted file mode 100644 index e2e438e532d3..000000000000 --- a/net-analyzer/nb/nb-0.8.14.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2014 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.3 2014/05/03 21:30:16 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/* -} |