3c088f1b9a
ports. They will be removed on or after that date if they are still broken and no fix has been submitted to GNATS.
52 lines
1.0 KiB
Makefile
52 lines
1.0 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: ia64sim
|
|
# Date created: Tue Oct 10, 2000
|
|
# Whom: David O'Brien (obrien@NUXI.com)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ia64sim
|
|
PORTVERSION= 0.5
|
|
PORTREVISION= 1
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://www.pacificsites.com/~ccrayne/ \
|
|
http://www.boo.net/~jasonp/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= IA64 simulator (Intel(R) Architecture 64)
|
|
|
|
BROKEN= checksum mismatch
|
|
EXPIRATION_DATE=2004-08-20
|
|
DEPRECATED= ${BROKEN}
|
|
USE_ZIP= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} >= 501103
|
|
BROKEN+= "and does not build with latest gcc"
|
|
.endif
|
|
|
|
.if ${ARCH} != "i386"
|
|
BROKEN= "Does not compile on !i386"
|
|
.endif
|
|
|
|
EXTRACT_BEFORE_ARGS= -qLa
|
|
WRKSRC= ${WRKDIR}/home/chuck/ia64simcc
|
|
USE_GMAKE= yes
|
|
MAKEFILE= makefile.unx
|
|
|
|
pre-build:
|
|
${RM} -f ${WRKSRC}/obj/*.o
|
|
${RM} -f ${WRKSRC}/ia64sim
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ia64sim ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/ia64user.txt ${WRKSRC}/readme ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|