1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-13 07:34:50 +00:00

x11-toolkits/tk86: fix regression, bump PORTREVISION

See https://sourceforge.net/p/tcl/mailman/message/37197715/
This commit is contained in:
Pietro Cerutti 2021-01-15 08:14:06 +00:00
parent 65f0a172ec
commit 7693770804
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=561624
2 changed files with 12 additions and 1 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= tk
DISTVERSION= ${TK_VERSION}${TK_RC}
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= x11-toolkits
MASTER_SITES= SF/tcl/Tcl/${TK_VERSION}
PKGNAMESUFFIX= ${SHORT_TK_VER}

View File

@ -0,0 +1,11 @@
--- ../library/ttk/utils.tcl.orig 2021-01-15 08:02:56.539276000 +0000
+++ ../library/ttk/utils.tcl 2021-01-15 08:03:38.228900000 +0000
@@ -305,7 +305,7 @@
bind $bindtag <MouseWheel> "$callback \[expr {-%D}\]"
bind $bindtag <Option-MouseWheel> "$callback \[expr {-10*%D}\]"
} else {
- bind $bindtag <MouseWheel> "$callback \[expr {-%D/120)}\]"
+ bind $bindtag <MouseWheel> "$callback \[expr {-%D/120}\]"
}
}