diff options
author | thorpej <thorpej@pkgsrc.org> | 2002-10-19 21:38:09 +0000 |
---|---|---|
committer | thorpej <thorpej@pkgsrc.org> | 2002-10-19 21:38:09 +0000 |
commit | 18ac973de01e786f570bd4575c83ca74ed94365a (patch) | |
tree | 927a3be0dbbeb82fb4b940524fb48e5a42f08bad /emulators/simh/Makefile | |
parent | d7ca9840df5e94aa9fe346ac5a40db7ac1fd3190 (diff) | |
download | pkgsrc-18ac973de01e786f570bd4575c83ca74ed94365a.tar.gz |
Add David Hittner's DELQA/DEQNA Ethernet module for SIMH (PDP11 and
VAX). Patches for the sim_ether module to support NetBSD, and a bug
fix to the XQ module from me (both patches sent to author).
Bump package revision to nb1.
NOTE: To work, this requires a patch to libpcap recently posted to
tech-net.
Diffstat (limited to 'emulators/simh/Makefile')
-rw-r--r-- | emulators/simh/Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/emulators/simh/Makefile b/emulators/simh/Makefile index f846750eea3..7c3abbaf3b0 100644 --- a/emulators/simh/Makefile +++ b/emulators/simh/Makefile @@ -1,13 +1,17 @@ -# $NetBSD: Makefile,v 1.7 2002/10/19 20:54:21 thorpej Exp $ +# $NetBSD: Makefile,v 1.8 2002/10/19 21:38:09 thorpej Exp $ # DISTNAME= simhv210-0b2 PKGNAME= simh-2.10.0b2 +PKGREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://simh.trailing-edge.com/sources/ EXTRACT_SUFX= .zip EXTRACT_CMD= unzip -aq ${DOWNLOADED_DISTFILE} +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ + xq_beta4${EXTRACT_SUFX} + MAINTAINER= packages@netbsd.org HOMEPAGE= http://simh.trailing-edge.com/ COMMENT= Bob Supnik's historical computer simulator @@ -19,6 +23,13 @@ post-extract: ${MV} ${WRKSRC}/makefile ${WRKSRC}/Makefile ${MV} ${WRKSRC}/AltairZ80/altairZ80_defs.h \ ${WRKSRC}/AltairZ80/altairz80_defs.h + ${MV} ${WRKSRC}/SIMH/sim_ether.c ${WRKSRC}/sim_ether.c + ${MV} ${WRKSRC}/SIMH/sim_ether.h ${WRKSRC}/sim_ether.h + ${MV} ${WRKSRC}/SIMH/PDP11/pdp11_xq.c ${WRKSRC}/PDP11/pdp11_xq.c + ${MV} ${WRKSRC}/SIMH/PDP11/pdp11_xq.h ${WRKSRC}/PDP11/pdp11_xq.h + ${MV} ${WRKSRC}/SIMH/xq_README.txt ${WRKSRC}/xq_README.txt + ${RMDIR} ${WRKSRC}/SIMH/PDP11 + ${RMDIR} ${WRKSRC}/SIMH do-install: (cd ${WRKSRC}/BIN && for BIN in *; do \ |