1119f1797d
6.2 is missing the following functionality that version 5.9 had: * Can also read and run MIPS a.out files (when compiled on a MIPS system) * Includes an optional extension by Anne Rogers and Scott Rosenberg of Princeton that performs a cycle-by-cycle MIPS simulation that exposes the hardware pipeline. PR: 10454,21493
43 lines
1,019 B
Makefile
43 lines
1,019 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: spim
|
|
# Date created: Mon Oct 28, 1996
|
|
# Whom: David O'Brien (obrien@cs.ucdavis.edu)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= spim
|
|
PORTVERSION= 6.2
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= ftp://ftp.cs.wisc.edu/pub/spim/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
|
|
PREFIX?= ${LOCALBASE}
|
|
NO_WRKSUBDIR= yes
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_SCRIPT= Configure
|
|
USE_IMAKE= yes
|
|
ALL_TARGET= y.tab.c spim xspim
|
|
MAN1= spim.1 xspim.1
|
|
|
|
pre-build:
|
|
@${RM} -f ${WRKSRC}/y.tab.*
|
|
|
|
pre-install:
|
|
@${MKDIR} ${PREFIX}/share/spim && ${CHMOD} a+rx,u+w ${PREFIX}/share/spim
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${ECHO_MSG} "Installing spim/xspim documentation"
|
|
@${MKDIR} ${PREFIX}/share/doc/spim \
|
|
&& ${CHMOD} a+rx,u+w ${PREFIX}/share/doc/spim
|
|
${INSTALL_DATA} ${WRKSRC}/Documentation/spim.ps \
|
|
${PREFIX}/share/doc/spim
|
|
${INSTALL_DATA} ${WRKSRC}/Documentation/cycle.ps \
|
|
${PREFIX}/share/doc/spim
|
|
${GZIP_CMD} ${PREFIX}/share/doc/spim/*.ps
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|