aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2014-09-07 17:48:35 +0000
committerJohn Marino <marino@FreeBSD.org>2014-09-07 17:48:35 +0000
commit82eea73608e25dd8f07260703ed9a3f371c76210 (patch)
tree5e7f76dc10a42a13f243ec49083943ef9a0887ae
parent776eb781c9f1c8d3388e7ca004ee9d986c56df2a (diff)
downloadports-82eea73608e25dd8f07260703ed9a3f371c76210.tar.gz
ports-82eea73608e25dd8f07260703ed9a3f371c76210.zip
Notes
-rw-r--r--MOVED4
-rw-r--r--devel/Makefile1
-rw-r--r--devel/tclcl/Makefile61
-rw-r--r--devel/tclcl/distinfo2
-rw-r--r--devel/tclcl/files/patch-Tcl.cc20
-rw-r--r--devel/tclcl/files/patch-Tcl2.cc11
-rw-r--r--devel/tclcl/files/patch-rate-variable.cc20
-rw-r--r--devel/tclcl/files/patch-rate-variable.h11
-rw-r--r--devel/tclcl/files/patch-tclcl.h11
-rw-r--r--devel/tclcl/pkg-descr1
-rw-r--r--devel/tclcl/pkg-plist15
-rw-r--r--lang/Makefile1
-rw-r--r--lang/otcl/Makefile68
-rw-r--r--lang/otcl/distinfo2
-rw-r--r--lang/otcl/pkg-descr24
-rw-r--r--lang/otcl/pkg-plist6
-rw-r--r--net/Makefile2
-rw-r--r--net/nam/Makefile40
-rw-r--r--net/nam/distinfo2
-rw-r--r--net/nam/files/patch-configure48
-rw-r--r--net/nam/files/patch-main.cc38
-rw-r--r--net/nam/pkg-descr10
-rw-r--r--net/nam/pkg-plist40
-rw-r--r--net/ns/Makefile48
-rw-r--r--net/ns/distinfo2
-rw-r--r--net/ns/files/patch-aomdv.cc10
-rw-r--r--net/ns/files/patch-common_tclAppInit.cc10
-rw-r--r--net/ns/files/patch-common_tkAppInit.c10
-rw-r--r--net/ns/files/patch-configure33
-rw-r--r--net/ns/files/patch-ls.h11
-rw-r--r--net/ns/files/patch-mdart_mdart_adp.cc20
-rw-r--r--net/ns/files/patch-nix_nixnode.cc11
-rw-r--r--net/ns/pkg-descr5
-rw-r--r--net/ns/pkg-plist126
34 files changed, 4 insertions, 720 deletions
diff --git a/MOVED b/MOVED
index eecb62ca8496..8e9fa3d9b63a 100644
--- a/MOVED
+++ b/MOVED
@@ -7033,3 +7033,7 @@ devel/baz||2014-09-07|Unstaged, obsolete, distfiles don't exist. Use devel/bzr i
security/prelude-lml||2014-09-07|Not staged
security/prelude-manager||2014-09-07|Not staged
security/prelude-pflogger||2014-09-07|Not staged
+lang/otcl||2014-09-07|Not staged
+devel/tclcl||2014-09-07|Cascade removal (lang/otcl)
+net/nam||2014-09-07|Cascade removal (lang/otcl)
+net/ns||2014-09-07|Cascade removal (lang/otcl)
diff --git a/devel/Makefile b/devel/Makefile
index fb7b2218f817..adfb78bb13b5 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4652,7 +4652,6 @@
SUBDIR += tcl-trf
SUBDIR += tclap
SUBDIR += tclcheck
- SUBDIR += tclcl
SUBDIR += tclgetopts
SUBDIR += tcllib
SUBDIR += tclmore
diff --git a/devel/tclcl/Makefile b/devel/tclcl/Makefile
deleted file mode 100644
index 07e2df958e64..000000000000
--- a/devel/tclcl/Makefile
+++ /dev/null
@@ -1,61 +0,0 @@
-# Created by: obonilla@fisicc-ufm.edu
-# $FreeBSD$
-
-PORTNAME= tclcl
-PORTVERSION= 1.20
-DISTVERSIONPREFIX= src-
-CATEGORIES= devel tcl tk
-MASTER_SITES= SF/otcl-${PORTNAME}/TclCL/${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Tcl/C++ interface used by ns and nam
-
-LICENSE= BSD
-
-LIB_DEPENDS= libotcl.so:${PORTSDIR}/lang/otcl
-
-WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
-
-USE_XORG= x11
-USE_AUTOTOOLS= autoconf
-GNU_CONFIGURE= yes
-PORTDOCS= CHANGES.html TODO.html
-
-OPTIONS_DEFINE= DOCS
-
-.include <bsd.port.options.mk>
-
-# We have to link against the same Tcl/Tk version as OTcl does
-.if exists(${LOCALBASE}/bin/otclsh)
-OTCL_TCLVER!= ${ECHO_CMD} puts \$$tcl_version | ${LOCALBASE}/bin/otclsh
-USES+= tk:${OTCL_TCLVER:S/.//}
-.else
-USES+= tk
-.endif
-
-CONFIGURE_ARGS= --with-tcl-ver=${TCL_VER} --with-tk-ver=${TK_VER}
-
-post-patch:
- @${REINPLACE_CMD} -e 's|exec tclsh|exec ${TCLSH}|g' ${WRKSRC}/otcldoc
- @${REINPLACE_CMD} -e 's|../lib/tcl$$TCL_HI_VERS|${TCL_LIBDIR}|g' \
- -e 's|../include|${TCL_INCLUDEDIR}/generic|g' ${WRKSRC}/conf/configure.in.tcl
- @${REINPLACE_CMD} -e 's|../lib/tk$$TK_HI_VERS|${TK_LIBDIR}|g' \
- -e 's|../include|${TK_INCLUDEDIR}/generic|g' ${WRKSRC}/conf/configure.in.tk
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/tcl2c++ ${STAGEDIR}${PREFIX}/bin
- ${INSTALL_SCRIPT} ${WRKSRC}/otcldoc ${STAGEDIR}${PREFIX}/bin
- ${MKDIR} ${STAGEDIR}${PREFIX}/include/tclcl
- ${INSTALL_DATA} ${WRKSRC}/*.h ${STAGEDIR}${PREFIX}/include/tclcl
- ${INSTALL_DATA} ${WRKSRC}/libtclcl.a ${STAGEDIR}${PREFIX}/lib
- @${LN} -sf ${PREFIX}/lib/libtclcl.a ${STAGEDIR}${PREFIX}/lib/libTcl.a
-
-post-install:
-.if ${PORT_OPTIONS:MDOCS}
- @${MKDIR} ${STAGEDIR}${DOCSDIR}
-.for FILE in ${PORTDOCS}
- @${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR}
-.endfor
-.endif
-
-.include <bsd.port.mk>
diff --git a/devel/tclcl/distinfo b/devel/tclcl/distinfo
deleted file mode 100644
index 4ed380bc5433..000000000000
--- a/devel/tclcl/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (tclcl-src-1.20.tar.gz) = 64fd1ec4b1d1c13229e58a7e10bf8422d804c5d3f00221117eafc2aff306dc78
-SIZE (tclcl-src-1.20.tar.gz) = 171728
diff --git a/devel/tclcl/files/patch-Tcl.cc b/devel/tclcl/files/patch-Tcl.cc
deleted file mode 100644
index 146515dbdf3f..000000000000
--- a/devel/tclcl/files/patch-Tcl.cc
+++ /dev/null
@@ -1,20 +0,0 @@
---- Tcl.cc.orig 2007-02-04 02:46:43.000000000 +0100
-+++ Tcl.cc 2013-05-13 09:19:37.000000000 +0200
-@@ -213,7 +213,7 @@
- if (strlen(s) > MAX_CODE_TO_DUMP) {
- s = "\n[code omitted because of length]\n";
- };
-- fprintf(stderr, "%s: \"%s\": %s\n", application_, s, tcl_->result);
-+ fprintf(stderr, "%s: \"%s\": %s\n", application_, s, Tcl_GetStringResult(tcl_));
- exit(1);
- }
-
-@@ -546,7 +546,7 @@
- need_parse = 1;
- continue;
- };
-- result = Tcl_SplitList(in, argv[i], &ac, (const char ***) &av);
-+ result = Tcl_SplitList(in, argv[i], &ac, (CONST84 char ***) &av);
- if (result != TCL_OK) break;
- if (ac == 1) {
- varName = localName = av[0];
diff --git a/devel/tclcl/files/patch-Tcl2.cc b/devel/tclcl/files/patch-Tcl2.cc
deleted file mode 100644
index 5b463dd70f58..000000000000
--- a/devel/tclcl/files/patch-Tcl2.cc
+++ /dev/null
@@ -1,11 +0,0 @@
---- Tcl2.cc.orig 2013-05-13 09:23:36.000000000 +0200
-+++ Tcl2.cc 2013-05-13 09:25:20.000000000 +0200
-@@ -88,7 +88,7 @@
- va_list ap;
- va_start(ap, fmt);
- vsprintf(bp_, fmt, ap);
-- tcl_->result = bp_;
-+ Tcl_SetResult(tcl_, (char *)bp_, NULL);
- }
-
- void Tcl::add_errorf(const char* fmt, ...)
diff --git a/devel/tclcl/files/patch-rate-variable.cc b/devel/tclcl/files/patch-rate-variable.cc
deleted file mode 100644
index 8bb6f5d31321..000000000000
--- a/devel/tclcl/files/patch-rate-variable.cc
+++ /dev/null
@@ -1,20 +0,0 @@
---- rate-variable.cc.orig 2013-05-13 09:26:02.000000000 +0200
-+++ rate-variable.cc 2013-05-13 09:26:47.000000000 +0200
-@@ -65,7 +65,7 @@
- (void)new RateVariable;
- }
-
--char* RateVariable::update_rate_var(ClientData clientData, Tcl_Interp* tcl,
-+const char* RateVariable::update_rate_var(ClientData clientData, Tcl_Interp* tcl,
- CONST84 char* name1,
- CONST84 char* name2, int flags)
- {
-@@ -82,7 +82,7 @@
- flags &= TCL_GLOBAL_ONLY;
- CONST char* cv = (char *) Tcl_GetVar2(tcl, name1, name2, flags);
- if (cv == NULL)
-- return (tcl->result);
-+ return (Tcl_GetStringResult(tcl));
- int curval = atoi(cv);
- double rate = 0.;
- timeval tv;
diff --git a/devel/tclcl/files/patch-rate-variable.h b/devel/tclcl/files/patch-rate-variable.h
deleted file mode 100644
index e8a16f008e8d..000000000000
--- a/devel/tclcl/files/patch-rate-variable.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- rate-variable.h.orig 2013-05-13 09:26:59.000000000 +0200
-+++ rate-variable.h 2013-05-13 09:27:45.000000000 +0200
-@@ -41,7 +41,7 @@
- RateVariable() : TclCommand("rate_variable") {}
- static void init();
- protected:
-- static char* update_rate_var(ClientData, Tcl_Interp*,
-+ static const char* update_rate_var(ClientData, Tcl_Interp*,
- CONST84 char* name1,
- CONST84 char* name2,
- int flags);
diff --git a/devel/tclcl/files/patch-tclcl.h b/devel/tclcl/files/patch-tclcl.h
deleted file mode 100644
index 5311c1144c74..000000000000
--- a/devel/tclcl/files/patch-tclcl.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- tclcl.h.orig 2013-05-13 09:20:07.000000000 +0200
-+++ tclcl.h 2013-05-13 09:23:19.000000000 +0200
-@@ -85,7 +85,7 @@
- /* may not work at all! */
- inline char* result() const { return (tcl_->result); }
- #endif /* TCL_MAJOR_VERSION >= 8 */
-- inline void result(const char* p) { tcl_->result = (char*)p; }
-+ inline void result(const char* p) {Tcl_SetResult (tcl_, (char *)p, NULL);}
- void resultf(const char* fmt, ...);
- inline void CreateCommand(const char* cmd, Tcl_CmdProc* cproc,
- ClientData cd = 0,
diff --git a/devel/tclcl/pkg-descr b/devel/tclcl/pkg-descr
deleted file mode 100644
index 62e6035efac5..000000000000
--- a/devel/tclcl/pkg-descr
+++ /dev/null
@@ -1 +0,0 @@
-tcl/C++ interface used by ns and nam
diff --git a/devel/tclcl/pkg-plist b/devel/tclcl/pkg-plist
deleted file mode 100644
index c5977181384c..000000000000
--- a/devel/tclcl/pkg-plist
+++ /dev/null
@@ -1,15 +0,0 @@
-bin/otcldoc
-bin/tcl2c++
-include/tclcl/config.h
-include/tclcl/idlecallback.h
-include/tclcl/iohandler.h
-include/tclcl/rate-variable.h
-include/tclcl/tclcl-config.h
-include/tclcl/tclcl-internal.h
-include/tclcl/tclcl-mappings.h
-include/tclcl/tclcl.h
-include/tclcl/timer.h
-include/tclcl/tracedvar.h
-lib/libTcl.a
-lib/libtclcl.a
-@dirrm include/tclcl
diff --git a/lang/Makefile b/lang/Makefile
index c1a7f5ddcfb4..0c644fa53724 100644
--- a/lang/Makefile
+++ b/lang/Makefile
@@ -180,7 +180,6 @@
SUBDIR += onyx
SUBDIR += oo2c
SUBDIR += opendylan
- SUBDIR += otcl
SUBDIR += p2c
SUBDIR += p5-Data-JavaScript
SUBDIR += p5-Error
diff --git a/lang/otcl/Makefile b/lang/otcl/Makefile
deleted file mode 100644
index fd129515585e..000000000000
--- a/lang/otcl/Makefile
+++ /dev/null
@@ -1,68 +0,0 @@
-# Created by: obonilla
-# $FreeBSD$
-
-PORTNAME= otcl
-PORTVERSION= 1.14
-DISTVERSIONPREFIX= src-
-CATEGORIES= lang tcl tk
-MASTER_SITES= SF/${PORTNAME}-tclcl/OTcl/${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= MIT Object Tcl
-
-BROKEN= Fails to configure
-
-LICENSE= MIT
-
-WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
-
-USES+= tk
-USE_XORG= xext
-
-USE_AUTOTOOLS= autoconf
-USE_LDCONFIG= yes
-
-.if !defined(NOPORTDOCS)
-DOCS= CHANGES.html README.html \
- doc/autoload.html doc/capi.html doc/class.html \
- doc/object.html doc/otcl-paper.ps.gz doc/tutorial.html
-PORTDOCS= ${DOCS:S/doc\///}
-.endif
-
-NO_STAGE= yes
-.include <bsd.port.pre.mk>
-
-CFLAGS+= -DHAVE_UNISTD_H
-CONFIGURE_ARGS+=--with-tcl=${LOCALBASE} \
- --with-tk=${LOCALBASE}
-
-.if ${TCL_SHLIB_VER} > 85
-CFLAGS+= -DUSE_INTERP_ERRORLINE -DUSE_INTERP_RESULT
-.endif
-
-post-patch:
- @${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|g' \
- -e's|X11/Intrinsic.h|X11/Xlib.h|g' \
- ${WRKSRC}/configure ${WRKSRC}/conf/configure.in.x11
- @${REINPLACE_CMD} -e 's|../lib/tcl$$TCL_HI_VERS|${TCL_LIBDIR}|g' \
- -e 's|../include|${TCL_INCLUDEDIR}/generic|g' \
- ${WRKSRC}/conf/configure.in.tcl
- @${REINPLACE_CMD} -e 's|../lib/tk$$TK_HI_VERS|${TK_LIBDIR}|g' \
- -e 's|../include|${TK_INCLUDEDIR}/generic|g' \
- ${WRKSRC}/conf/configure.in.tk
-
-post-install:
- ${LN} -sf libotcl.so ${PREFIX}/lib/libotcl.so.1
- ${STRIP_CMD} ${PREFIX}/bin/otclsh
- ${STRIP_CMD} ${PREFIX}/bin/owish
-.if exists(${PKGINSTALL})
- ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL}
-.endif
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${DOCSDIR}
-.for FILE in ${DOCS}
- @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
-.endfor
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/lang/otcl/distinfo b/lang/otcl/distinfo
deleted file mode 100644
index aa27479fb9c6..000000000000
--- a/lang/otcl/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (otcl-src-1.14.tar.gz) = c644aed47ccd7e082ad47388dc8a2412a0eceacbe81d8574e560a797b782b969
-SIZE (otcl-src-1.14.tar.gz) = 325964
diff --git a/lang/otcl/pkg-descr b/lang/otcl/pkg-descr
deleted file mode 100644
index 638dca907aab..000000000000
--- a/lang/otcl/pkg-descr
+++ /dev/null
@@ -1,24 +0,0 @@
-From the README:
-
- OTcl, short for MIT Object Tcl, is an extension to Tcl/Tk for
- object-oriented programming. It shouldn't be confused with the IXI
- Object Tcl extension by Dean Sheenan. (Sorry, but we both like the
- name and have been using it for a while.)
-
- Some of OTcl's features as compared to alternatives are:
- * designed to be dynamically extensible, like Tcl, from the ground
- up
- * builds on Tcl syntax and concepts rather than importing another
- language
- * compact yet powerful object programming system (draws on CLOS,
- Smalltalk, and Self)
- * fairly portable implementation (2000 lines of C, without core
- hacks)
-
- OTcl was presented at the Tcl/Tk Workshop '95. It constitutes a
- standalone release of a system that has been in use, embedded in the
- VuSystem, for two years. We made the release public (with free use,
- distribution and modification under the MIT license) to meet the
- demand for object-oriented programming in Tcl.
-
--Oscar <obonilla@fisicc-ufm.edu>
diff --git a/lang/otcl/pkg-plist b/lang/otcl/pkg-plist
deleted file mode 100644
index 379b07d0a114..000000000000
--- a/lang/otcl/pkg-plist
+++ /dev/null
@@ -1,6 +0,0 @@
-bin/otclsh
-bin/owish
-include/otcl.h
-lib/libotcl.a
-lib/libotcl.so
-lib/libotcl.so.1
diff --git a/net/Makefile b/net/Makefile
index b9f7ada1e004..b700dcdbf9d6 100644
--- a/net/Makefile
+++ b/net/Makefile
@@ -367,7 +367,6 @@
SUBDIR += mtr
SUBDIR += mtr-nox11
SUBDIR += nakenchat
- SUBDIR += nam
SUBDIR += nast
SUBDIR += nbd-server
SUBDIR += nc
@@ -400,7 +399,6 @@
SUBDIR += nocatsplash
SUBDIR += nos-ttb
SUBDIR += nph
- SUBDIR += ns
SUBDIR += nss-pam-ldapd
SUBDIR += nss-pam-ldapd-sasl
SUBDIR += nss_ldap
diff --git a/net/nam/Makefile b/net/nam/Makefile
deleted file mode 100644
index a88a4dbc2002..000000000000
--- a/net/nam/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
-# Created by: obonilla
-# $FreeBSD$
-
-PORTNAME= nam
-PORTVERSION= 1.15
-CATEGORIES= net
-MASTER_SITES= SF/ns${PORTNAME}/${PORTNAME}-1/${PORTVERSION}
-DISTNAME= ${PORTNAME}-src-${PORTVERSION}
-
-MAINTAINER= masaki@club.kyutech.ac.jp
-COMMENT= Animation tool for network simulation traces
-
-BUILD_DEPENDS= ${LOCALBASE}/lib/libtclcl.a:${PORTSDIR}/devel/tclcl
-LIB_DEPENDS= libotcl.so:${PORTSDIR}/lang/otcl
-
-WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
-
-USES= gmake tk:85+
-USE_XORG= xmu
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --with-tcl-ver=${TCL_VER} --with-tk-ver=${TK_VER} --x-libraries=${LOCALBASE}/lib --x-includes=${LOCALBASE}/include
-ALL_TARGET= ${PORTNAME}
-
-OPTIONS_DEFINE= EXAMPLES
-
-.include <bsd.port.options.mk>
-
-post-patch:
- @${REINPLACE_CMD} -e "s,%%LOCALBASE%%,${LOCALBASE},g" \
- ${WRKSRC}/configure
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/nam ${STAGEDIR}${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/nam.1 ${STAGEDIR}${PREFIX}/man/man1
-.if ${PORT_OPTIONS:MEXAMPLES}
- @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
- ${INSTALL_DATA} ${WRKSRC}/ex/* ${STAGEDIR}${EXAMPLESDIR}
-.endif
-
-.include <bsd.port.mk>
diff --git a/net/nam/distinfo b/net/nam/distinfo
deleted file mode 100644
index 45c83fc3bf4a..000000000000
--- a/net/nam/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (nam-src-1.15.tar.gz) = 12ed547b3a5f8903890889d40cfea4d9bd66bb9ba6be99a0c753a9763cad8882
-SIZE (nam-src-1.15.tar.gz) = 4365554
diff --git a/net/nam/files/patch-configure b/net/nam/files/patch-configure
deleted file mode 100644
index 01f7afd074ea..000000000000
--- a/net/nam/files/patch-configure
+++ /dev/null
@@ -1,48 +0,0 @@
---- configure.org 2011-11-05 02:18:42.000000000 +0900
-+++ configure 2012-06-05 01:43:42.000000000 +0900
-@@ -5771,9 +5771,15 @@
- /usr/local/lib/tcl$TCL_VERS \
- /usr/local/lib/tcl$TCL_HI_VERS \
- /usr/local/lib/tcl$TCL_ALT_VERS \
-- /usr/local/include/tcl$TCL_VERS \
-- /usr/local/include/tcl$TCL_HI_VERS \
-- /usr/local/include/tcl$TCL_ALT_VERS \
-+ %%LOCALBASE%%/include/tcl$TCL_VERS \
-+ %%LOCALBASE%%/include/tcl$TCL_VERS/generic \
-+ %%LOCALBASE%%/include/tcl$TCL_VERS/unix \
-+ %%LOCALBASE%%/include/tcl$TCL_HI_VERS \
-+ %%LOCALBASE%%/include/tcl$TCL_HI_VERS/generic \
-+ %%LOCALBASE%%/include/tcl$TCL_HI_VERS/unix \
-+ %%LOCALBASE%%/include/tcl$TCL_ALT_VERS \
-+ %%LOCALBASE%%/include/tcl$TCL_ALT_VERS/generic \
-+ %%LOCALBASE%%/include/tcl$TCL_ALT_VERS/unix \
- /usr/local/include \
- /import/tcl/include/tcl$TCL_VERS \
- /import/tcl/include/tcl$TCL_HI_VERS \
-@@ -7005,7 +7011,7 @@
- ../Tcl-$TCLCL_ALT_VERS \
- ../Tcl \
- /usr/src/local/Tcl \
-- /usr/src/local/Tcl-1.0 \
-+ %%LOCALBASE%%/include/tclcl \
- /import/Tcl/include \
- /usr/local/include \
- /usr/contrib/include \
-@@ -7025,7 +7031,7 @@
- /usr/local/lib \
- /usr/lib \
- /usr/src/local/Tcl \
-- /usr/src/local/Tcl-1.0"
-+ %%LOCALBASE%%/include/tclcl"
- TCLCL_LIB_PLACES_D="\
- $d \
- $d/lib \
-@@ -7044,7 +7050,7 @@
- /usr/local/bin \
- /usr/bin \
- /usr/src/local/Tcl \
-- /usr/src/local/Tcl-1.0 \
-+ %%LOCALBASE%%/include/tclcl \
- "
- TCLCL_PROG_PLACES_D="
- $d \
diff --git a/net/nam/files/patch-main.cc b/net/nam/files/patch-main.cc
deleted file mode 100644
index b46dcf8654a9..000000000000
--- a/net/nam/files/patch-main.cc
+++ /dev/null
@@ -1,38 +0,0 @@
---- main.cc.orig 2013-05-21 15:33:25.000000000 +0200
-+++ main.cc 2013-05-21 15:40:33.000000000 +0200
-@@ -222,7 +222,7 @@
-
- static int cmd_version(ClientData , Tcl_Interp* tcl, int , CONST84 char **)
- {
-- tcl->result = version;
-+ Tcl_SetObjResult(tcl, Tcl_NewStringObj(version, -1));
- return (TCL_OK);
- }
-
-@@ -331,7 +331,7 @@
-
- Tcl_Interp *interp = Tcl_CreateInterp();
- if (Tcl_Init(interp) == TCL_ERROR) {
-- printf("%s\n", interp->result);
-+ printf("%s\n", Tcl_GetStringResult(interp));
- abort();
- }
-
-@@ -350,7 +350,7 @@
- #endif
-
- if (Otcl_Init(interp) == TCL_ERROR) {
-- printf("%s\n", interp->result);
-+ printf("%s\n", Tcl_GetStringResult(interp));
- abort();
- }
- #ifdef HAVE_LIBTCLDBG
-@@ -372,7 +372,7 @@
- if (Tk_Init(tcl.interp()) == TCL_OK)
- tk = Tk_MainWindow(tcl.interp());
- if (tk == 0) {
-- fprintf(stderr, "nam: %s\n", interp->result);
-+ fprintf(stderr, "nam: %s\n", Tcl_GetStringResult(interp));
- exit(1);
- }
- tcl.tkmain(tk);
diff --git a/net/nam/pkg-descr b/net/nam/pkg-descr
deleted file mode 100644
index 94cf8c2db684..000000000000
--- a/net/nam/pkg-descr
+++ /dev/null
@@ -1,10 +0,0 @@
-Nam is a Tcl/TK based animation tool for viewing network simulation
-traces and real world packet traces. It supports topology layout,
-packet level animation, and various data inspection tools.
-
-Nam began at LBL. It has evolved substantially over the past few
-years. The nam development effort was an ongoing collaboration with
-the VINT project. Currently, it is being developed at ISI as part of
-the SAMAN and Conser projects.
-
-WWW: http://www.isi.edu/nsnam/nam/
diff --git a/net/nam/pkg-plist b/net/nam/pkg-plist
deleted file mode 100644
index db42749c79fe..000000000000
--- a/net/nam/pkg-plist
+++ /dev/null
@@ -1,40 +0,0 @@
-bin/nam
-man/man1/nam.1.gz
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/9nodetree.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DSR.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/adc.README
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/adc.nam.gz
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algo-out-50sub.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/att.README
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/att.nam.gz
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamic-nam.conf
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamics-demo.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamics-demo.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flat-out-50sub.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hier-out-50sub.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lan.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lantest2.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/losspatterns.README
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/losspatterns.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mbone96.layout.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mbone96.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mcache.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mobigen.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pktdemo.nam.gz
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rbp_demo.README
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rbp_demo.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rpm-vs-srm.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample.nam.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/session.README
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/session.nam.gz
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple_mcast.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-example.nam
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tcpecn.nam.gz
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tcpsrm.nam.gz
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test.nam.gz
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ts100.layout.nam.gz
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ts100.nam.gz
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ts20.nam.gz
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/webcache.nam
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
diff --git a/net/ns/Makefile b/net/ns/Makefile
deleted file mode 100644
index 9d6c3ec295fc..000000000000
--- a/net/ns/Makefile
+++ /dev/null
@@ -1,48 +0,0 @@
-# Created by: Oscar Bonilla <obonilla@fisicc-ufm.edu>
-# $FreeBSD$
-
-PORTNAME= ns
-PORTVERSION= 2.35
-CATEGORIES= net
-MASTER_SITES= SF/${PORTNAME}nam/${PORTNAME}-2/${PORTVERSION}
-DISTNAME= ${PORTNAME}-src-${PORTVERSION}
-
-MAINTAINER= masaki@club.kyutech.ac.jp
-COMMENT= Discrete event simulator for networking research
-
-BUILD_DEPENDS= ${LOCALBASE}/lib/libtclcl.a:${PORTSDIR}/devel/tclcl
-
-USES= gmake tk:85+
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --with-tcl-ver=${TCL_VER} \
- --with-tk-ver=${TK_VER} \
- --x-libraries=${LOCALBASE}/lib \
- --x-includes=${LOCALBASE}/include
-
-WRKSRC= ${WRKDIR}/ns-${PORTVERSION}
-
-OPTIONS_DEFINE= EXAMPLES
-
-.include <bsd.port.options.mk>
-
-post-patch:
- @${REINPLACE_CMD} -e "s,%%LOCALBASE%%,${LOCALBASE},g" \
- ${WRKSRC}/configure
- @${REINPLACE_CMD} -e "s,Tcl_GetHashKey,static_cast<char*>&," \
- ${WRKSRC}/pushback/ident-tree.h \
- ${WRKSRC}/webcache/pagepool.cc
- @${REINPLACE_CMD} -e "/^CFLAGS =/s,$$, -DUSE_INTERP_RESULT," \
- ${WRKSRC}/indep-utils/webtrace-conv/dec/Makefile.in \
- ${WRKSRC}/indep-utils/webtrace-conv/epa/Makefile.in \
- ${WRKSRC}/indep-utils/webtrace-conv/nlanr/Makefile.in \
- ${WRKSRC}/indep-utils/webtrace-conv/ucb/Makefile.in
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/ns ${STAGEDIR}${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/ns.1 ${STAGEDIR}${PREFIX}/man/man1
-.if ${PORT_OPTIONS:MEXAMPLES}
- @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
- ${INSTALL_DATA} ${WRKSRC}/tcl/ex/*.tcl ${STAGEDIR}${EXAMPLESDIR}
-.endif
-
-.include <bsd.port.mk>
diff --git a/net/ns/distinfo b/net/ns/distinfo
deleted file mode 100644
index feed3d801c46..000000000000
--- a/net/ns/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (ns-src-2.35.tar.gz) = 2a32e831bcec7d255042a544577559d15eae67696d0e3d30881cedc1112e2387
-SIZE (ns-src-2.35.tar.gz) = 43897172
diff --git a/net/ns/files/patch-aomdv.cc b/net/ns/files/patch-aomdv.cc
deleted file mode 100644
index ee87c5a607e3..000000000000
--- a/net/ns/files/patch-aomdv.cc
+++ /dev/null
@@ -1,10 +0,0 @@
---- aomdv/aomdv.cc.org 2012-06-04 16:32:39.000000000 +0900
-+++ aomdv/aomdv.cc 2012-06-04 16:33:09.000000000 +0900
-@@ -82,6 +82,7 @@
-
- //#include <ip.h>
-
-+#include <sys/socket.h>
- #include <aomdv/aomdv.h>
- #include <aomdv/aomdv_packet.h>
- #include <random.h>
diff --git a/net/ns/files/patch-common_tclAppInit.cc b/net/ns/files/patch-common_tclAppInit.cc
deleted file mode 100644
index bae1e555d458..000000000000
--- a/net/ns/files/patch-common_tclAppInit.cc
+++ /dev/null
@@ -1,10 +0,0 @@
---- common/tclAppInit.cc.orig 2014-01-17 10:38:38.000000000 +0100
-+++ common/tclAppInit.cc 2014-01-17 10:38:45.000000000 +0100
-@@ -237,7 +237,6 @@
- Tcl_AppInit(Tcl_Interp *interp)
- {
- #ifdef MEMDEBUG_SIMULATIONS
-- extern MemTrace *globalMemTrace;
- globalMemTrace = new MemTrace;
- #endif
-
diff --git a/net/ns/files/patch-common_tkAppInit.c b/net/ns/files/patch-common_tkAppInit.c
deleted file mode 100644
index 5511d0aa47f2..000000000000
--- a/net/ns/files/patch-common_tkAppInit.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- common/tkAppInit.cc.orig 2014-01-17 10:37:16.000000000 +0100
-+++ common/tkAppInit.cc 2014-01-17 10:38:11.000000000 +0100
-@@ -293,7 +293,6 @@
- Tcl_AppInit(Tcl_Interp *interp)
- {
- #ifdef MEMDEBUG_SIMULATIONS
-- extern MemTrace *globalMemTrace;
- globalMemTrace = new MemTrace;
- #endif
-
diff --git a/net/ns/files/patch-configure b/net/ns/files/patch-configure
deleted file mode 100644
index 070620ced43b..000000000000
--- a/net/ns/files/patch-configure
+++ /dev/null
@@ -1,33 +0,0 @@
---- configure.org 2012-06-04 12:03:13.000000000 +0900
-+++ configure 2012-06-04 16:26:34.000000000 +0900
-@@ -5571,8 +5571,14 @@
- /usr/local/lib/tcl$TCL_HI_VERS \
- /usr/local/lib/tcl$TCL_ALT_VERS \
- /usr/local/include/tcl$TCL_VERS \
-+ %%LOCALBASE%%/include/tcl$TCL_VERS/generic \
-+ %%LOCALBASE%%/include/tcl$TCL_VERS/unix \
- /usr/local/include/tcl$TCL_HI_VERS \
-+ %%LOCALBASE%%/include/tcl$TCL_HI_VERS/generic \
-+ %%LOCALBASE%%/include/tcl$TCL_HI_VERS/unix \
- /usr/local/include/tcl$TCL_ALT_VERS \
-+ %%LOCALBASE%%/include/tcl$TCL_ALT_VERS/generic \
-+ %%LOCALBASE%%/include/tcl$TCL_ALT_VERS/unix \
- /usr/local/include \
- /import/tcl/include/tcl$TCL_VERS \
- /import/tcl/include/tcl$TCL_HI_VERS \
-@@ -6645,6 +6651,7 @@
- ../Tcl-$TCLCL_VERS \
- ../Tcl-$TCLCL_ALT_VERS \
- ../Tcl \
-+ %%LOCALBASE%%/include/tclcl \
- /usr/src/local/Tcl \
- /usr/src/local/Tcl-1.0 \
- /import/Tcl/include \
-@@ -6664,6 +6671,7 @@
- $x_libraries \
- /usr/contrib/lib \
- /usr/local/lib \
-+ %%LOCALBASE%%/lib \
- /usr/lib \
- /usr/src/local/Tcl \
- /usr/src/local/Tcl-1.0"
diff --git a/net/ns/files/patch-ls.h b/net/ns/files/patch-ls.h
deleted file mode 100644
index 96eab8268c30..000000000000
--- a/net/ns/files/patch-ls.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- linkstate/ls.h.org 2012-06-04 21:45:22.000000000 +0900
-+++ linkstate/ls.h 2012-06-04 21:45:44.000000000 +0900
-@@ -134,7 +134,7 @@
- return ib.second ? ib.first : baseMap::end();
- }
-
-- void eraseAll() { erase(baseMap::begin(), baseMap::end()); }
-+ void eraseAll() { baseMap::erase(baseMap::begin(), baseMap::end()); }
- T* findPtr(Key key) {
- iterator it = baseMap::find(key);
- return (it == baseMap::end()) ? (T *)NULL : &((*it).second);
diff --git a/net/ns/files/patch-mdart_mdart_adp.cc b/net/ns/files/patch-mdart_mdart_adp.cc
deleted file mode 100644
index c1ba494f279b..000000000000
--- a/net/ns/files/patch-mdart_mdart_adp.cc
+++ /dev/null
@@ -1,20 +0,0 @@
---- mdart/mdart_adp.cc.orig 2014-01-17 10:40:08.000000000 +0100
-+++ mdart/mdart_adp.cc 2014-01-17 10:40:17.000000000 +0100
-@@ -105,7 +105,7 @@
- #ifdef DEBUG_ADP
- fprintf(stdout, "%.9f\tADP::sendDarq(%d)\t\t\tin node %d\twith address %s\n", CURRENT_TIME, reqId, mdart_->id_, bitString(mdart_->address_));
- #endif
-- nsaddr_t dstAdd_ = hash(reqId);
-+ nsaddr_t dstAdd_ = ::hash(reqId);
- #ifdef DEBUG_ADP
- fprintf(stdout, "\tsending darq for node %s\n", bitString(dstAdd_));
- #endif
-@@ -393,7 +393,7 @@
- fprintf(stdout, "%.9f\tMDART::sendDaup()\t\t\t\tin node %d\twith address %s\n", CURRENT_TIME, mdart_->id_, bitString(mdart_->address_));
- // printDHT();
- #endif
-- nsaddr_t dstAdd_ = hash(mdart_->id_);
-+ nsaddr_t dstAdd_ = ::hash(mdart_->id_);
- #ifdef DEBUG_ADP
- fprintf(stdout, "\tsending daup for node %s\n", bitString(dstAdd_));
- mdart_->routingTable_->print();
diff --git a/net/ns/files/patch-nix_nixnode.cc b/net/ns/files/patch-nix_nixnode.cc
deleted file mode 100644
index abad38525e6b..000000000000
--- a/net/ns/files/patch-nix_nixnode.cc
+++ /dev/null
@@ -1,11 +0,0 @@
---- nix/nixnode.cc.orig 2014-01-17 10:33:55.000000000 +0100
-+++ nix/nixnode.cc 2014-01-17 10:35:51.000000000 +0100
-@@ -156,8 +156,6 @@
- if (last.first == NODE_NONE)
- {
- prev = m_Adj.begin();
-- if (prev == (EdgeVec_it) NULL) // ! How can this happen?
-- return(NodeWeight_t(NODE_NONE, 0));
- pE = *prev;
- if(0)printf("NextAdj returning first edge %ld\n",
- pE->m_n);
diff --git a/net/ns/pkg-descr b/net/ns/pkg-descr
deleted file mode 100644
index 8fa42f66b1cd..000000000000
--- a/net/ns/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-NS is a discrete event simulator targeted at networking research.
-NS provides substantial support for simulation of TCP, routing,
-and multicast protocols.
-
-WWW: http://www.isi.edu/nsnam/ns/
diff --git a/net/ns/pkg-plist b/net/ns/pkg-plist
deleted file mode 100644
index 6d735ca52abe..000000000000
--- a/net/ns/pkg-plist
+++ /dev/null
@@ -1,126 +0,0 @@
-bin/ns
-man/man1/ns.1.gz
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/agent-gen-script.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/agent-gen.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/aomdv.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/callback_demo.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dccp.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diffusion-prob-run.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diffusion-rate-run.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dumbbell.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flooding-run.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flooding.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fq-cbr.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fq.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grid2.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gridkeeper.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hier-rtg-10.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hier-rtg-100.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hts100-0.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lantest.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/large-scale-web-traffic-old.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/large-scale-web-traffic.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/large-sim.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mac-test.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/many_tcp.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/manytcp_trmodel.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mcast.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/miptest.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nam-example-em.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nam-example.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nam-large-flowid.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nam-separate-trace.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nam-simplexlink.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/omni-run.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pkts.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/puma.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ranvar.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rbp_demo.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rc.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/redlight.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rng-test.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rng-test2.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/route-gen.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-aloha.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-iridium-links.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-iridium-nodes.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-iridium.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-mixed.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-repeater.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-teledesic-links.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-teledesic-nodes.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-teledesic.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-wired.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/shuttle-mcast.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/shuttle.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-dyn.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-eqp.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-eqp1.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-fsm-tcp.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-heap.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-plm.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-rtg.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-rtp.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-tcp.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-webcache-comp.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-webcache-trace.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-webcache.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-wireless.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/src_test.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-adapt-rep-session.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-adapt-rep.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-adapt-req-session.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-adapt-req.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-chain-session.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-chain.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-demo.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-session.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-star-session.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-star.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ss.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/swp.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/t1000.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tcp-et.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tcp-int.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tcpapp.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tcpecn.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tcpsrm.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-drr.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-emulator.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-rcvr.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-rlm.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-suite-intserv.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-suite.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-tbf.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tg.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/topo-gen-script.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/topo-gen.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/topo-view.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trace-driven.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/udpdata.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/varybell.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/virtual-classifier.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/vlantest-flat.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/vlantest-hier.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/vlantest-mcst.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/web-traffic-embobj.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/web-traffic.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wired-cum-wireless-sim.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-demo-csci694.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-dsdv-newnode.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-flooding.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-landmark.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-mip-test.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-mitf.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-newnode-energy.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-pkt-demo.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-shadowing-test.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-shadowing-vis-test.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-simple-mac.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-test.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless.tcl
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/worm.tcl
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%