From owner-svn-ports-all@FreeBSD.ORG Mon Jan 20 08:11:28 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52299149; Mon, 20 Jan 2014 08:11:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3CA551E08; Mon, 20 Jan 2014 08:11:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K8BSXD057243; Mon, 20 Jan 2014 08:11:28 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K8BRtP057236; Mon, 20 Jan 2014 08:11:27 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401200811.s0K8BRtP057236@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 20 Jan 2014 08:11:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340373 - in head/net/ns: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Jan 2014 08:11:28 -0000 Author: gahr Date: Mon Jan 20 08:11:26 2014 New Revision: 340373 URL: http://svnweb.freebsd.org/changeset/ports/340373 QAT: https://qat.redports.org/buildarchive/r340373/ Log: - Fix build with modern compilers [MFH] - Convert to USES=tk - STAGE-clean MFH: 2014Q1 PR: 185840 Approved by: maintainer Added: head/net/ns/files/patch-common_tclAppInit.cc (contents, props changed) head/net/ns/files/patch-common_tkAppInit.c (contents, props changed) head/net/ns/files/patch-mdart_mdart_adp.cc (contents, props changed) head/net/ns/files/patch-nix_nixnode.cc (contents, props changed) Modified: head/net/ns/Makefile (contents, props changed) head/net/ns/pkg-plist (contents, props changed) Modified: head/net/ns/Makefile ============================================================================== --- head/net/ns/Makefile Mon Jan 20 08:01:05 2014 (r340372) +++ head/net/ns/Makefile Mon Jan 20 08:11:26 2014 (r340373) @@ -12,8 +12,7 @@ COMMENT= Discrete event simulator for ne BUILD_DEPENDS= ${LOCALBASE}/lib/libtclcl.a:${PORTSDIR}/devel/tclcl -USES= gmake -USE_TK= 85+ +USES= gmake tk:85+ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-tcl-ver=${TCL_VER} \ --with-tk-ver=${TK_VER} \ @@ -22,11 +21,8 @@ CONFIGURE_ARGS= --with-tcl-ver=${TCL_VER WRKSRC= ${WRKDIR}/ns-${PORTVERSION} -MAN1= ns.1 - OPTIONS_DEFINE= EXAMPLES -NO_STAGE= yes .include post-patch: @@ -42,11 +38,11 @@ post-patch: ${WRKSRC}/indep-utils/webtrace-conv/ucb/Makefile.in do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/ns ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/ns.1 ${MANPREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/ns ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/ns.1 ${STAGEDIR}${PREFIX}/man/man1 .if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/tcl/ex/*.tcl ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/tcl/ex/*.tcl ${STAGEDIR}${EXAMPLESDIR} .endif .include Added: head/net/ns/files/patch-common_tclAppInit.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ns/files/patch-common_tclAppInit.cc Mon Jan 20 08:11:26 2014 (r340373) @@ -0,0 +1,10 @@ +--- 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 + Added: head/net/ns/files/patch-common_tkAppInit.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ns/files/patch-common_tkAppInit.c Mon Jan 20 08:11:26 2014 (r340373) @@ -0,0 +1,10 @@ +--- 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 + Added: head/net/ns/files/patch-mdart_mdart_adp.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ns/files/patch-mdart_mdart_adp.cc Mon Jan 20 08:11:26 2014 (r340373) @@ -0,0 +1,20 @@ +--- 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(); Added: head/net/ns/files/patch-nix_nixnode.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ns/files/patch-nix_nixnode.cc Mon Jan 20 08:11:26 2014 (r340373) @@ -0,0 +1,11 @@ +--- 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); Modified: head/net/ns/pkg-plist ============================================================================== --- head/net/ns/pkg-plist Mon Jan 20 08:01:05 2014 (r340372) +++ head/net/ns/pkg-plist Mon Jan 20 08:11:26 2014 (r340373) @@ -1,125 +1,126 @@ bin/ns -%%EXAMPLESDIR%%/agent-gen-script.tcl -%%EXAMPLESDIR%%/agent-gen.tcl -%%EXAMPLESDIR%%/aomdv.tcl -%%EXAMPLESDIR%%/callback_demo.tcl -%%EXAMPLESDIR%%/dccp.tcl -%%EXAMPLESDIR%%/diffusion-prob-run.tcl -%%EXAMPLESDIR%%/diffusion-rate-run.tcl -%%EXAMPLESDIR%%/dumbbell.tcl -%%EXAMPLESDIR%%/example.tcl -%%EXAMPLESDIR%%/flooding-run.tcl -%%EXAMPLESDIR%%/flooding.tcl -%%EXAMPLESDIR%%/fq-cbr.tcl -%%EXAMPLESDIR%%/fq.tcl -%%EXAMPLESDIR%%/grid2.tcl -%%EXAMPLESDIR%%/gridkeeper.tcl -%%EXAMPLESDIR%%/hier-rtg-10.tcl -%%EXAMPLESDIR%%/hier-rtg-100.tcl -%%EXAMPLESDIR%%/hts100-0.tcl -%%EXAMPLESDIR%%/lantest.tcl -%%EXAMPLESDIR%%/large-scale-web-traffic-old.tcl -%%EXAMPLESDIR%%/large-scale-web-traffic.tcl -%%EXAMPLESDIR%%/large-sim.tcl -%%EXAMPLESDIR%%/mac-test.tcl -%%EXAMPLESDIR%%/many_tcp.tcl -%%EXAMPLESDIR%%/manytcp_trmodel.tcl -%%EXAMPLESDIR%%/mcast.tcl -%%EXAMPLESDIR%%/miptest.tcl -%%EXAMPLESDIR%%/nam-example-em.tcl -%%EXAMPLESDIR%%/nam-example.tcl -%%EXAMPLESDIR%%/nam-large-flowid.tcl -%%EXAMPLESDIR%%/nam-separate-trace.tcl -%%EXAMPLESDIR%%/nam-simplexlink.tcl -%%EXAMPLESDIR%%/omni-run.tcl -%%EXAMPLESDIR%%/pkts.tcl -%%EXAMPLESDIR%%/puma.tcl -%%EXAMPLESDIR%%/ranvar.tcl -%%EXAMPLESDIR%%/rbp_demo.tcl -%%EXAMPLESDIR%%/rc.tcl -%%EXAMPLESDIR%%/redlight.tcl -%%EXAMPLESDIR%%/rng-test.tcl -%%EXAMPLESDIR%%/rng-test2.tcl -%%EXAMPLESDIR%%/route-gen.tcl -%%EXAMPLESDIR%%/sat-aloha.tcl -%%EXAMPLESDIR%%/sat-iridium-links.tcl -%%EXAMPLESDIR%%/sat-iridium-nodes.tcl -%%EXAMPLESDIR%%/sat-iridium.tcl -%%EXAMPLESDIR%%/sat-mixed.tcl -%%EXAMPLESDIR%%/sat-repeater.tcl -%%EXAMPLESDIR%%/sat-teledesic-links.tcl -%%EXAMPLESDIR%%/sat-teledesic-nodes.tcl -%%EXAMPLESDIR%%/sat-teledesic.tcl -%%EXAMPLESDIR%%/sat-wired.tcl -%%EXAMPLESDIR%%/shuttle-mcast.tcl -%%EXAMPLESDIR%%/shuttle.tcl -%%EXAMPLESDIR%%/simple-dyn.tcl -%%EXAMPLESDIR%%/simple-eqp.tcl -%%EXAMPLESDIR%%/simple-eqp1.tcl -%%EXAMPLESDIR%%/simple-fsm-tcp.tcl -%%EXAMPLESDIR%%/simple-heap.tcl -%%EXAMPLESDIR%%/simple-plm.tcl -%%EXAMPLESDIR%%/simple-rtg.tcl -%%EXAMPLESDIR%%/simple-rtp.tcl -%%EXAMPLESDIR%%/simple-tcp.tcl -%%EXAMPLESDIR%%/simple-webcache-comp.tcl -%%EXAMPLESDIR%%/simple-webcache-trace.tcl -%%EXAMPLESDIR%%/simple-webcache.tcl -%%EXAMPLESDIR%%/simple-wireless.tcl -%%EXAMPLESDIR%%/simple.tcl -%%EXAMPLESDIR%%/src_test.tcl -%%EXAMPLESDIR%%/srm-adapt-rep-session.tcl -%%EXAMPLESDIR%%/srm-adapt-rep.tcl -%%EXAMPLESDIR%%/srm-adapt-req-session.tcl -%%EXAMPLESDIR%%/srm-adapt-req.tcl -%%EXAMPLESDIR%%/srm-chain-session.tcl -%%EXAMPLESDIR%%/srm-chain.tcl -%%EXAMPLESDIR%%/srm-demo.tcl -%%EXAMPLESDIR%%/srm-session.tcl -%%EXAMPLESDIR%%/srm-star-session.tcl -%%EXAMPLESDIR%%/srm-star.tcl -%%EXAMPLESDIR%%/srm.tcl -%%EXAMPLESDIR%%/ss.tcl -%%EXAMPLESDIR%%/swp.tcl -%%EXAMPLESDIR%%/t1000.tcl -%%EXAMPLESDIR%%/tcp-et.tcl -%%EXAMPLESDIR%%/tcp-int.tcl -%%EXAMPLESDIR%%/tcpapp.tcl -%%EXAMPLESDIR%%/tcpecn.tcl -%%EXAMPLESDIR%%/tcpsrm.tcl -%%EXAMPLESDIR%%/test-drr.tcl -%%EXAMPLESDIR%%/test-emulator.tcl -%%EXAMPLESDIR%%/test-rcvr.tcl -%%EXAMPLESDIR%%/test-rlm.tcl -%%EXAMPLESDIR%%/test-suite-intserv.tcl -%%EXAMPLESDIR%%/test-suite.tcl -%%EXAMPLESDIR%%/test-tbf.tcl -%%EXAMPLESDIR%%/tg.tcl -%%EXAMPLESDIR%%/topo-gen-script.tcl -%%EXAMPLESDIR%%/topo-gen.tcl -%%EXAMPLESDIR%%/topo-view.tcl -%%EXAMPLESDIR%%/trace-driven.tcl -%%EXAMPLESDIR%%/udpdata.tcl -%%EXAMPLESDIR%%/varybell.tcl -%%EXAMPLESDIR%%/virtual-classifier.tcl -%%EXAMPLESDIR%%/vlantest-flat.tcl -%%EXAMPLESDIR%%/vlantest-hier.tcl -%%EXAMPLESDIR%%/vlantest-mcst.tcl -%%EXAMPLESDIR%%/web-traffic-embobj.tcl -%%EXAMPLESDIR%%/web-traffic.tcl -%%EXAMPLESDIR%%/wired-cum-wireless-sim.tcl -%%EXAMPLESDIR%%/wireless-demo-csci694.tcl -%%EXAMPLESDIR%%/wireless-dsdv-newnode.tcl -%%EXAMPLESDIR%%/wireless-flooding.tcl -%%EXAMPLESDIR%%/wireless-landmark.tcl -%%EXAMPLESDIR%%/wireless-mip-test.tcl -%%EXAMPLESDIR%%/wireless-mitf.tcl -%%EXAMPLESDIR%%/wireless-newnode-energy.tcl -%%EXAMPLESDIR%%/wireless-pkt-demo.tcl -%%EXAMPLESDIR%%/wireless-shadowing-test.tcl -%%EXAMPLESDIR%%/wireless-shadowing-vis-test.tcl -%%EXAMPLESDIR%%/wireless-simple-mac.tcl -%%EXAMPLESDIR%%/wireless-test.tcl -%%EXAMPLESDIR%%/wireless.tcl -%%EXAMPLESDIR%%/worm.tcl -@dirrm %%EXAMPLESDIR%% +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%%