diff options
author | dinoex <dinoex@FreeBSD.org> | 2003-08-16 02:44:27 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2003-08-16 02:44:27 +0800 |
commit | 14fe54027c8219ee10e2f7f9622844cb9b448ed4 (patch) | |
tree | 117ef284af8befc1a8a80c51c378087c66e1cb37 /irc/zircon/Makefile | |
parent | 4921b3c7cccecf4b7002651540a6bca2d06ddad1 (diff) | |
download | freebsd-ports-gnome-14fe54027c8219ee10e2f7f9622844cb9b448ed4.tar.gz freebsd-ports-gnome-14fe54027c8219ee10e2f7f9622844cb9b448ed4.tar.zst freebsd-ports-gnome-14fe54027c8219ee10e2f7f9622844cb9b448ed4.zip |
- Force binding with wish8.3, even if wish8.4 is installed.
- install and build, even if no DISPLAY is running
This will allow packages to be build on bento
Diffstat (limited to 'irc/zircon/Makefile')
-rw-r--r-- | irc/zircon/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/irc/zircon/Makefile b/irc/zircon/Makefile index 32659183b207..54e457ae5305 100644 --- a/irc/zircon/Makefile +++ b/irc/zircon/Makefile @@ -22,13 +22,17 @@ RUN_DEPENDS= wish8.3:${PORTSDIR}/x11-toolkits/tk83 NO_BUILD= yes USE_REINPLACE= yes .if defined(ZIRCON_WITH_TCL84) || defined(ZIRCON_WITH_TK84) -TCL_INCLUDE= ${LOCALBASE}/include/tcl8.4 +TCL_VER= 8.4 .else -TCL_INCLUDE= ${LOCALBASE}/include/tcl8.3 +TCL_VER= 8.3 .endif do-configure: - ${REINPLACE_CMD} -e 's=%%TCL_INCLUDE%%=${TCL_INCLUDE}=' \ + ${REINPLACE_CMD} -e 's=%%WISH%%=wish${TCL_VER}=' \ + -e 's=%%TCLSH%%=tclsh${TCL_VER}=' \ + ${WRKSRC}/installZircon + ${REINPLACE_CMD} -e 's=%%WISH%%=wish${TCL_VER}=' \ + -e 's=%%TCL_INCLUDE%%=${LOCALBASE}/include/tcl${TCL_VER}=' \ ${WRKSRC}/installer/unix.tcl do-install: |