summaryrefslogtreecommitdiff
path: root/emulators/stella
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2003-05-05 17:54:35 +0000
committergrant <grant@pkgsrc.org>2003-05-05 17:54:35 +0000
commit83e6f69698e15e817be29503ca1e64bd29b57c73 (patch)
treefd9947dc12b14e4d09fb5ec7345d592442e1a1ee /emulators/stella
parentd616b1cb77f5c962da7cb3a37f272f7ffd079a14 (diff)
downloadpkgsrc-83e6f69698e15e817be29503ca1e64bd29b57c73.tar.gz
do-install:
- don't call install with multiple directory args. - create directories first, then install files into them. - remove unnecessary trailing slashes.
Diffstat (limited to 'emulators/stella')
-rw-r--r--emulators/stella/Makefile13
1 files changed, 7 insertions, 6 deletions
diff --git a/emulators/stella/Makefile b/emulators/stella/Makefile
index 2c9ba8e8a47..59b41fcdae2 100644
--- a/emulators/stella/Makefile
+++ b/emulators/stella/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2003/03/29 12:40:51 jmmv Exp $
+# $NetBSD: Makefile,v 1.7 2003/05/05 17:54:35 grant Exp $
DISTNAME= stella-1.1-src
PKGNAME= stella-1.1
@@ -27,11 +27,12 @@ post-build:
@cd ${WRKSRC}/../ui/sound && ${MAKE} oss
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/xstella ${PREFIX}/bin/
- ${INSTALL_PROGRAM} ${WRKSRC}/../ui/sound/stella-sound ${PREFIX}/bin/
- ${INSTALL_DATA_DIR} ${PREFIX}/share/stella ${PREFIX}/share/doc/stella
- ${INSTALL_DATA} ${WRKSRC}/../../games/ROMS/* ${PREFIX}/share/stella/
- ${INSTALL_DATA} ${WRKSRC}/../../games/docs/* ${PREFIX}/share/doc/stella/
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/stella
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/stella
+ ${INSTALL_PROGRAM} ${WRKSRC}/xstella ${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/../ui/sound/stella-sound ${PREFIX}/bin
+ ${INSTALL_DATA} ${WRKSRC}/../../games/ROMS/* ${PREFIX}/share/stella
+ ${INSTALL_DATA} ${WRKSRC}/../../games/docs/* ${PREFIX}/share/doc/stella
${INSTALL_DATA} ${WRKSRC}/../../docs/Stella.pdf ${PREFIX}/share/doc/stella/stella.pdf
.include "../../mk/bsd.pkg.mk"