diff options
author | dmcmahill <dmcmahill> | 2000-06-22 03:15:31 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2000-06-22 03:15:31 +0000 |
commit | 58811f9de085f9bb2758abaa1c7c1fb1a79a01a1 (patch) | |
tree | 91ab9a82c0e30856daf5faacb2111771fda1bd55 /cad/verilog/Makefile | |
parent | b39fd8573ed3ee780ce6b20042ba7a0e985c5d03 (diff) | |
download | pkgsrc-58811f9de085f9bb2758abaa1c7c1fb1a79a01a1.tar.gz |
update to verilog-0.3
Changes, from the authors release statement, are:
This release is a significant improvement over previous releases of
Icarus Verilog, including better language coverage, improved
synthesis, and increased performance.
This release adds to the 0.2 release support for Verilog-2000 style
parameters and parameter overrides, defparam, and localparam,
including proper handling of scoping rules. Also, strength modeling is
added, with support for strengths attached to gates and continuous
assignments.
Combinational user defined primitives have been added to complement
synchronous primitives that were already supported. Support for
primitives should now be fairly complete.
Force/release/assign/deassign syntax now works properly, allowing for
more sophisticated test bench design and debugging.
Bug fixes have been numerous and varied. This release of Icarus
Verilog is considerably more robust then previous versions, thanks to
diligent testing and bug reporting by users all over the world.
Diffstat (limited to 'cad/verilog/Makefile')
-rw-r--r-- | cad/verilog/Makefile | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/cad/verilog/Makefile b/cad/verilog/Makefile index c0f729add4d..367b269df49 100644 --- a/cad/verilog/Makefile +++ b/cad/verilog/Makefile @@ -1,18 +1,19 @@ -# $NetBSD: Makefile,v 1.3 2000/03/07 16:05:13 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.4 2000/06/22 03:15:31 dmcmahill Exp $ # -DISTNAME= verilog-0.2 -CATEGORIES= cad -MASTER_SITES= ftp://icarus.com/pub/eda/verilog/v0.2/ +DISTNAME= verilog-0.3 +CATEGORIES= cad +MASTER_SITES= ftp://icarus.com/pub/eda/verilog/v0.3/ -MAINTAINER= dmcmahill@netbsd.org -HOMEPAGE= http://icarus.com/eda/verilog/index.html +MAINTAINER= dmcmahill@netbsd.org +HOMEPAGE= http://icarus.com/eda/verilog/index.html -BUILD_DEPENDS+= bison:../../devel/bison +BUILD_DEPENDS+= bison:../../devel/bison +BUILD_DEPENDS+= gperf:../../devel/gperf -CONFLICTS+= verilog-current +CONFLICTS+= verilog-current GNU_CONFIGURE= yes -USE_GMAKE= yes +USE_GMAKE= yes .include "../../mk/bsd.pkg.mk" |