diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-09-29 08:07:47 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-09-29 08:07:47 +0000 |
commit | e192667b15b8f0e87286ddfcfc7298e1d9342dea (patch) | |
tree | 0dc4a3b30902b2f47b536be78e219b125441c267 /graphics | |
parent | 21235fc28e9a76b3ba4673f6fc9c0313cb4e1727 (diff) | |
download | FreeBSD-ports-e192667b15b8f0e87286ddfcfc7298e1d9342dea.zip FreeBSD-ports-e192667b15b8f0e87286ddfcfc7298e1d9342dea.tar.gz |
find->${FIND},xargs->${XARGS}
PR: 40791
Submitted by: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/EZWGL/Makefile | 10 | ||||
-rw-r--r-- | graphics/ecg2png/Makefile | 2 | ||||
-rw-r--r-- | graphics/mpegedit/Makefile | 2 | ||||
-rw-r--r-- | graphics/ray++/Makefile | 2 | ||||
-rw-r--r-- | graphics/urt/Makefile | 6 |
5 files changed, 11 insertions, 11 deletions
diff --git a/graphics/EZWGL/Makefile b/graphics/EZWGL/Makefile index 197ecc5..5ed236a 100644 --- a/graphics/EZWGL/Makefile +++ b/graphics/EZWGL/Makefile @@ -27,7 +27,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ .include "${FILESDIR}/manpages" post-extract: - find ${WRKSRC} -name CVS | xargs ${RM} -rf + ${FIND} ${WRKSRC} -name CVS | ${XARGS} ${RM} -rf post-install: .for file in ${MAN3} @@ -38,14 +38,14 @@ post-install: ${TAR} -C ${PREFIX}/share/examples/EZ --unlink -xf - ${TAR} -C ${WRKSRC} --exclude 'Makefile.in' -cf - demos | \ ${TAR} -C ${PREFIX}/share/examples/EZ --unlink -xf - - find ${PREFIX}/share/examples/EZ | xargs ${CHOWN} ${SHAREOWN}:${SHAREGRP} - find ${PREFIX}/share/examples/EZ -type f | xargs ${CHMOD} ${SHAREMODE} + ${FIND} ${PREFIX}/share/examples/EZ | ${XARGS} ${CHOWN} ${SHAREOWN}:${SHAREGRP} + ${FIND} ${PREFIX}/share/examples/EZ -type f | ${XARGS} ${CHMOD} ${SHAREMODE} .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/EZ ${TAR} -C ${WRKSRC}/doc --exclude 'misc' -cf - html ps | \ ${TAR} -C ${PREFIX}/share/doc/EZ --unlink -xf - - find ${PREFIX}/share/doc/EZ | xargs ${CHOWN} ${SHAREOWN}:${SHAREGRP} - find ${PREFIX}/share/doc/EZ -type f | xargs ${CHMOD} ${SHAREMODE} + ${FIND} ${PREFIX}/share/doc/EZ | ${XARGS} ${CHOWN} ${SHAREOWN}:${SHAREGRP} + ${FIND} ${PREFIX}/share/doc/EZ -type f | ${XARGS} ${CHMOD} ${SHAREMODE} .endif .include <bsd.port.post.mk> diff --git a/graphics/ecg2png/Makefile b/graphics/ecg2png/Makefile index e0d5582..9ec07e1 100644 --- a/graphics/ecg2png/Makefile +++ b/graphics/ecg2png/Makefile @@ -25,7 +25,7 @@ QTCPPFLAGS+= -I${LOCALBASE}/include/gd pre-patch: @${REINPLACE_CMD} -e 's|-lqt$$|-l${QTNAME}|g' ${WRKSRC}/ecg2png/Makefile.in - @find ${WRKSRC} -name '*.cpp' | xargs ${REINPLACE_CMD} -e \ + @${FIND} ${WRKSRC} -name '*.cpp' | ${XARGS} ${REINPLACE_CMD} -e \ 's|#include <qimageio.h>||g' @${CHMOD} ${BINMODE} ${WRKSRC}/missing diff --git a/graphics/mpegedit/Makefile b/graphics/mpegedit/Makefile index 9957d24..c1d8127 100644 --- a/graphics/mpegedit/Makefile +++ b/graphics/mpegedit/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= netpbm.1:${PORTSDIR}/graphics/netpbm USE_X_PREFIX= yes post-extract: - @find ${WRKSRC} -name '.depend' | xargs ${RM} -f + @${FIND} ${WRKSRC} -name '.depend' | ${XARGS} ${RM} -f do-install: @${INSTALL_PROGRAM} ${WRKSRC}/mpeg_edit ${PREFIX}/bin diff --git a/graphics/ray++/Makefile b/graphics/ray++/Makefile index ae6201d..49172c7 100644 --- a/graphics/ray++/Makefile +++ b/graphics/ray++/Makefile @@ -21,7 +21,7 @@ INSTALLS_SHLIB= yes do-install: @(cd ${WRKSRC} ; \ ${INSTALL_DATA} ray++.so ${PREFIX}/lib ; \ - find * -name "*.h" | cpio -pdum ${PREFIX}/include/${PORTNAME} ; \ + ${FIND} * -name "*.h" | cpio -pdum ${PREFIX}/include/${PORTNAME} ; \ ${CHMOD} -R 755 ${PREFIX}/include/${PORTNAME} ) .include <bsd.port.mk> diff --git a/graphics/urt/Makefile b/graphics/urt/Makefile index bb87d06..39fea19 100644 --- a/graphics/urt/Makefile +++ b/graphics/urt/Makefile @@ -64,14 +64,14 @@ post-install: cd ${PREFIX}/share/doc/urt; \ ${TAR} xf $(DISTDIR)/urt-doc.tar; \ cd doc; \ - find -d . | cpio -dump ..; \ + ${FIND} -d . | cpio -dump ..; \ cd ..; \ ${RM} -rf doc; \ cd ${PREFIX}/share/examples/urt; \ ${TAR} xf $(DISTDIR)/urt-img.tar; \ ${CHOWN} -R root:wheel . ; \ - find . -type d -exec ${CHMOD} 755 '{}' \; ; \ - find . -type f -exec ${CHMOD} 644 '{}' \; + ${FIND} . -type d -exec ${CHMOD} 755 '{}' \; ; \ + ${FIND} . -type f -exec ${CHMOD} 644 '{}' \; .endif .include <bsd.port.mk> |