diff options
author | Mikhail Teterin <mi@FreeBSD.org> | 2003-02-13 20:22:56 +0000 |
---|---|---|
committer | Mikhail Teterin <mi@FreeBSD.org> | 2003-02-13 20:22:56 +0000 |
commit | b5a258075c5aba6045f047870167527866ad7032 (patch) | |
tree | d618f2b174473a7f69fb8aa1dd93037b069409ff /devel/tkp4 | |
parent | Remove attempt at installing the 1.4.1 BIOS, which was no longer needed with (diff) |
Unperlify -- my part of the PR
PR: ports/48253
Submitted by: Simon 'portlint' Schubert
Notes
Notes:
svn path=/head/; revision=75475
Diffstat (limited to 'devel/tkp4')
-rw-r--r-- | devel/tkp4/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/devel/tkp4/Makefile b/devel/tkp4/Makefile index 833620338bca..6f6c951f3905 100644 --- a/devel/tkp4/Makefile +++ b/devel/tkp4/Makefile @@ -16,6 +16,8 @@ RUN_DEPENDS= wish8.3:${PORTSDIR}/x11-toolkits/tk83 \ p4:${PORTSDIR}/devel/perforce NO_BUILD= yes +USE_REINPLACE= yes +REINPLACE_ARGS= -i "" do-install: ${MKDIR} ${DATADIR} @@ -28,9 +30,10 @@ do-install: .include <bsd.port.pre.mk> post-patch: - ${PERL} -pi -e 's|wish|wish8.3|' ${WRKSRC}/tkp4 + ${REINPLACE_CMD} -e 's|wish|wish8.3|' ${WRKSRC}/tkp4 .if defined(PREFIX) && ${PREFIX} != "/usr/local" - ${PERL} -pi -e 's|/usr/local|${PREFIX}|g' `${GREP} -Fl /usr/local ${WRKSRC}/*` + ${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|g' \ + `${GREP} -Fl /usr/local ${WRKSRC}/*` .endif .include <bsd.port.post.mk> |