1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

Update to exmh-2.7.0.

This release mostly consists of 15 months of bugfixes (some of which
were already in the prior exmh-2.6.3_3 port).  One new feature is a
spam filter wrapper ("Bayesian Spam Filter" in the new spiffy
preferences dialog).

Drop maintainership; I'm using IMAP-based mailers now.
This commit is contained in:
Bruce A. Mah 2004-06-24 04:20:53 +00:00
parent 6ff0c44a8a
commit ceb54509f4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=112098
7 changed files with 5 additions and 113 deletions

View File

@ -7,14 +7,13 @@
# "+=" and "?=" lines are for sharing this Makefile with japanese/exmh2.
PORTNAME= exmh
PORTVERSION= 2.6.3
PORTREVISION= 3
PORTVERSION= 2.7.0
CATEGORIES+= mail tk84
MASTER_SITES= ftp://ftp.tcl.tk/pub/tcl/%SUBDIR%/
MASTER_SITES+= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER?= bmah@FreeBSD.org
MAINTAINER?= ports@FreeBSD.org
COMMENT?= X11/TK based mail reader front end to MH
.if defined(JAPANESE_EXMH)

View File

@ -1,2 +1,2 @@
MD5 (exmh-2.6.3.tar.gz) = 5b04d70b7f827f4e520d8b68b28b3efe
SIZE (exmh-2.6.3.tar.gz) = 910556
MD5 (exmh-2.7.0.tar.gz) = 513f6cd11cbb0f35ee179ebe1a1475a8
SIZE (exmh-2.7.0.tar.gz) = 1061945

View File

@ -1,15 +0,0 @@
Index: lib/pgpBase.tcl
===================================================================
RCS file: /cvsroot/exmh/exmh/lib/pgpBase.tcl,v
retrieving revision 1.7
retrieving revision 1.8
diff -r1.7 -r1.8
8a9,12
> # Revision 1.8 2003/05/20 03:43:30 welch
> # pgpPgp65.tcl added version check improvement for PGP 6.5 (Neil Rickert)
> # (added . - and _ to the pattern, too (kre))
> #
205c209
< set pgp(pgp6,pat_Version) "Version:\[ \t\]*6\.5.*"
---
> set pgp(pgp6,pat_Version) "Version:\[ \t-._A-Za-z\]*6\.5.*"

View File

@ -1,17 +0,0 @@
Index: lib/pgpPgp65.tcl
===================================================================
RCS file: /cvsroot/exmh/exmh/lib/pgpPgp65.tcl,v
retrieving revision 1.5
retrieving revision 1.6
diff -r1.5 -r1.6
3a4,8
> # Revision 1.6 2003/05/20 03:22:57 welch
> # pgpPgp65.tcl - Added +compatible=off to batchmode flags (Neil Rickert)
> # preferences.tcl - In the toplevel display,
> # changed row of unsorted buttons to a sorted listbox
> #
71c76,77
< set pgp(pgp6,flags_batch) {+armorlines=0 "+comment=$pgp(pgp6,comment)" +batchmode=on +verbose=0 +pager=cat}
---
> # +compatible=off contributed by Neil Rickert
> set pgp(pgp6,flags_batch) {+armorlines=0 "+comment=$pgp(pgp6,comment)" +batchmode=on +compatible=off +verbose=0 +pager=cat}

View File

@ -1,56 +0,0 @@
Index: lib/preferences.tcl
===================================================================
RCS file: /cvsroot/exmh/exmh/lib/preferences.tcl,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- lib/preferences.tcl 18 Apr 2000 15:08:17 -0000 1.10
+++ lib/preferences.tcl 20 May 2003 03:22:57 -0000 1.11
@@ -309,6 +309,28 @@
set maxWidth $len
}
}
+ FontWidget listbox $body.listbox \
+ -exportselection 0 \
+ -selectmode single \
+ -width $maxWidth \
+ -yscrollcommand "$body.scrollbar set"
+
+ scrollbar $body.scrollbar \
+ -command "$body.listbox yview"
+
+ $body.listbox insert end "The Top Ten"
+ foreach x [lsort [concat $pref(panes) Fonts]] {
+ if {$x != "The TopTen"} {
+ $body.listbox insert end $x
+ }
+ }
+ bind $body.listbox <Button-1> {PreferencesListboxHit %W %y}
+
+ pack $body.scrollbar -side right -fill y
+ pack $body.listbox -side left -fill both -expand true
+
+if {0} {
+ # Old Button List
Widget_AddBut $body font Fonts Font_Dialog {top}
$body.font configure -width $maxWidth
set i 0
@@ -318,8 +340,18 @@
$body.but$i configure -width $maxWidth
incr i
}
+}
+
wm protocol .pref WM_DELETE_WINDOW PreferencesDelete
}
+}
+proc PreferencesListboxHit {listbox y} {
+ set id [$listbox get @0,$y]
+ if {$id == "Fonts"} {
+ Font_Dialog
+ } else {
+ PreferencesSectionDialog $id
+ }
}
proc PreferencesSectionDialog { id } {

View File

@ -1,20 +0,0 @@
Index: lib/thread.tcl
===================================================================
RCS file: /cvsroot/exmh/exmh/lib/thread.tcl,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- lib/thread.tcl 18 Feb 2003 06:50:43 -0000 1.8
+++ lib/thread.tcl 8 Apr 2003 17:44:37 -0000 1.9
@@ -251,8 +251,9 @@
Exmh_Status "folder incorrectly threaded. line number mismatch" warn
}
- Seq_Forget $folder $mhProfile(unseen-sequence)
- Ftoc_ShowSequence $mhProfile(unseen-sequence)
+# Seq_Forget $folder $mhProfile(unseen-sequence)
+# Ftoc_ShowSequence $mhProfile(unseen-sequence)
+ Ftoc_ShowSequences
if {$curmsg != {}} {
set msg(id) $curmsg

View File

@ -37,6 +37,7 @@ lib/exmh-%%EXMH_VERSION%%/bitmaps/send.xbm
lib/exmh-%%EXMH_VERSION%%/bitmaps/sign.xbm
lib/exmh-%%EXMH_VERSION%%/bitmaps/unmark.xbm
lib/exmh-%%EXMH_VERSION%%/bitmaps/write.xbm
lib/exmh-%%EXMH_VERSION%%/bogo.tcl
lib/exmh-%%EXMH_VERSION%%/busy.tcl
lib/exmh-%%EXMH_VERSION%%/buttons.tcl
lib/exmh-%%EXMH_VERSION%%/clink.au