diff options
author | garbled <garbled@pkgsrc.org> | 1998-09-12 17:46:23 +0000 |
---|---|---|
committer | garbled <garbled@pkgsrc.org> | 1998-09-12 17:46:23 +0000 |
commit | 6d938c986a45852c166fb8fa03b6fbca924e7388 (patch) | |
tree | 09c844b3cd4b68ad3a493a175f8d42724c3b4087 | |
parent | 1f928b072d5d07db38af84360d64acca306c5413 (diff) | |
download | pkgsrc-6d938c986a45852c166fb8fa03b6fbca924e7388.tar.gz |
roms distfile was not needed..pointed out by Krister Walfridsson.
-rw-r--r-- | emulators/vice/Makefile | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/emulators/vice/Makefile b/emulators/vice/Makefile index dd9ed898f2a..821056b679e 100644 --- a/emulators/vice/Makefile +++ b/emulators/vice/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.1 1998/09/06 23:47:26 garbled Exp $ +# $NetBSD: Makefile,v 1.2 1998/09/12 17:46:23 garbled Exp $ DISTNAME= vice-0.15.0 CATEGORIES= emulators MASTER_SITES= http://www.tu-chemnitz.de/~fachat/vice/ -DISTFILES= vice-0.15.0-roms.tar.gz ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= root@garbled.net HOMEPAGE= http://www.tu-chemnitz.de/~fachat/vice/ @@ -18,9 +17,13 @@ USE_X11= yes INFO_FILES= vice.info post-install: - ${INSTALL_DATA} ${WRKDIR}/data/C64/* ${PREFIX}/share/vice/C64 - ${INSTALL_DATA} ${WRKDIR}/data/C128/* ${PREFIX}/share/vice/C128 - ${INSTALL_DATA} ${WRKDIR}/data/VIC20/* ${PREFIX}/share/vice/VIC20 - ${INSTALL_DATA} ${WRKDIR}/data/PET/* ${PREFIX}/share/vice/PET + for ii in C64 C128 VIC20; do \ + for xx in basic chargen dos1541 kernal; do \ + ${INSTALL_DATA} ${WRKSRC}/data/$$ii/$$xx ${PREFIX}/share/vice/$$ii; \ + done; \ + done + for ii in chargen edit2.b edit4.b40 edit4.b80 pet2001 pet3032 pet4032; do \ + ${INSTALL_DATA} ${WRKSRC}/data/PET/$ii ${PREFIX}/share/vice/PET; \ + done .include "../../mk/bsd.pkg.mk" |