Upgrade to v2.2, and hand the reigns over to Bruce Mah, who is

also an Exmh developer.

Thanks Bruce!
This commit is contained in:
Mark Murray 2000-10-11 15:58:08 +00:00
parent efad80277b
commit 80393f4b11
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=33709
7 changed files with 22 additions and 9 deletions

View file

@ -7,11 +7,11 @@
# "+=" and "?=" lines are for sharing this Makefile with japanese/exmh2.
PORTNAME= exmh
PORTVERSION= 2.1.1
PORTVERSION= 2.2
CATEGORIES+= mail tk82
MASTER_SITES= ftp://ftp.scriptics.com/pub/tcl/exmh/
MAINTAINER?= markm@FreeBSD.org
MAINTAINER?= bmah@FreeBSD.org
.if defined(JAPANESE_EXMH)
RUN_DEPENDS= wish8.0jp:${PORTSDIR}/japanese/tk80
@ -46,6 +46,7 @@ RUN_DEPENDS+= mmencode:${PORTSDIR}/mail/metamail
# security/gnupg
# security/pgp
# security/pgp5
# security/pgp6
# mail/faces
# audio/rplay

View file

@ -1 +1 @@
MD5 (exmh-2.1.1.tar.gz) = f3c6eedfa5720e236389e22234a57c24
MD5 (exmh-2.2.tar.gz) = 513e824b7eb0bfd1ec76b837b8f74de9

View file

@ -15,9 +15,10 @@ set faces(set,unknown) {domains unknown}
set faces(set,news) {news}
set faces(defaultDomain) !!DOMAIN!!
set faces(suffix) {xpm gif xbm}
set gpg(path) !!GPG!!
set pgp(path) !!PGP!!
set pgp5(path) !!PGP5!!
set pgp(gpg,path) !!GPG!!
set pgp(pgp,path) !!PGP!!
set pgp(pgp5,path) !!PGP5!!
set pgp(pgp6,path) !!PGP6!!
set glimpse(path) !!GLIMPSE!!
set sound(cmd) !!PLAY!!
set exmh(library) !!PREFIX!!/lib/exmh-!!VERSION!!

View file

@ -15,9 +15,10 @@ set faces(set,unknown) {domains unknown}
set faces(set,news) {news}
set faces(defaultDomain) !!DOMAIN!!
set faces(suffix) {xpm gif xbm}
set gpg(path) !!GPG!!
set pgp(path) !!PGP!!
set pgp5(path) !!PGP5!!
set pgp(gpg,path) !!GPG!!
set pgp(pgp,path) !!PGP!!
set pgp(pgp5,path) !!PGP5!!
set pgp(pgp6,path) !!PGP6!!
set glimpse(path) !!GLIMPSE!!
set sound(cmd) !!PLAY!!
set exmh(library) !!PREFIX!!/lib/exmh-!!VERSION!!

View file

@ -21,3 +21,6 @@ IMPORTANT: exmh depends on the TK send facility for its background
processing. With TK 3.3, send now uses xauthority mechanisms by default,
unless you compile TK with -DTK_NO_SECURITY. Generally, this means that
you **MUST** must run xdm to start your Xserver.
WWW: http://www.beedub.com/exmh/

View file

@ -150,6 +150,7 @@ lib/exmh-%%EXMH_VERSION%%/pgpMisc.tcl
lib/exmh-%%EXMH_VERSION%%/pgpOld.tcl
lib/exmh-%%EXMH_VERSION%%/pgpPgp2.tcl
lib/exmh-%%EXMH_VERSION%%/pgpPgp5.tcl
lib/exmh-%%EXMH_VERSION%%/pgpPgp65.tcl
lib/exmh-%%EXMH_VERSION%%/pgpShared.tcl
lib/exmh-%%EXMH_VERSION%%/pgpWWW.tcl
lib/exmh-%%EXMH_VERSION%%/pick.tcl

View file

@ -20,6 +20,7 @@ DOMAIN="{}"
GPG="{}"
PGP="{}"
PGP5="{}"
PGP6="{}"
GLIMPSE="{}"
PLAY="{}"
@ -51,6 +52,10 @@ if [ -f ${PREFIX}/bin/pgp5 ]; then
PGP5=${PREFIX}/bin #bindir
fi
if [ -f ${PREFIX}/bin/pgp ]; then
PGP6=${PREFIX}/bin #bindir
fi
if [ -f ${PREFIX}/bin/glimpse ]; then
GLIMPSE=${PREFIX}/bin #bindir
fi
@ -75,6 +80,7 @@ sed <${FILESDIR}/${CONFIGFILE} \
-e "s+!!GPG!!+${GPG}+g" \
-e "s+!!PGP!!+${PGP}+g" \
-e "s+!!PGP5!!+${PGP5}+g" \
-e "s+!!PGP6!!+${PGP6}+g" \
-e "s+!!GLIMPSE!!+${GLIMPSE}+g" \
-e "s+!!PLAY!!+${PLAY}+g" \
-e "s+!!VERSION!!+${VERSION}+g" \