summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEldad Zack <eldad@gentoo.org>2005-03-14 13:38:19 +0000
committerEldad Zack <eldad@gentoo.org>2005-03-14 13:38:19 +0000
commit6f217cefe17b5ec6c4a4eb6ee3aeef34f8a4e310 (patch)
tree929d8dbaec19665dfeb1870686dfab2d7ee54e69 /net-analyzer/nb
parentnew version (diff)
downloadhistorical-6f217cefe17b5ec6c4a4eb6ee3aeef34f8a4e310.tar.gz
historical-6f217cefe17b5ec6c4a4eb6ee3aeef34f8a4e310.tar.bz2
historical-6f217cefe17b5ec6c4a4eb6ee3aeef34f8a4e310.zip
initial ebuild
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'net-analyzer/nb')
-rw-r--r--net-analyzer/nb/ChangeLog10
-rw-r--r--net-analyzer/nb/Manifest14
-rw-r--r--net-analyzer/nb/files/digest-nb-0.6.11
-rw-r--r--net-analyzer/nb/metadata.xml6
-rw-r--r--net-analyzer/nb/nb-0.6.1.ebuild30
5 files changed, 61 insertions, 0 deletions
diff --git a/net-analyzer/nb/ChangeLog b/net-analyzer/nb/ChangeLog
new file mode 100644
index 000000000000..f31659a0d333
--- /dev/null
+++ b/net-analyzer/nb/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-analyzer/nb
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nb/ChangeLog,v 1.1 2005/03/14 13:38:19 eldad Exp $
+
+*nb-0.6.1 (14 Mar 2005)
+
+ 14 Mar 2005; Eldad Zack <eldad@gentoo.org> +metadata.xml, +nb-0.6.1.ebuild:
+ Initial ebuild. based on ebuild submitted by Luc Stepniewski
+ <lstep@adelux.fr>. Closes #83145.
+
diff --git a/net-analyzer/nb/Manifest b/net-analyzer/nb/Manifest
new file mode 100644
index 000000000000..c559bef93ad7
--- /dev/null
+++ b/net-analyzer/nb/Manifest
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+MD5 3282fe6d3c2aa0e9a41347f6673312c1 nb-0.6.1.ebuild 649
+MD5 ed435bfc4cd001cf559a45c28ec77588 ChangeLog 405
+MD5 090f3acbc5287dc8a7887b6a9398aa86 metadata.xml 251
+MD5 3169a9c3837808f0ccebe7e02fbb4584 files/digest-nb-0.6.1 67
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.2.6 (GNU/Linux)
+
+iD8DBQFCNZQsT+MN7JbqCpMRAtaTAJ9MKGkQKVivyKlP2R2dandMYVspPgCfbO1C
+xUH6cx8/8HHuykqrceAwQ68=
+=OsIo
+-----END PGP SIGNATURE-----
diff --git a/net-analyzer/nb/files/digest-nb-0.6.1 b/net-analyzer/nb/files/digest-nb-0.6.1
new file mode 100644
index 000000000000..6db7a415d907
--- /dev/null
+++ b/net-analyzer/nb/files/digest-nb-0.6.1
@@ -0,0 +1 @@
+MD5 ba875308b6dbaf4bcbf7fe85c21ec908 nb-0.6.1-source.tar.gz 459112
diff --git a/net-analyzer/nb/metadata.xml b/net-analyzer/nb/metadata.xml
new file mode 100644
index 000000000000..6b274444cb25
--- /dev/null
+++ b/net-analyzer/nb/metadata.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>netmon</herd>
+<longdescription>Nodebrain is a tool to monitor and do event correlation.</longdescription>
+</pkgmetadata>
diff --git a/net-analyzer/nb/nb-0.6.1.ebuild b/net-analyzer/nb/nb-0.6.1.ebuild
new file mode 100644
index 000000000000..e98a8d942440
--- /dev/null
+++ b/net-analyzer/nb/nb-0.6.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nb/nb-0.6.1.ebuild,v 1.1 2005/03/14 13:38:19 eldad Exp $
+
+DESCRIPTION="Nodebrain is a tool to monitor and do event correlation."
+HOMEPAGE="http://www.nodebrain.org/"
+SRC_URI="mirror://sourceforge/nodebrain/${P}-source.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND=">=dev-lang/perl-5.6.0"
+
+src_compile() {
+ ./build-nb || die
+}
+
+src_install() {
+ DIR=${D}/usr ./install-nb || die
+
+ exeinto /usr/bin
+ doexe bin/nb*
+
+ dodoc AUTHORS NEWS README THANKS sample/*
+ dohtml html/*
+}
+
+