diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-30 10:19:07 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-30 10:19:07 +0000 |
commit | 750ba0ecd715acdfb3b59db9a28d76c578d74a46 (patch) | |
tree | 61f2c7c8c3e254a4801908a71d4001d15fe277e7 /x11/x3270/Makefile | |
parent | 4eea42bbfa65e39298536844b2328708a0c0a77b (diff) | |
download | ports-750ba0ecd715acdfb3b59db9a28d76c578d74a46.tar.gz ports-750ba0ecd715acdfb3b59db9a28d76c578d74a46.zip |
Notes
Diffstat (limited to 'x11/x3270/Makefile')
-rw-r--r-- | x11/x3270/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11/x3270/Makefile b/x11/x3270/Makefile index 244c262d42c9..1f46e14ce135 100644 --- a/x11/x3270/Makefile +++ b/x11/x3270/Makefile @@ -26,6 +26,7 @@ RUN_DEPENDS= mkfontdir:${PORTSDIR}/x11/XFree86-4-clients WRKSRC= ${WRKDIR}/x3270-3.1.1 MAN1= x3270.1 x3270if.1 x3270-script.1 ibm_hosts.1 MANCOMPRESSED= yes +USE_REINPLACE= yes pre-install: .if !exists(${X11BASE}/lib/X11/fonts/local) @@ -36,4 +37,14 @@ pre-install: @${ECHO} "*********************************************************" .endif +# +# This patch is to make sure that mkversion.sh can be ran on FreeBSD 4-STABLE +# which will get $(CLIENTENVSETUP) in its CC macro. +# +post-configure: + ${REINPLACE_CMD} \ + -e 's,sh \./mkversion\.sh $$(CC),$$(CLIENTENVSETUP) sh ./mkversion.sh %%CC%%,' \ + -e 's,%%CC%%,${CC},' \ + ${WRKSRC}/Makefile + .include <bsd.port.post.mk> |