diff options
author | peter <peter@FreeBSD.org> | 1997-07-02 12:59:54 +0800 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-07-02 12:59:54 +0800 |
commit | e5546edd8a61b171d7be7c1ac289afd8be3bde90 (patch) | |
tree | 4c8e403450c2d5e73dfb3ea2585925a98e8431de /mail/exmh2/Makefile | |
parent | 6f2d18c8debe8da742128138e28f7ecb6439046d (diff) | |
download | freebsd-ports-gnome-e5546edd8a61b171d7be7c1ac289afd8be3bde90.tar.gz freebsd-ports-gnome-e5546edd8a61b171d7be7c1ac289afd8be3bde90.tar.zst freebsd-ports-gnome-e5546edd8a61b171d7be7c1ac289afd8be3bde90.zip |
Update exmh-2.0gamma to 2.0delta. There's lots of bug fixes, as well as
things like koi8-r recognition, background news (nntp) processing, ispell
support.
Note that there's a horrible hack here to work around a weakness in
bsd.port.mk. The distributed patches are relative to a subdir of ${WRKSRC}
and bsd.port.mk doesn't seem to allow clean overriding of that to patch.
I appended a second "-d dir" arg to PATCH_DIST_ARGS after the .include
that set up the string with +=. patch seems to use the last instance of
"-d dir" when there are several online (it's a simple parse-time chdir).
Prompted by: pst (who also sent a partial update)
Diffstat (limited to 'mail/exmh2/Makefile')
-rw-r--r-- | mail/exmh2/Makefile | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/mail/exmh2/Makefile b/mail/exmh2/Makefile index 6158c73b0c20..0add4aa589bc 100644 --- a/mail/exmh2/Makefile +++ b/mail/exmh2/Makefile @@ -1,19 +1,32 @@ # New ports collection Makefile for: exmh2 -# Version required: 2.0gamma +# Version required: 2.0delta # Date released: 1 Jan 97 # Whom: Peter Wemm <peter@freebsd.org> # -# $Id: Makefile,v 1.7 1997/02/03 16:27:23 peter Exp $ +# $Id: Makefile,v 1.8 1997/04/20 13:19:17 wosch Exp $ # -DISTNAME= exmh-2.0gamma -PKGNAME= exmh-2.0g +DISTNAME= exmh-2.0delta +PKGNAME= exmh-2.0d CATEGORIES= mail tk41 MASTER_SITES= ftp://ftp.sunlabs.com/pub/tcl/exmh/ EXTRACT_SUFX= .tar.Z +# Note: due to apparent weaknesses in bsd.port.mk, we have to override the +# PATCH_DIST_ARGS variable *after* .include <bsd.port.mk> in order to supply +# second "-d directory" arg to patch (to override the one that's not optional +# and unusable for us here). These patches are relative to the ${WRKSRC}/lib +# subdir, bsd.port.mk can't handle that. +PATCH_SITES= http://www.sunlabs.com/~bwelch/exmh/patches/2.0delta/ +PATCHFILES= getnews.patch ispell.patch addr.patch post.patch \ + fontsel.patch html_get_http.patch sedit.patch \ + html_formtag.patch editor.patch thread.patch \ + pgp.patch mime.patch fcache.patch + MAINTAINER= peter@FreeBSD.org +DIST_SUBDIR= ${PKGNAME} + RUN_DEPENDS= wish4.1:${PORTSDIR}/x11/tk41 WISH= wish4.1 @@ -42,3 +55,5 @@ do-install: WRKSRC=${WRKSRC} ${SCRIPTDIR}/install .include <bsd.port.mk> + +PATCH_DIST_ARGS+= -d ${WRKSRC}/lib |