diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2004-04-19 04:54:43 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2004-04-19 04:54:43 +0000 |
commit | 7276c1bf600c526959137bad05c40fbee31a10a1 (patch) | |
tree | c0e5fb596760b5ce6a7558718661a7e09181f67e | |
parent | o Update to 2.27. (diff) |
o Update to 1.10.
o Upgrade dependency on tcl/tk to 8.4.
PR: ports-jp/14620
Submitted by: Hiroyuki Une <harrier@seiryu.cim.hkg.ac.jp>
-rw-r--r-- | net/nam/Makefile | 6 | ||||
-rw-r--r-- | net/nam/distinfo | 4 | ||||
-rw-r--r-- | net/nam/files/patch-nam_stream.cc | 20 |
3 files changed, 5 insertions, 25 deletions
diff --git a/net/nam/Makefile b/net/nam/Makefile index 2dc47a3808f4..927e5c5035d8 100644 --- a/net/nam/Makefile +++ b/net/nam/Makefile @@ -6,7 +6,7 @@ # PORTNAME= nam -PORTVERSION= 1.0a9 +PORTVERSION= 1.10 CATEGORIES= net MASTER_SITES= http://www.isi.edu/nsnam/dist/ DISTNAME= nam-src-${PORTVERSION} @@ -15,14 +15,14 @@ MAINTAINER= ports@FreeBSD.org COMMENT= The UCB/LBNL Network Animator BUILD_DEPENDS= ${LOCALBASE}/lib/libtclcl.a:${PORTSDIR}/devel/tclcl -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 +LIB_DEPENDS= tcl84.1:${PORTSDIR}/lang/tcl84 MAN1= nam.1 MANCOMPRESSED= no USE_REINPLACE= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-tcl-ver=8.3 --with-tk-ver=8.3 +CONFIGURE_ARGS= --with-tcl-ver=8.4 --with-tk-ver=8.4 WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} ALL_TARGET= # empty diff --git a/net/nam/distinfo b/net/nam/distinfo index ba8f3dfc59e6..43aca5309221 100644 --- a/net/nam/distinfo +++ b/net/nam/distinfo @@ -1,2 +1,2 @@ -MD5 (nam-src-1.0a9.tar.gz) = 8c8f7c35896be7a272cb43d75e651ef0 -SIZE (nam-src-1.0a9.tar.gz) = 4242823 +MD5 (nam-src-1.10.tar.gz) = 35efe4a43f1cc3dd03fb744c5603fc58 +SIZE (nam-src-1.10.tar.gz) = 4324890 diff --git a/net/nam/files/patch-nam_stream.cc b/net/nam/files/patch-nam_stream.cc deleted file mode 100644 index 453ec5ab60c7..000000000000 --- a/net/nam/files/patch-nam_stream.cc +++ /dev/null @@ -1,20 +0,0 @@ ---- nam_stream.cc.orig Thu Oct 3 11:32:39 2002 -+++ nam_stream.cc Thu Oct 3 11:33:21 2002 -@@ -23,7 +23,7 @@ - #ifdef WIN32 - #include <limits.h> - #else --#include <values.h> -+#include <limits.h> - #endif - - #include <assert.h> -@@ -429,7 +429,7 @@ - switch(whence) { - case SEEK_SET: lim = offset; break; - case SEEK_CUR: lim = tell() + offset; break; -- case SEEK_END: lim = MAXLONG; break; // XXX: MAXINT may not be max(off_t) -+ case SEEK_END: lim = LONG_MAX; break; // XXX: MAXINT may not be max(off_t) - } - insure_backing(lim); - if (0 == fseek(back_, offset, whence)) |