diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2001-02-04 15:36:49 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2001-02-04 15:36:49 +0000 |
commit | 1c2773e731567098bbd4d020af738b87fdeae1dd (patch) | |
tree | 70ebd48eb3b3e4878bc4a8f5e0cbf6d87d589067 /cad/verilog/Makefile | |
parent | 43db17d3e2e32e0c2ce0017d20342d2ae446a654 (diff) | |
download | pkgsrc-1c2773e731567098bbd4d020af738b87fdeae1dd.tar.gz |
update to verilog-0.4.
from the authors announcement:
So many things have changed since version 0.3 that there is no point
in listing them. There have been tons and tons of bug fixes and the
language coverage is better, and so on and so forth. It's just so very
much better then version 0.3:-)
speaking as a user, some of my personal favorites are:
- support for signed variables
- iverilog now gives correct return codes (which makes 'make' much happier)
for a more complete list, the commit messages for
pkgsrc/cad/verilog-current/Makefile contain the changes for each
development snapshot between verilog-0.3 and verilog-0.4
Diffstat (limited to 'cad/verilog/Makefile')
-rw-r--r-- | cad/verilog/Makefile | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/cad/verilog/Makefile b/cad/verilog/Makefile index 367b269df49..5a7d837c965 100644 --- a/cad/verilog/Makefile +++ b/cad/verilog/Makefile @@ -1,19 +1,23 @@ -# $NetBSD: Makefile,v 1.4 2000/06/22 03:15:31 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.5 2001/02/04 15:36:49 dmcmahill Exp $ # -DISTNAME= verilog-0.3 -CATEGORIES= cad -MASTER_SITES= ftp://icarus.com/pub/eda/verilog/v0.3/ +DISTNAME= verilog-0.4 +CATEGORIES= cad +MASTER_SITES= ftp://icarus.com/pub/eda/verilog/v0.4/ -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 +DEPENDS+= ipal-current>=20001210:../../cad/ipal-current -CONFLICTS+= verilog-current +CONFLICTS+= verilog-current GNU_CONFIGURE= yes -USE_GMAKE= yes +USE_GMAKE= yes +# to find ipal.h: +CPPFLAGS+= -I${LOCALBASE}/include +CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS+="${LDFLAGS}" .include "../../mk/bsd.pkg.mk" |