diff options
author | hubertf <hubertf@pkgsrc.org> | 2001-02-25 04:17:35 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2001-02-25 04:17:35 +0000 |
commit | d32e698de6a63cf0273391b498d5c8e2bc3ea265 (patch) | |
tree | f7733ee24f18b76cbeda1e577b4cec2485f4cf3e /emulators | |
parent | b1fe99775bd942bbd05e584ba34834516831b04a (diff) | |
download | pkgsrc-d32e698de6a63cf0273391b498d5c8e2bc3ea265.tar.gz |
Cleanup MKDIR usage => INSTALL_*_DIR
XXX need to teach pkglint to be more picky about this
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/fmsx/Makefile | 10 | ||||
-rw-r--r-- | emulators/hercules-images/Makefile | 4 | ||||
-rw-r--r-- | emulators/hercules/Makefile | 4 | ||||
-rw-r--r-- | emulators/linuxppc_lib/Makefile | 4 | ||||
-rw-r--r-- | emulators/spim/Makefile | 6 | ||||
-rw-r--r-- | emulators/suse_base/Makefile | 4 | ||||
-rw-r--r-- | emulators/swarm/Makefile | 4 | ||||
-rw-r--r-- | emulators/xbeeb/Makefile | 10 | ||||
-rw-r--r-- | emulators/xmame/Makefile | 4 |
9 files changed, 25 insertions, 25 deletions
diff --git a/emulators/fmsx/Makefile b/emulators/fmsx/Makefile index 879fe0101ad..9a1c3580280 100644 --- a/emulators/fmsx/Makefile +++ b/emulators/fmsx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2001/02/17 18:38:17 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2001/02/25 04:17:45 hubertf Exp $ DISTNAME= fMSX22.tar PKGNAME= fmsx-2.2 @@ -27,9 +27,9 @@ DEFS+= -DMITSHM -D${CUR_DEPTH} -DSOUND -DSUN_AUDIO MAKE_ENV= DEFS="${DEFS}" pre-install: - @${MKDIR} ${PREFIX}/share/fmsx \ + @${INSTALL_DATA_DIR} ${PREFIX}/share/fmsx \ && ${CHMOD} a+rx ${PREFIX}/share/fmsx - @${MKDIR} ${PREFIX}/share/doc/html/fmsx \ + @${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/fmsx \ && ${CHMOD} a+rx ${PREFIX}/share/doc/html/fmsx # Makefile of fMSX doesn't have install target. @@ -37,7 +37,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/fmsx ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/rddsk ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/wrdsk ${PREFIX}/bin - ${MKDIR} ${PREFIX}/share/fmsx + ${INSTALL_DATA_DIR} ${PREFIX}/share/fmsx ${INSTALL_DATA} ${WRKSRC}/CYRILLIC.FNT ${PREFIX}/share/fmsx ${INSTALL_DATA} ${WRKSRC}/ITALIC.FNT ${PREFIX}/share/fmsx ${INSTALL_DATA} ${WRKSRC}/DISK.ROM ${PREFIX}/share/fmsx @@ -48,7 +48,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/MSX2P.ROM ${PREFIX}/share/fmsx ${INSTALL_DATA} ${WRKSRC}/MSX2PEXT.ROM ${PREFIX}/share/fmsx ${INSTALL_DATA} ${WRKSRC}/PAINTER.ROM ${PREFIX}/share/fmsx - ${MKDIR} ${PREFIX}/share/doc/fmsx + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/fmsx ${INSTALL_DATA} ${WRKSRC}/fMSX.html ${PREFIX}/share/doc/fmsx .include "../../mk/bsd.pkg.mk" diff --git a/emulators/hercules-images/Makefile b/emulators/hercules-images/Makefile index 93dd89af38d..47b50c70cee 100644 --- a/emulators/hercules-images/Makefile +++ b/emulators/hercules-images/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2001/02/22 16:45:49 agc Exp $ +# $NetBSD: Makefile,v 1.2 2001/02/25 04:17:45 hubertf Exp $ DISTNAME= mftr33 PKGNAME= hercules-images-20010222 @@ -16,7 +16,7 @@ EXTRACT_ONLY= WRKSRC= ${WRKDIR} do-install: - ${MKDIR} ${PREFIX}/share/data/hercules + ${INSTALL_DATA_DIR} ${PREFIX}/share/data/hercules cd ${PREFIX}/share/data/hercules; \ (${GZCAT} ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ; dd if=/dev/zero bs=10k count=2) | ${PAX} -r diff --git a/emulators/hercules/Makefile b/emulators/hercules/Makefile index da6958138c8..cbc3f087c2e 100644 --- a/emulators/hercules/Makefile +++ b/emulators/hercules/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2001/02/22 16:49:35 agc Exp $ +# $NetBSD: Makefile,v 1.5 2001/02/25 04:17:45 hubertf Exp $ DISTNAME= hercules-2.11 CATEGORIES= emulators @@ -15,7 +15,7 @@ USE_GMAKE= yes MAKEFILE= makefile pre-install: - ${MKDIR} ${PREFIX}/share/examples/hercules + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/hercules ${BSD_INSTALL_DATA} ${WRKSRC}/hercules.cnf ${PREFIX}/share/examples/hercules/ ${BSD_INSTALL_DATA} ${WRKSRC}/zzsa.cnf ${PREFIX}/share/examples/hercules/ diff --git a/emulators/linuxppc_lib/Makefile b/emulators/linuxppc_lib/Makefile index c4b50e8b1e0..fdd41e5c35d 100644 --- a/emulators/linuxppc_lib/Makefile +++ b/emulators/linuxppc_lib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2001/02/24 18:08:35 manu Exp $ +# $NetBSD: Makefile,v 1.5 2001/02/25 04:17:45 hubertf Exp $ DISTNAME= linuxppc_lib-2000.q4.2 CATEGORIES= emulators @@ -44,7 +44,7 @@ do-build: #do nothing do-install: ${RM} -f ${WRKDIR}/PLIST_DYNAMIC - ${MKDIR} ${PREFIX}/${EMUL_LINUX} + ${INSTALL_DATA_DIR} ${PREFIX}/${EMUL_LINUX} ${RPM2PKG} -d ${PREFIX} -f ${WRKDIR}/PLIST_DYNAMIC -p emul/linux ${RPMARGS} ${TOUCH} ${PREFIX}/${EMUL_LINUX}/etc/ld.so.cache~ ${CP} ${FILESDIR}/ld.so.conf ${PREFIX}/${EMUL_LINUX}/etc/ld.so.conf diff --git a/emulators/spim/Makefile b/emulators/spim/Makefile index 926b35958d7..6d6f67a19c5 100644 --- a/emulators/spim/Makefile +++ b/emulators/spim/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2001/02/17 18:38:23 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2001/02/25 04:17:46 hubertf Exp $ # FreeBSD Id: Makefile,v 1.5 1997/10/10 06:53:35 obrien Exp # @@ -24,11 +24,11 @@ pre-configure: @${RM} -f ${WRKSRC}/y.tab.* pre-install: - @${MKDIR} ${PREFIX}/share/spim && ${CHMOD} a+rx ${PREFIX}/share/spim + @${INSTALL_DATA_DIR} ${PREFIX}/share/spim && ${CHMOD} a+rx ${PREFIX}/share/spim post-install: @${ECHO} "Installing spim/xspim documentation" - @${MKDIR} ${PREFIX}/share/doc/spim \ + @${INSTALL_DATA_DIR} ${PREFIX}/share/doc/spim \ && ${CHMOD} a+rx ${PREFIX}/share/doc/spim ${INSTALL_DATA} ${WRKSRC}/Documentation/spim.ps \ ${PREFIX}/share/doc/spim diff --git a/emulators/suse_base/Makefile b/emulators/suse_base/Makefile index 09eb1bf36b1..30f9907b5d6 100644 --- a/emulators/suse_base/Makefile +++ b/emulators/suse_base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2001/02/17 18:38:25 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2001/02/25 04:17:46 hubertf Exp $ DISTNAME= suse_base-${SUSE_VERSION}nb2 CATEGORIES= emulators @@ -33,7 +33,7 @@ do-install: for FILE in ${WRKDIR}/*.sh; do \ ${INSTALL_SCRIPT} $$FILE ${PREFIX}/sbin/`basename $$FILE .sh`; \ done - ${MKDIR} ${EMULDIR}/dev + ${INSTALL_DATA_DIR} ${EMULDIR}/dev ${LN} -fs /dev/sound ${EMULDIR}/dev/dsp ${LN} -fs /dev/null ${EMULDIR}/dev/null @${CP} ${WRKDIR}/PLIST ${PLIST_SRC} diff --git a/emulators/swarm/Makefile b/emulators/swarm/Makefile index 24dae7bd14e..0f2b333b7a8 100644 --- a/emulators/swarm/Makefile +++ b/emulators/swarm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2001/02/17 18:38:31 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2001/02/25 04:17:47 hubertf Exp $ DISTNAME= swarm-0.26 CATEGORIES= emulators @@ -12,7 +12,7 @@ WRKSRC= ${WRKDIR}/swarm/src do-install: ${BSD_INSTALL_PROGRAM} ${WRKSRC}/swarm ${PREFIX}/bin - ${MKDIR} ${PREFIX}/share/doc/swarm + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/swarm ${BSD_INSTALL_DATA} ${WRKSRC}/../doc/swarm.pdf ${PREFIX}/share/doc/swarm .include "../../mk/bsd.pkg.mk" diff --git a/emulators/xbeeb/Makefile b/emulators/xbeeb/Makefile index 8610b6ee234..32a509e2697 100644 --- a/emulators/xbeeb/Makefile +++ b/emulators/xbeeb/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2001/02/17 18:38:34 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2001/02/25 04:17:47 hubertf Exp $ # DISTNAME= xbeeb-0.3.6 @@ -41,10 +41,10 @@ do-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/xbeeb ${PREFIX}/bin/xbeeb ${INSTALL_MAN} ${MAN_PAGE} ${PREFIX}/man/man1/xbeeb.1 - ${MKDIR} ${PREFIX}/${XBEEBROOT} - ${MKDIR} ${PREFIX}/${XBEEBROOT}/roms - ${MKDIR} ${PREFIX}/${XBEEBROOT}/docs - ${MKDIR} ${PREFIX}/lib/X11/fonts/xbeeb + ${INSTALL_DATA_DIR} ${PREFIX}/${XBEEBROOT} + ${INSTALL_DATA_DIR} ${PREFIX}/${XBEEBROOT}/roms + ${INSTALL_DATA_DIR} ${PREFIX}/${XBEEBROOT}/docs + ${INSTALL_DATA_DIR} ${PREFIX}/lib/X11/fonts/xbeeb ${INSTALL_DATA} ${WRKSRC}/roms/xdfs0.70.rom ${PREFIX}/${XBEEBROOT}/roms/xdfs0.70.rom for docfile in ${WRKSRC}/doc/*; do \ ${INSTALL_DATA} $$docfile ${PREFIX}/${XBEEBROOT}/docs; \ diff --git a/emulators/xmame/Makefile b/emulators/xmame/Makefile index d6cbc5c0de7..2a196f5907c 100644 --- a/emulators/xmame/Makefile +++ b/emulators/xmame/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2001/02/17 18:38:36 wiz Exp $ +# $NetBSD: Makefile,v 1.42 2001/02/25 04:17:47 hubertf Exp $ # DISTNAME= xmame-0.37b6.1 @@ -63,7 +63,7 @@ do-install: ${PREFIX}/bin/xmame) (cd ${WRKSRC}/doc && ${INSTALL_MAN} xmame.6 \ ${PREFIX}/man/man6/xmame.6) - ${MKDIR} ${ROMPATH} + ${INSTALL_DATA_DIR} ${ROMPATH} (cd ${WRKSRC}/doc && ${INSTALL_DATA} xmamerc ${ROMPATH}/xmamerc) @${ECHO} Remember to set ROMPATH to ${ROMPATH}. |