diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-02-09 19:19:47 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-02-09 19:19:47 +0000 |
commit | fbcde38ef1d9a7e003bfabddd4cd7eb0c039712c (patch) | |
tree | ad9d878aad672e5a8d372665943188f928c9d91f | |
parent | 49a1e19fc0da17e36ee786eb530c585392c4351c (diff) |
Notes
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/netmap/Makefile | 25 | ||||
-rw-r--r-- | net/netmap/distinfo | 1 | ||||
-rw-r--r-- | net/netmap/files/patch-netmap::lookup.c | 11 | ||||
-rw-r--r-- | net/netmap/pkg-comment | 1 | ||||
-rw-r--r-- | net/netmap/pkg-descr | 5 | ||||
-rw-r--r-- | net/netmap/pkg-plist | 2 |
7 files changed, 46 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 8efd2d887ec7..04b8ad3d9ac9 100644 --- a/net/Makefile +++ b/net/Makefile @@ -251,6 +251,7 @@ SUBDIR += net-snmp SUBDIR += netatalk SUBDIR += netcat + SUBDIR += netmap SUBDIR += netmask SUBDIR += netpipes SUBDIR += netqc diff --git a/net/netmap/Makefile b/net/netmap/Makefile new file mode 100644 index 000000000000..423b1fce972d --- /dev/null +++ b/net/netmap/Makefile @@ -0,0 +1,25 @@ +# ex:ts=8 +# Ports collection makefile for: netmap +# Date created: Feb 10, 2002 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= netmap +PORTVERSION= 0.1.2b +CATEGORIES= net +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ports@FreeBSD.org + +RUN_DEPENDS= dotty:${PORTSDIR}/graphics/graphviz + +USE_GMAKE= yes + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/makelist/makelist ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/netmap/netmap ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/net/netmap/distinfo b/net/netmap/distinfo new file mode 100644 index 000000000000..39dc2a6e3e7d --- /dev/null +++ b/net/netmap/distinfo @@ -0,0 +1 @@ +MD5 (netmap-0.1.2b.tar.gz) = c033ad7751e9f62119e588e6bbe278fa diff --git a/net/netmap/files/patch-netmap::lookup.c b/net/netmap/files/patch-netmap::lookup.c new file mode 100644 index 000000000000..8b432ab3d9a4 --- /dev/null +++ b/net/netmap/files/patch-netmap::lookup.c @@ -0,0 +1,11 @@ +--- netmap/lookup.c.orig Sun Feb 10 02:57:26 2002 ++++ netmap/lookup.c Sun Feb 10 02:59:22 2002 +@@ -1,6 +1,8 @@ + #include <strstream> + #include <iostream> + ++#include <sys/types.h> ++#include <sys/socket.h> + #include <netdb.h> //hostent def + + //from belgolib diff --git a/net/netmap/pkg-comment b/net/netmap/pkg-comment new file mode 100644 index 000000000000..7553337f6c70 --- /dev/null +++ b/net/netmap/pkg-comment @@ -0,0 +1 @@ +Make a graphical representation of the surounding network diff --git a/net/netmap/pkg-descr b/net/netmap/pkg-descr new file mode 100644 index 000000000000..be64d0234d28 --- /dev/null +++ b/net/netmap/pkg-descr @@ -0,0 +1,5 @@ +Netmap can be used to make a graphical representation of the surounding +network. It first uses traceroute to make a list of all routers and their +interconnections, after which it generates a .dot file. + +WWW: http://netmap.sourceforge.net/ diff --git a/net/netmap/pkg-plist b/net/netmap/pkg-plist new file mode 100644 index 000000000000..ec1257e098c6 --- /dev/null +++ b/net/netmap/pkg-plist @@ -0,0 +1,2 @@ +bin/makelist +bin/netmap |