diff options
author | Tim Bishop <tdb@FreeBSD.org> | 2005-12-11 19:20:01 +0000 |
---|---|---|
committer | Tim Bishop <tdb@FreeBSD.org> | 2005-12-11 19:20:01 +0000 |
commit | 8b10c216cdd5f38ff51c336fdf07014cd031a224 (patch) | |
tree | 6007d57425f253d6d7f4805180c3f74744093157 | |
parent | - Autoindex2 requires php-session. (diff) |
- Respect LOCALBASE/X11BASE
PR: 90232
Submitted by: Soeren Straarup <xride@x12.dk> (maintainer)
Approved by: clement (mentor)
Notes
Notes:
svn path=/head/; revision=150904
-rw-r--r-- | comms/twpsk/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/comms/twpsk/Makefile b/comms/twpsk/Makefile index 8379cd3e6505..120bb7f53e05 100644 --- a/comms/twpsk/Makefile +++ b/comms/twpsk/Makefile @@ -15,7 +15,16 @@ COMMENT= A openmotif X psk31 client USE_XPM= yes USE_MOTIF= yes +USE_REINPLACE= yes MAN1= psk31.1 +FILES_TO_PATCH= Makefile psk31.1 twpskHelp +post-patch: +.for file in ${FILES_TO_PATCH} + @${REINPLACE_CMD} -e \ + 's|/usr/local|${LOCALBASE}|g;s|/usr/X11R6|${X11BASE}|g' \ + ${WRKSRC}/${file} +.endfor + .include <bsd.port.mk> |