The devel/ports Makefile is hardwired to tcl/tk version 8.4 rather than using the default tcl/tk version defined in bsd.tcl.mk. Fix: Apply attached patch: --- textproc/tkdiff/Makefile.old 2010-04-18 12:53:30.000000000 +1000 +++ textproc/tkdiff/Makefile 2010-04-18 12:54:01.000000000 +1000 @@ -14,14 +14,14 @@ MAINTAINER= kevlo@FreeBSD.org COMMENT= A Tk frontend for diff(1) -RUN_DEPENDS= wish8.4:${PORTSDIR}/x11-toolkits/tk84 +USE_TK= yes NO_BUILD= yes PLIST_FILES= bin/tkdiff post-patch: - @${REINPLACE_CMD} -e 's|wish|wish8.4|' ${WRKSRC}/tkdiff + @${REINPLACE_CMD} -e 's|wish|${WISH}|' ${WRKSRC}/tkdiff do-install: @${INSTALL_SCRIPT} ${WRKSRC}/tkdiff ${PREFIX}/bin Patch attached with submission follows: How-To-Repeat: cd /usr/ports/textproc/tkdiff && make
Responsible Changed From-To: freebsd-ports-bugs->kevlo Fix synopsis and assign.
kevlo 2010-04-19 03:19:44 UTC FreeBSD ports repository Modified files: textproc/tkdiff Makefile Log: Use default tcl/tk version by USE_TK=yes PR: ports/145798 Submitted by: Robert Jenssen <robertjenssen at ozemail dot com dot au> Revision Changes Path 1.14 +3 -3 ports/textproc/tkdiff/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed, thanks.