diff --git a/mail/exmh2/Makefile b/mail/exmh2/Makefile index 4f7371286df0..a8533f5ef6c4 100644 --- a/mail/exmh2/Makefile +++ b/mail/exmh2/Makefile @@ -1,64 +1,64 @@ # Created by: Peter Wemm # "+=" and "?=" lines are for sharing this Makefile with japanese/exmh2. PORTNAME= exmh PORTVERSION= 2.9.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES+= mail tk # XXX: Standard SF fails with a hung download MASTER_SITES= https://sourceforge.net/projects/${PORTNAME}/files/${PORTNAME}/${PORTVERSION}/ MAINTAINER?= cy@FreeBSD.org COMMENT?= X11/TK based mail reader front end to MH .if defined(JAPANESE_EXMH) RUN_DEPENDS= wish8.0jp:japanese/tk80 BUILD_DEPENDS= tclsh8.0jp:japanese/tcl80 WISH= wish8.0jp TCLSH= tclsh8.0jp .else USES= cpe tk:87 .endif # exmh is pretty useless without this, but it's not needed to build it. .if defined(JAPANESE_EXMH) RUN_DEPENDS+= repl:japanese/mh .else RUN_DEPENDS+= repl:mail/nmh SCRIPTS_ENV+= USE_NMH=YES .endif # full mime support needs mmencode/mmdecode from metamail RUN_DEPENDS+= mmencode:mail/metamail # Additionally, exmh will use the following ports if present: # lang/expect # textproc/glimpse # security/gnupg # security/pgp # security/pgp5 # mail/faces # audio/rplay PLIST_SUB= EXMH_VERSION=${PORTVERSION} NO_ARCH= yes .if defined(JAPANESE_EXMH) do-build: @cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} TCLSH=${TCLSH} \ WISH=${PREFIX}/bin/${WISH} WRKSRC=${WRKSRC} \ ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/build .else do-build: @cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} TCLSH=${TCLSH} \ WISH=${WISH} WRKSRC=${WRKSRC} \ ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/build .endif do-install: @cd ${WRKSRC} && ${SETENV} PREFIX=${STAGEDIR}${PREFIX} \ WRKSRC=${WRKSRC} ${SH} ${SCRIPTDIR}/install .include diff --git a/mail/exmh2/files/patch-lib_exwin.tcl b/mail/exmh2/files/patch-lib_exwin.tcl new file mode 100644 index 000000000000..cb6639714706 --- /dev/null +++ b/mail/exmh2/files/patch-lib_exwin.tcl @@ -0,0 +1,28 @@ +--- lib/exwin.tcl.orig 2017-11-09 20:42:24.000000000 -0800 ++++ lib/exwin.tcl 2021-08-30 21:28:25.291533000 -0700 +@@ -101,12 +101,19 @@ + } + + proc mscroll {bindtag num} { +- bind $bindtag [list %W yview scroll $num units] +- bind $bindtag [list %W yview scroll -$num units] +- bind $bindtag [list %W yview scroll 1 units] +- bind $bindtag [list %W yview scroll -1 units] +- bind $bindtag [list %W yview scroll 1 pages] +- bind $bindtag [list %W yview scroll -1 pages] ++ # Prior to tcl 8.7a5: ++ # bind $bindtag [list %W yview scroll $num units] ++ # bind $bindtag [list %W yview scroll -$num units] ++ # bind $bindtag [list %W yview scroll 1 units] ++ # bind $bindtag [list %W yview scroll -1 units] ++ # bind $bindtag [list %W yview scroll 1 pages] ++ # bind $bindtag [list %W yview scroll -1 pages] ++ ++ # tcl 8.7a5 and later (units can be pixels/units/pages). See ++ # https://core.tcl-lang.org/tips/doc/trunk/tip/474.md for more info: ++ bind $bindtag [ list tk::MouseWheel %W y %D -$num units ] ++ bind $bindtag { tk::MouseWheel %W y %D -1 units } ++ bind $bindtag { tk::MouseWheel %W y %D -1 pages } + } + +