Date: Tue, 9 Mar 2021 20:51:51 +0000 (UTC) From: Cy Schubert <cy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r567957 - head/mail/exmh2 Message-ID: <202103092051.129KppoV065500@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cy Date: Tue Mar 9 20:51:51 2021 New Revision: 567957 URL: https://svnweb.freebsd.org/changeset/ports/567957 Log: mail/exmh2: require tk 8.7 to avoid no such variable error tk 8.6 produces the following error while 8.7 works: can't read "state(tag)": no such variable while executing "string compare $value $state(tag)" (procedure "TextUndoTagAddProc" line 10) invoked from within "TextUndoTagAddProc state .msgframe.msg.t tagoff link 2200.35" MFH: 2021Q1 Modified: head/mail/exmh2/Makefile (contents, props changed) Modified: head/mail/exmh2/Makefile ============================================================================== --- head/mail/exmh2/Makefile Tue Mar 9 20:50:12 2021 (r567956) +++ head/mail/exmh2/Makefile Tue Mar 9 20:51:51 2021 (r567957) @@ -5,6 +5,7 @@ PORTNAME= exmh PORTVERSION= 2.9.0 +PORTREVISION= 1 CATEGORIES+= mail tk # XXX: Standard SF fails with a hung download MASTER_SITES= https://sourceforge.net/projects/${PORTNAME}/files/${PORTNAME}/${PORTVERSION}/ @@ -18,7 +19,7 @@ BUILD_DEPENDS= tclsh8.0jp:japanese/tcl80 WISH= wish8.0jp TCLSH= tclsh8.0jp .else -USES= tk +USES= tk:87 .endif # exmh is pretty useless without this, but it's not needed to build it.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103092051.129KppoV065500>