summaryrefslogtreecommitdiff
path: root/emulators/stella
diff options
context:
space:
mode:
authorgrant <grant>2003-05-05 17:54:35 +0000
committergrant <grant>2003-05-05 17:54:35 +0000
commit9684c1d941298678af8cec82604d29a91f1a1da8 (patch)
treefd9947dc12b14e4d09fb5ec7345d592442e1a1ee /emulators/stella
parent800ba7ad2a16e594f93699ba080b1d3f9b69bc79 (diff)
downloadpkgsrc-9684c1d941298678af8cec82604d29a91f1a1da8.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"