summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz>1999-12-29 01:41:00 +0000
committerwiz <wiz>1999-12-29 01:41:00 +0000
commite3704c93c6c3f9041a812045aa69bcde5a8e1793 (patch)
tree82e432bb417606be0e2b04c0bb0fa848366f8b39
parent1bde1a10332db7f70cabe1b1cecb58f8f0686980 (diff)
downloadpkgsrc-e3704c93c6c3f9041a812045aa69bcde5a8e1793.tar.gz
replaced some commands by their ${COMMAND} counterparts,
reordered lines for fewer pkglint warnings
-rw-r--r--emulators/freebsd_lib/Makefile9
-rw-r--r--emulators/spim/Makefile6
-rw-r--r--emulators/vice/Makefile7
3 files changed, 12 insertions, 10 deletions
diff --git a/emulators/freebsd_lib/Makefile b/emulators/freebsd_lib/Makefile
index 9fb7354b476..31a0245eef7 100644
--- a/emulators/freebsd_lib/Makefile
+++ b/emulators/freebsd_lib/Makefile
@@ -1,13 +1,14 @@
-# $NetBSD: Makefile,v 1.6 1999/05/24 20:39:40 tv Exp $
+# $NetBSD: Makefile,v 1.7 1999/12/29 01:41:00 wiz Exp $
#
DISTNAME= freebsd_lib-2.2.7
CATEGORIES= emulators
MASTER_SITES= http://www.flame.org/NetBSD/
-ONLY_FOR_PLATFORM= NetBSD-*-i386
MAINTAINER= packages@netbsd.org
+ONLY_FOR_PLATFORM= NetBSD-*-i386
+
#
# The distfile is distributed under the GPL, so no re-distribution of
# binaries without source.
@@ -23,9 +24,9 @@ NO_WRKSUBDIR= yes
do-install:
@${INSTALL_DATA_DIR} ${PREFIX}/emul/freebsd
- @(cd ${WRKSRC} && find usr -type d -print) | \
+ @(cd ${WRKSRC} && ${FIND} usr -type d -print) | \
(cd ${PREFIX}/emul/freebsd && xargs ${INSTALL_DATA_DIR})
- @cd ${WRKSRC} && for file in `find usr -name '*.*' -print`; do \
+ @cd ${WRKSRC} && for file in `${FIND} usr -name '*.*' -print`; do \
${INSTALL_DATA} $$file ${PREFIX}/emul/freebsd/$$file; \
done
@${SETENV} PKG_PREFIX="${PREFIX}" ${SH} ${INSTALL_FILE} - POST-INSTALL
diff --git a/emulators/spim/Makefile b/emulators/spim/Makefile
index e5166552f86..abd1e0163a8 100644
--- a/emulators/spim/Makefile
+++ b/emulators/spim/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 1999/07/17 19:24:48 deberg Exp $
+# $NetBSD: Makefile,v 1.5 1999/12/29 01:41:01 wiz Exp $
# FreeBSD Id: Makefile,v 1.5 1997/10/10 06:53:35 obrien Exp
#
@@ -23,12 +23,12 @@ pre-configure:
@${RM} -f ${WRKSRC}/y.tab.*
pre-install:
- @${MKDIR} ${PREFIX}/share/spim && chmod a+rx ${PREFIX}/share/spim
+ @${MKDIR} ${PREFIX}/share/spim && ${CHMOD} a+rx ${PREFIX}/share/spim
post-install:
@${ECHO} "Installing spim/xspim documentation"
@${MKDIR} ${PREFIX}/share/doc/spim \
- && chmod a+rx ${PREFIX}/share/doc/spim
+ && ${CHMOD} a+rx ${PREFIX}/share/doc/spim
${INSTALL_DATA} ${WRKSRC}/Documentation/spim.ps \
${PREFIX}/share/doc/spim
${INSTALL_DATA} ${WRKSRC}/Documentation/cycle.ps \
diff --git a/emulators/vice/Makefile b/emulators/vice/Makefile
index 09889f6a857..0c6b4081c43 100644
--- a/emulators/vice/Makefile
+++ b/emulators/vice/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 1999/11/23 16:26:12 hubertf Exp $
+# $NetBSD: Makefile,v 1.8 1999/12/29 01:41:01 wiz Exp $
DISTNAME= vice-1.0
CATEGORIES= emulators
@@ -8,7 +8,6 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
64gs.390852-01.bin \
kernal.4064.901246-01.bin \
kernal.sx.251104-04.bin
-EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= root@garbled.net
HOMEPAGE= http://www.cs.cmu.edu/~dsladic/vice/vice.html
@@ -18,13 +17,15 @@ NO_CDROM= ${RESTRICTED}
NO_PACKAGE= ${RESTRICTED}
MIRROR_DISTFILE= no
+EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
+
GNU_CONFIGURE= yes
USE_X11= yes
USE_GTEXINFO= yes
# These changes are rather common, so sed instead of patch:
post-patch:
- @for file in `find ${WRKSRC} -name Makefile.in -print` \
+ @for file in `${FIND} ${WRKSRC} -name Makefile.in -print` \
${WRKSRC}/src/arch/unix/archdep.h; do \
${MV} -f $$file $$file.orig && \
${SED} -e s,/lib/vice/doc,/share/doc/vice, \