diff options
-rw-r--r-- | cad/verilog-current/Makefile | 6 | ||||
-rw-r--r-- | cad/verilog-current/files/md5 | 4 | ||||
-rw-r--r-- | cad/verilog-current/files/patch-sum | 6 | ||||
-rw-r--r-- | cad/verilog-current/patches/patch-aa | 11 | ||||
-rw-r--r-- | cad/verilog-current/patches/patch-ad | 12 | ||||
-rw-r--r-- | cad/verilog-current/patches/patch-ae | 13 | ||||
-rw-r--r-- | cad/verilog-current/pkg/PLIST | 4 |
7 files changed, 14 insertions, 42 deletions
diff --git a/cad/verilog-current/Makefile b/cad/verilog-current/Makefile index d492df913f6..13efab7a276 100644 --- a/cad/verilog-current/Makefile +++ b/cad/verilog-current/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.6 2000/05/30 23:43:43 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.7 2000/08/06 15:43:34 dmcmahill Exp $ # -DISTNAME= verilog-20000527 -PKGNAME= verilog-current-20000527 +DISTNAME= verilog-20000805 +PKGNAME= verilog-current-20000805 CATEGORIES= cad MASTER_SITES= ftp://icarus.com/pub/eda/verilog/snapshots/ diff --git a/cad/verilog-current/files/md5 b/cad/verilog-current/files/md5 index 51ebddc40a4..411703646f2 100644 --- a/cad/verilog-current/files/md5 +++ b/cad/verilog-current/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.6 2000/05/30 23:43:44 dmcmahill Exp $ +$NetBSD: md5,v 1.7 2000/08/06 15:43:34 dmcmahill Exp $ -MD5 (verilog-20000527.tar.gz) = 0db62b2177a4bde3ed94276c4eead81f +MD5 (verilog-20000805.tar.gz) = d49f7c6ddc7804463c7356cf48f212a3 diff --git a/cad/verilog-current/files/patch-sum b/cad/verilog-current/files/patch-sum index 153ed7d13da..f775c7f72b3 100644 --- a/cad/verilog-current/files/patch-sum +++ b/cad/verilog-current/files/patch-sum @@ -1,6 +1,4 @@ -$NetBSD: patch-sum,v 1.7 2000/06/12 00:41:09 dmcmahill Exp $ +$NetBSD: patch-sum,v 1.8 2000/08/06 15:43:34 dmcmahill Exp $ -MD5 (patch-aa) = e14dc827b8982a34b48edb802191faf5 MD5 (patch-ab) = 8e1ec1875b9f1c8a969205c81598be94 -MD5 (patch-ad) = d875516e4fc53270d66101a60bc1e8e5 -MD5 (patch-ae) = 44921f529c17458cd3ba34d35dc0da77 +MD5 (patch-ad) = 9a52d6834b76d13b3550755a33935e1e diff --git a/cad/verilog-current/patches/patch-aa b/cad/verilog-current/patches/patch-aa deleted file mode 100644 index 47baf242291..00000000000 --- a/cad/verilog-current/patches/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ -$NetBSD: patch-aa,v 1.3 2000/05/30 23:43:45 dmcmahill Exp $ - ---- iverilog.c.orig Tue May 16 23:53:29 2000 -+++ iverilog.c Mon May 29 11:08:57 2000 -@@ -141,5 +141,5 @@ - } - -- sprintf(tmp, "%s -O -rdynamic -fno-exceptions -o %s -I%s " -+ sprintf(tmp, "%s -O -Wl,--export-dynamic -fno-exceptions -o %s -I%s " - "-L%s %s.cc -lvvm %s", CXX, opath, IVL_INC, IVL_LIB, - opath, DLLIB); diff --git a/cad/verilog-current/patches/patch-ad b/cad/verilog-current/patches/patch-ad index 38e59f5b260..5e15e6992a5 100644 --- a/cad/verilog-current/patches/patch-ad +++ b/cad/verilog-current/patches/patch-ad @@ -1,11 +1,11 @@ -$NetBSD: patch-ad,v 1.5 2000/05/11 01:33:51 dmcmahill Exp $ +$NetBSD: patch-ad,v 1.6 2000/08/06 15:43:35 dmcmahill Exp $ -don't use -O2 on parse.cc because of compiler bugs on sparc and pmax -(maybe others). +work around a c++ -O2 bug which is present on at least sparc +and pmax using egcs-1.1.1 ---- Makefile.in.orig Fri Apr 28 12:50:53 2000 -+++ Makefile.in Sat Apr 29 08:39:00 2000 -@@ -115,4 +115,6 @@ +--- Makefile.in.orig Fri Jul 14 02:12:56 2000 ++++ Makefile.in Sat Aug 5 17:43:55 2000 +@@ -116,4 +116,6 @@ parse.o dep/parse.d: parse.cc + $(CXX) -MD -c -I. $(CPPFLAGS) $< diff --git a/cad/verilog-current/patches/patch-ae b/cad/verilog-current/patches/patch-ae deleted file mode 100644 index 90a964b46c4..00000000000 --- a/cad/verilog-current/patches/patch-ae +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ae,v 1.1.1.1 2000/03/07 16:09:16 dmcmahill Exp $ - -use the correct flag for our compiler. - ---- verilog.sh.orig Sat Feb 5 01:40:35 2000 -+++ verilog.sh Sun Feb 13 11:15:00 2000 -@@ -117,5 +117,5 @@ - "xnf") mv ${tmpCCFile} ${outputFile} ;; - -- "vvm") ${execCpp} -rdynamic -I${includedir} -L${libdir} ${tmpCCFile} -o ${outputFile} -lvvm @dllib@ ; -+ "vvm") ${execCpp} -Wl,--export-dynamic -I${includedir} -L${libdir} ${tmpCCFile} -o ${outputFile} -lvvm @dllib@ ; - if test $? -ne 0 ; then - echo "C++ compilation failed. Terminating compilation." diff --git a/cad/verilog-current/pkg/PLIST b/cad/verilog-current/pkg/PLIST index 9b3198c9155..867d434599a 100644 --- a/cad/verilog-current/pkg/PLIST +++ b/cad/verilog-current/pkg/PLIST @@ -1,6 +1,5 @@ -@comment $NetBSD: PLIST,v 1.3 2000/04/30 18:15:18 dmcmahill Exp $ +@comment $NetBSD: PLIST,v 1.4 2000/08/06 15:43:35 dmcmahill Exp $ bin/iverilog -bin/verilog include/vpi_priv.h include/vpi_user.h include/vvm.h @@ -15,5 +14,4 @@ lib/ivl/ivl lib/ivl/ivlpp lib/ivl/system.vpi man/man1/iverilog.1 -man/man1/verilog.1 @dirrm lib/ivl |