summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authormycroft <mycroft@pkgsrc.org>1999-04-05 17:23:01 +0000
committermycroft <mycroft@pkgsrc.org>1999-04-05 17:23:01 +0000
commit03c24fa7fb006eb31d54e4421fbf2dfbc8b01f97 (patch)
tree30a70672f306aff34b48d7ccf48ab2eb79f3cb8f /graphics
parent523d61071dadea4a875723271dc3e60e96bb6b29 (diff)
downloadpkgsrc-03c24fa7fb006eb31d54e4421fbf2dfbc8b01f97.tar.gz
More EXTRACT_CMD fallout.
NOTE: These are not tested!
Diffstat (limited to 'graphics')
-rw-r--r--graphics/urt/Makefile24
1 files changed, 12 insertions, 12 deletions
diff --git a/graphics/urt/Makefile b/graphics/urt/Makefile
index 538b4e2fb5f..59c89ca2c71 100644
--- a/graphics/urt/Makefile
+++ b/graphics/urt/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 1999/03/22 09:38:23 agc Exp $
+# $NetBSD: Makefile,v 1.5 1999/04/05 17:23:02 mycroft Exp $
# FreeBSD Id: Makefile,v 1.6 1998/02/11 08:48:26 tg Exp
#
@@ -29,16 +29,16 @@ ALL_TARGET=
post-install:
${MKDIR} ${PREFIX}/share/doc/urt ${PREFIX}/share/examples/urt
- cd ${PREFIX}/share/doc/urt; \
- ${EXTRACT_CMD} xf ${DISTDIR}/urt-doc.tar; \
- cd doc; \
- find -d . | cpio -dump ..; \
- cd ..; \
- ${RM} -rf doc; \
- cd ${PREFIX}/share/examples/urt; \
- ${EXTRACT_CMD} xf ${DISTDIR}/urt-img.tar; \
- chown -R root:wheel . ; \
- find . -type d -exec chmod 775 '{}' \; ; \
- find . -type f -exec chmod 664 '{}' \;
+ cd ${PREFIX}/share/doc/urt && (\
+ ${GTAR} xf ${DISTDIR}/urt-doc.tar; \
+ cd doc; \
+ find -d . | cpio -dump ..; \
+ cd ..; \
+ ${RM} -rf doc)
+ cd ${PREFIX}/share/examples/urt && (\
+ ${GTAR} xf ${DISTDIR}/urt-img.tar; \
+ chown -R root:wheel . ; \
+ find . -type d -exec chmod 775 '{}' \; ; \
+ find . -type f -exec chmod 664 '{}' \;)
.include "../../mk/bsd.pkg.mk"