mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
Fix a couple of problems in the exmh port.
The port bogusly relied on build-time detection of PGP-type programs. This was unneeded since exmh is smart enough to do run-time detection of various PGP versions. Fix this so PGP-type programs installed after exmh will be recognized correctly. [1] Add patch to fix a bug in exmh where threading cleared the unseen sequence. [2] PORTREVISION bump to mark these changes. Reviewed by: Dave Tweten <tweten@nas.nasa.gov> [1] Obtained from: exmh CVS [2]
This commit is contained in:
parent
3988dfe54d
commit
38d5c464ef
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=82488
@ -8,7 +8,7 @@
|
||||
# "+=" and "?=" lines are for sharing this Makefile with japanese/exmh2.
|
||||
PORTNAME= exmh
|
||||
PORTVERSION= 2.6.3
|
||||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES+= mail tk83
|
||||
MASTER_SITES= ftp://ftp.tcl.tk/pub/tcl/%SUBDIR%/
|
||||
MASTER_SITES+= ${MASTER_SITE_SOURCEFORGE}
|
||||
|
20
mail/exmh2/files/patch-thread.tcl
Normal file
20
mail/exmh2/files/patch-thread.tcl
Normal file
@ -0,0 +1,20 @@
|
||||
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
|
@ -40,21 +40,10 @@ if [ -d ${PREFIX}/share/faces ]; then
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -f ${PREFIX}/bin/gpg ]; then
|
||||
GPG=${PREFIX}/bin #bindir
|
||||
fi
|
||||
|
||||
if [ -f ${PREFIX}/bin/pgp ]; then
|
||||
PGP=${PREFIX}/bin #bindir
|
||||
fi
|
||||
|
||||
if [ -f ${PREFIX}/bin/pgp5 ]; then
|
||||
PGP5=${PREFIX}/bin #bindir
|
||||
fi
|
||||
|
||||
if [ -f ${PREFIX}/bin/pgp ]; then
|
||||
PGP6=${PREFIX}/bin #bindir
|
||||
fi
|
||||
GPG=${PREFIX}/bin #bindir
|
||||
PGP=${PREFIX}/bin #bindir
|
||||
PGP5=${PREFIX}/bin #bindir
|
||||
PGP6=${PREFIX}/bin #bindir
|
||||
|
||||
if [ -f ${PREFIX}/bin/glimpse ]; then
|
||||
GLIMPSE=${PREFIX}/bin #bindir
|
||||
|
Loading…
Reference in New Issue
Block a user