summaryrefslogtreecommitdiff
path: root/math/metis
diff options
context:
space:
mode:
authorjtb <jtb@pkgsrc.org>2001-04-28 23:59:17 +0000
committerjtb <jtb@pkgsrc.org>2001-04-28 23:59:17 +0000
commitb97c41dde34f14e03b5985a3cf6a23aee3e7b3b4 (patch)
tree97228d7da600e4c7e4800096060fa118f9f09a60 /math/metis
parenta1f837e37cee66bfce1e9c82c23e458c36a64d22 (diff)
downloadpkgsrc-b97c41dde34f14e03b5985a3cf6a23aee3e7b3b4.tar.gz
Remove redundant echoing, quoting, and input redirection to sed.
Diffstat (limited to 'math/metis')
-rw-r--r--math/metis/Makefile22
1 files changed, 7 insertions, 15 deletions
diff --git a/math/metis/Makefile b/math/metis/Makefile
index 04a5a13694c..1dbd1d82758 100644
--- a/math/metis/Makefile
+++ b/math/metis/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2001/04/14 21:43:53 jtb Exp $
+# $NetBSD: Makefile,v 1.4 2001/04/28 23:59:20 jtb Exp $
DISTNAME= metis-4.0
CATEGORIES= math
@@ -11,25 +11,17 @@ COMMENT= Unstructured graph partitioning and sparse matrix ordering system
ALL_TARGET= default
do-install:
- @for f in graphchk kmetis mesh2dual mesh2nodal oemetis onmetis \
- partdmesh partnmesh pmetis; do \
- i="${INSTALL_PROGRAM} ${WRKSRC}/$$f ${PREFIX}/bin/"; \
- ${ECHO} $$i; $$i; \
- done
+ cd ${WRKSRC} && ${INSTALL_PROGRAM} graphchk kmetis mesh2dual \
+ mesh2nodal oemetis onmetis partdmesh partnmesh pmetis \
+ ${PREFIX}/bin/
${INSTALL_DATA} ${WRKSRC}/libmetis.a ${PREFIX}/lib
${INSTALL_DATA_DIR} ${PREFIX}/include/metis
- @for f in ${WRKSRC}/Lib/*.h; do \
- i="${INSTALL_DATA} $$f ${PREFIX}/include/metis/"; \
- ${ECHO} $$i; $$i; \
- done
+ ${INSTALL_DATA} ${WRKSRC}/Lib/*.h ${PREFIX}/include/metis/
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/metis
${INSTALL_DATA} ${WRKSRC}/Doc/manual.ps ${PREFIX}/share/doc/metis
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/metis
- @for f in 0README 4elt.graph metis.mesh test.mgraph; do \
- i="${INSTALL_DATA} ${WRKSRC}/Graphs/$$f \
- ${PREFIX}/share/examples/metis/"; \
- ${ECHO} $$i; $$i; \
- done
+ cd ${WRKSRC}/Graphs && ${INSTALL_DATA} 0README 4elt.graph \
+ metis.mesh test.mgraph ${PREFIX}/share/examples/metis/
${INSTALL_DATA} ${WRKSRC}/Test/mtest.c ${PREFIX}/share/examples/metis
.include "../../mk/bsd.pkg.mk"