summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOtavio Rodolfo Piske <angusyoung@gentoo.org>2005-03-11 17:04:02 +0000
committerOtavio Rodolfo Piske <angusyoung@gentoo.org>2005-03-11 17:04:02 +0000
commit06df324d7ac3ed71cd3315ec016ed371004158a7 (patch)
tree99dc251d235185baa76b131decd82262f4d53524 /net-analyzer/nomad
parentAdd comment. (diff)
downloadgentoo-2-06df324d7ac3ed71cd3315ec016ed371004158a7.tar.gz
gentoo-2-06df324d7ac3ed71cd3315ec016ed371004158a7.tar.bz2
gentoo-2-06df324d7ac3ed71cd3315ec016ed371004158a7.zip
Initial release, thus closing bug #80735
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-analyzer/nomad')
-rw-r--r--net-analyzer/nomad/ChangeLog10
-rw-r--r--net-analyzer/nomad/Manifest3
-rw-r--r--net-analyzer/nomad/files/digest-nomad-0.3.21
-rw-r--r--net-analyzer/nomad/metadata.xml9
-rw-r--r--net-analyzer/nomad/nomad-0.3.2.ebuild41
5 files changed, 64 insertions, 0 deletions
diff --git a/net-analyzer/nomad/ChangeLog b/net-analyzer/nomad/ChangeLog
new file mode 100644
index 000000000000..3661f6e5d924
--- /dev/null
+++ b/net-analyzer/nomad/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-analyzer/nomad
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nomad/ChangeLog,v 1.1 2005/03/11 17:04:02 angusyoung Exp $
+
+*nomad-0.3.2 (11 Mar 2005)
+
+ 11 Mar 2005; Otavio Piske <angusyoung@gentoo.org> +nomad-0.3.2.ebuild:
+ Initial release of nomad. Thanks to Brendan Shanks <pip@opus.homelinux.com>
+ for submitting the ebuild
+
diff --git a/net-analyzer/nomad/Manifest b/net-analyzer/nomad/Manifest
new file mode 100644
index 000000000000..2bc6f56d19e0
--- /dev/null
+++ b/net-analyzer/nomad/Manifest
@@ -0,0 +1,3 @@
+MD5 a78f1d871de7c87038e7f1bca90e3cfd nomad-0.3.2.ebuild 1092
+MD5 5c7e0f0df43a2f4f87c56e270fccc351 ChangeLog 327
+MD5 6cf900aa2cd63d74d519415bf71561a3 files/digest-nomad-0.3.2 63
diff --git a/net-analyzer/nomad/files/digest-nomad-0.3.2 b/net-analyzer/nomad/files/digest-nomad-0.3.2
new file mode 100644
index 000000000000..ef05b05a523e
--- /dev/null
+++ b/net-analyzer/nomad/files/digest-nomad-0.3.2
@@ -0,0 +1 @@
+MD5 905c638d103a9c00ba5b0401e97d3772 nomad-0.3.2.tar.gz 657644
diff --git a/net-analyzer/nomad/metadata.xml b/net-analyzer/nomad/metadata.xml
new file mode 100644
index 000000000000..e788d53e1163
--- /dev/null
+++ b/net-analyzer/nomad/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>netmon</herd>
+<maintainer>
+ <email>angusyoung@gentoo.org</email>
+ <name>Otavio R. Piske</name>
+</maintainer>
+</pkgmetadata>
diff --git a/net-analyzer/nomad/nomad-0.3.2.ebuild b/net-analyzer/nomad/nomad-0.3.2.ebuild
new file mode 100644
index 000000000000..c83c12193312
--- /dev/null
+++ b/net-analyzer/nomad/nomad-0.3.2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nomad/nomad-0.3.2.ebuild,v 1.1 2005/03/11 17:04:02 angusyoung Exp $
+
+DESCRIPTION="Nomad is a network mapping program that uses SNMP to automatically discover a local network"
+HOMEPAGE="http://netmon.ncl.ac.uk/"
+SRC_URI="ftp://ftp.ncl.ac.uk/pub/local/npac/nomad-${PV}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND="=gnome-base/gconf-1*
+ >=media-libs/gdk-pixbuf-0.10.1
+ =x11-libs/gtk+-1.2*
+ >=dev-libs/libxml-1.8.14
+ =gnome-base/libglade-0*
+ >=gnome-base/gnome-libs-1*
+ >=net-analyzer/net-snmp-5*
+ net-analyzer/fping"
+
+src_compile() {
+ econf || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR=${D} install || die
+ dodoc AUTHORS COPYING ChangeLog NEWS README
+}
+
+pkg_postinst() {
+ einfo "Running nomad configuration tool"
+ nomad-config-tool > /dev/null
+ einfo "In order to run this software as a non-root user you'll"
+ einfo "have to:"
+ einfo "1) have fping in your $PATH"
+ einfo "2) configure fping as a suid executable by doing the"
+ einfo "following command: chmod +x /usr/sbin/fping"
+}