freebsd-ports/cad/dinotrace/Makefile

49 lines
1.1 KiB
Makefile
Raw Normal View History

# Created by: Joachim Strombergson <watchman@ludd.ltu.se>
# $FreeBSD$
PORTNAME= dinotrace
PORTVERSION= 9.4c
PORTREVISION= 2
CATEGORIES= cad
MASTER_SITES= http://www.veripool.org/ftp/
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= Graphical signal trace waveform viewer
2005-02-28 05:25:50 +01:00
2012-06-01 15:18:21 +02:00
OPTIONS_DEFINE= EMACS
OPTIONS_DEFAULT= EMACS
EMACS_DESC= Install Emacs supplimentary files
USE_XORG= x11 sm ice xmu xt
USES= gmake motif perl5
USE_PERL5= build
GNU_CONFIGURE= yes
INFO= dinotrace
PLIST_FILES= bin/dinotrace
2012-06-01 15:18:21 +02:00
.include <bsd.port.options.mk>
2012-06-01 15:18:21 +02:00
.if ${PORT_OPTIONS:MEMACS}
RUN_DEPENDS+= verilog-mode.el>0:${PORTSDIR}/cad/verilog-mode.el
USE_EMACS= yes
EMACS_NO_BUILD_DEPENDS= yes
.for F in dinotrace.el sim-log.el
PLIST_FILES+= ${EMACS_SITE_LISPDIR}/${F}
.endfor
.endif
post-patch:
@${REINPLACE_CMD} -e 's|"-O3"|""|' ${WRKSRC}/configure
post-install:
2012-06-01 15:18:21 +02:00
.if ${PORT_OPTIONS:MEMACS}
2014-01-20 21:33:59 +01:00
@${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}
.for F in dinotrace.el sim-log.el
2014-01-20 21:33:59 +01:00
${INSTALL_DATA} ${WRKSRC}/lisp/${F} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}
.endfor
.endif
2012-06-01 15:18:21 +02:00
.include <bsd.port.mk>