pkgsrc/cad/dinotrace-mode/Makefile
dmcmahill 1c23f230dc Update to dinotrace-mode-9.3c
* Dinotrace 9.3c 1/2/2007

***     Add signed decimal radix.  [by Uwe Bonnes]

***     Builds now take place in "obj_dir" to keep them distinct from sources.

****    Fix VCD files with 10 or 100 femtosecond resolution.

****    Fix dinotrace.el complaint about bad verilog-mode.el version.
        [Joseph Holtgrefe]

****    Fix core dump when no fonts are available.  [Dmitri Belimov]

* Dinotrace 9.3b 3/13/2006

***     Fix line number incrementing in Verilog errors. [Uwe Bonnes]

* Dinotrace 9.3a 6/13/2005

***     Fix too small buttons under openmotif.

***     Fix missing keyboard accelerators under openmotif.

* Dinotrace 9.2b 5/03/2005

***     The default extension for Verilog dumps is now .vcd instead of .dmp.

****    Fix traces containing only real numbers.  [Vitor Antunes]

****    Fix segfault when doing signal adds.  [Guy Hutchinson]
2007-03-02 02:46:15 +00:00

38 lines
926 B
Makefile

# $NetBSD: Makefile,v 1.7 2007/03/02 02:46:15 dmcmahill Exp $
#
DISTNAME= dinotrace-9.3c
PKGNAME= ${EMACS_PKGNAME_PREFIX}dinotrace-mode-9.3c
CATEGORIES= cad editors
MASTER_SITES= http://www.veripool.com/ftp/
EXTRACT_SUFX= .tgz
MAINTAINER= dmcmahill@NetBSD.org
HOMEPAGE= http://www.veripool.com/dinotrace/
COMMENT= Emacs major mode for dinotrace
DEPENDS+= ${EMACS_PKGNAME_PREFIX}verilog-mode>=3.13:../../cad/verilog-mode
.include "../../mk/bsd.prefs.mk"
.include "../../mk/emacs.mk"
.if ${EMACS_FLAVOR} == "emacs"
EMACS= emacs
.else
EMACS= xemacs
.endif
SRCS= dinotrace.el sim-log.el
do-build:
for f in ${SRCS}; do \
${EMACS} --no-init-file --no-site-file -batch \
-f batch-byte-compile ${WRKSRC}/lisp/$$f; \
done
do-install:
${INSTALL_DATA_DIR} ${EMACS_LISPPREFIX}/${PKGBASE}
cd ${WRKSRC}/lisp && ${INSTALL_DATA} ${SRCS} ${SRCS:.el=.elc} ${EMACS_LISPPREFIX}/${PKGBASE}
.include "../../mk/bsd.pkg.mk"