svn commit: r567957 - head/mail/exmh2

Cy Schubert cy at FreeBSD.org
Tue Mar 9 20:51:52 UTC 2021


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.


More information about the svn-ports-head mailing list