diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1999-02-03 11:12:01 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1999-02-03 11:12:01 +0000 |
commit | 5114e2637e2224ea9b0e0ea4b315bc38370ccf04 (patch) | |
tree | 414dd9b31f0192eb7d0054b2463c2eed8afd25b4 /graphics/urt | |
parent | (1) ${MASTER_SITE_SUBDIR} is now a list, and ${MASTER_SITE_*} macros (diff) |
Adjust port Makefiles to new EXTRACT_* variable defaults. See log of
bsd.port.mk rev. 1.304 for details on the change.
The fix here is one of the following.
(1) Define USE_BZIP2 instead of BUILD_DEPENDS on bzip2 and redefining
EXTRACT_* commands.
(2) Change ${EXTRACT_CMD} to ${TAR} when the command is obviously
calling the "tar" command (i.e., arguments like "-xzf" are spelled
out).
(3) If ${EXTRACT_CMD} is called directly with ${EXTRACT_BEFORE_ARGS},
add ${EXTRACT_AFTER_ARGS} to the command line as well.
(4) If any of EXTRACT_CMD, EXTRACT_BEFORE_ARGS or EXTRACT_AFTER_ARGS
is set, define the other two too.
Diffstat (limited to 'graphics/urt')
-rw-r--r-- | graphics/urt/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/urt/Makefile b/graphics/urt/Makefile index dbfa03676709..081f7234fa39 100644 --- a/graphics/urt/Makefile +++ b/graphics/urt/Makefile @@ -3,7 +3,7 @@ # Date created: Jan 5 1997 # Whom: cfs@ing.puc.cl (original) # -# $Id: Makefile,v 1.11 1998/11/25 09:01:20 asami Exp $ +# $Id: Makefile,v 1.12 1999/01/10 18:11:45 steve Exp $ # DISTNAME= urt @@ -61,13 +61,13 @@ post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/urt ${PREFIX}/share/examples/urt cd ${PREFIX}/share/doc/urt; \ - ${EXTRACT_CMD} xf $(DISTDIR)/urt-doc.tar; \ + ${TAR} 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; \ + ${TAR} xf $(DISTDIR)/urt-img.tar; \ chown -R root:wheel . ; \ find . -type d -exec chmod 775 '{}' \; ; \ find . -type f -exec chmod 664 '{}' \; |