editors/emacs: - Update to 24.3 - Update CANNA patchset[1] - Unbreak ARM support by using the patch from emacs-devel port - Add missing INSTALLS_ICONS[2] - Remove a patch which is already integrated upstream - Fix Makefile header editors/emacs-devel: - Update to bzr revision 112178 - Fix Makefile header - Add missing INSTALLS_ICONS[2] editors/emacs23: - Remove ABI versions from LIB_DEPENDS - Fix Makefile header - Add missing INSTALLS_ICONS[2] Mk/bsd.emacs.mk: - Update major version for editors/emacs port *: - Bump PORTREVISION to chase Emacs updates PR: ports/177428[2] Submitted by: Yuji TAKANO[1] (via private email), bdrewery[2]
55 lines
1.2 KiB
Makefile
55 lines
1.2 KiB
Makefile
# New ports collection makefile for: dinotrace
|
|
# Date created: July 05, 2004
|
|
# Whom: 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= A graphical signal trace waveform viewer
|
|
|
|
OPTIONS_DEFINE= EMACS
|
|
OPTIONS_DEFAULT= EMACS
|
|
EMACS_DESC= Install Emacs supplimentary files
|
|
|
|
USE_XORG= x11 sm ice xmu xt
|
|
USE_MOTIF= yes
|
|
USE_PERL5_BUILD= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
INFO= dinotrace
|
|
PLIST_FILES= bin/dinotrace
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.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:
|
|
.if ${PORT_OPTIONS:MEMACS}
|
|
@${MKDIR} ${PREFIX}/${EMACS_SITE_LISPDIR}
|
|
.for F in dinotrace.el sim-log.el
|
|
${INSTALL_DATA} ${WRKSRC}/lisp/${F} ${PREFIX}/${EMACS_SITE_LISPDIR}
|
|
.endfor
|
|
@${CAT} ${PKGMESSAGE}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|