summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorseb <seb>2003-09-03 21:29:43 +0000
committerseb <seb>2003-09-03 21:29:43 +0000
commit2571bded4adebf0ec2f35663beded9695a88cad1 (patch)
tree2800a7aa27d56743f28de15f70e627dbe2e5ad1e /net
parent2c0291e43c98a3171cb3e8d0da4144fd77dfc698 (diff)
downloadpkgsrc-2571bded4adebf0ec2f35663beded9695a88cad1.tar.gz
Update to version 1.9.
Provided in PR pkg/22664 by Min Sik Kim <minskim at bawi dot org>. Minor tuning by myself. Changes since version -1.0a11a (aka 1.8a) * [Tim Buchheim]Mon Feb 10 14:17:40 PST 2003 More updates for wireless animations: * wireless broadcast packets now use "r" events when animating in reverse, just like non-broadcast packets. (previously they used the "h" event even when going backwards) * wireless and wired nodes can now be mixed with better results. This requires using the "W" event as well as supplying X and Y coordinates for all nodes in the scenario. * The range and duration of the animation of wireless packets can now be specified on either a per-packet basis or by setting global parameters. * [Tim Buchheim]Tue Dec 10 19:02:19 PST 2002 Two changes to the animation of broadcast packets in wireless scenarios: * bcast packets used to be animate in real time, not virtual time. so if you changed the playback speed (or even paused it) the circles would always expand at the same real rate. Now, the animation is done in virtual time, like all other objects. So if you slow down the playback rate, the circles will move slower. If you increase playback rate, they move faster. * you can now set the speed for broadcast packets. (previously they ran at a hardcoded speed.) Use something like the following: v -t 0.0 -e set_bcast_duration 0.02 The default is currently set to 0.01 (units are seconds)
Diffstat (limited to 'net')
-rw-r--r--net/nam/Makefile7
-rw-r--r--net/nam/distinfo10
-rw-r--r--net/nam/patches/patch-aa13
-rw-r--r--net/nam/patches/patch-ac6
4 files changed, 22 insertions, 14 deletions
diff --git a/net/nam/Makefile b/net/nam/Makefile
index 95c38027575..f39f68b353d 100644
--- a/net/nam/Makefile
+++ b/net/nam/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.6 2003/07/17 22:51:24 grant Exp $
+# $NetBSD: Makefile,v 1.7 2003/09/03 21:29:43 seb Exp $
-DISTNAME= nam-src-1.0a11a
-PKGNAME= ${DISTNAME:S/0a/0rc/:S/-src//}
-PKGREVISION= 1
+DISTNAME= nam-src-1.9
+PKGNAME= ${DISTNAME:S/-src//}
WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//}
CATEGORIES= net
MASTER_SITES= http://www.isi.edu/nsnam/dist/
diff --git a/net/nam/distinfo b/net/nam/distinfo
index c7aa2817785..c79db4253b5 100644
--- a/net/nam/distinfo
+++ b/net/nam/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.1.1.1 2002/08/27 08:06:08 seb Exp $
+$NetBSD: distinfo,v 1.2 2003/09/03 21:29:44 seb Exp $
-SHA1 (nam-src-1.0a11a.tar.gz) = 74955f993767bb476abf5dc9c4222e1ede1c24f8
-Size (nam-src-1.0a11a.tar.gz) = 4355016 bytes
-SHA1 (patch-aa) = 79d115a0813e038d1d5a8f2bbe238bba48aaa544
+SHA1 (nam-src-1.9.tar.gz) = 7ceb5ed011bae7d7b39c0a4acb368fc7214e6558
+Size (nam-src-1.9.tar.gz) = 4367379 bytes
+SHA1 (patch-aa) = 6178acca56809e546128c0b8d54db4aa6db83e4d
SHA1 (patch-ab) = 28cda4d9f68e031725016d2c06925394c76e5152
-SHA1 (patch-ac) = 7d9bbb391e025be2b75eebc4cb87a57a16409e7f
+SHA1 (patch-ac) = 41e867f1de2db6345c657eebdacbb95cb1e7acac
diff --git a/net/nam/patches/patch-aa b/net/nam/patches/patch-aa
index 4c1c282d7c6..57c78169bf2 100644
--- a/net/nam/patches/patch-aa
+++ b/net/nam/patches/patch-aa
@@ -1,6 +1,6 @@
-$NetBSD: patch-aa,v 1.1.1.1 2002/08/27 08:06:08 seb Exp $
+$NetBSD: patch-aa,v 1.2 2003/09/03 21:29:45 seb Exp $
---- Makefile.in.orig Mon Apr 15 21:18:51 2002
+--- Makefile.in.orig 2003-02-26 20:52:56.000000000 +0000
+++ Makefile.in
@@ -70,7 +70,7 @@ RANLIB = @V_RANLIB@
BLANK = # make a blank space. DO NOT add anything to this line
@@ -11,3 +11,12 @@ $NetBSD: patch-aa,v 1.1.1.1 2002/08/27 08:06:08 seb Exp $
LDOUT = -o $(BLANK)
PERL = perl
RM = rm -f
+@@ -161,7 +161,7 @@ $(GEN_DIR)version.c: VERSION
+ $(TCLSH) bin/string2c.tcl version < VERSION > $@
+
+ install: force
+- $(INSTALL) -m 555 -o bin -g bin nam $(DESTDIR)$(BINDEST)
++ ${BSD_INSTALL_PROGRAM} nam $(DESTDIR)$(BINDEST)
+
+ clean:
+ $(RM) $(CLEANFILES)
diff --git a/net/nam/patches/patch-ac b/net/nam/patches/patch-ac
index 83a6cc2fd59..2261cabd58a 100644
--- a/net/nam/patches/patch-ac
+++ b/net/nam/patches/patch-ac
@@ -1,4 +1,4 @@
-$NetBSD: patch-ac,v 1.1.1.1 2002/08/27 08:06:08 seb Exp $
+$NetBSD: patch-ac,v 1.2 2003/09/03 21:29:45 seb Exp $
--- configure.orig Mon Apr 15 21:53:09 2002
+++ configure
@@ -9,5 +9,5 @@ $NetBSD: patch-ac,v 1.1.1.1 2002/08/27 08:06:08 seb Exp $
-TCLCL_PROG_PLACES_D="$d"
+TCLCL_PROG_PLACES_D="$d/bin"
- NS_PACKAGE_tclcl_UNDERWAY=false
- NS_PACKAGE_tclcl_COMPLETE=true
+
+