7c084f620e
- fix build failures in i386 and amd64 due to compiler changes - fix numerous compilation warnings and logical errors that may trap in the future - convert all distribution files from DOS format to ease future changes - convert legacy patch file to new naming convention PR: 214990 Submitted by: bob@eager.cx (maintainer)
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
# Created by: jraynard
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= simh
|
|
PORTVERSION= 3.9.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://simh.trailing-edge.com/sources/
|
|
DISTNAME= ${PORTNAME}v${PORTVERSION:R:S/.//}-${PORTVERSION:E}
|
|
|
|
MAINTAINER= bob@eager.cx
|
|
COMMENT= Emulates classic DEC, HP, GRI, IBM, Altair, SDS, Honeywell, and others
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
USES= gmake dos2unix zip
|
|
CFLAGS+= -Wno-format-extra-args -Wno-comment -Wno-logical-op-parentheses -Wno-bitwise-op-parentheses
|
|
MAKE_ENV= GCC="${CC}" CFLAGS_O="${CFLAGS}" USE_NETWORK=1
|
|
MAKEFILE= makefile
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
PORTDOCS= 0readme_${PORTVERSION:R:S/.//}.txt 0readme_ethernet.txt
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
pre-patch:
|
|
@${MKDIR} ${WRKSRC}/BIN
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
'/shell ldconfig/s|^|#| ; \
|
|
/-O2/s| = | ?= |' ${WRKSRC}/makefile
|
|
@${REINPLACE_CMD} -e \
|
|
's|%%DATADIR%%|${DATADIR}|' ${WRKSRC}/VAX/vax_sysdev.c
|
|
|
|
post-build:
|
|
# eclipse conflicts with java/eclipse, install it as simh-eclipse
|
|
@${MV} ${WRKSRC}/BIN/eclipse ${WRKSRC}/BIN/simh-eclipse
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/BIN/* ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/VAX/ka655x.bin ${STAGEDIR}${DATADIR}
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|