diff options
author | kim <kim@pkgsrc.org> | 2002-01-26 17:19:44 +0000 |
---|---|---|
committer | kim <kim@pkgsrc.org> | 2002-01-26 17:19:44 +0000 |
commit | d01ef1b8f13bbc1cdb6443d8bef92fbfa8762dc1 (patch) | |
tree | c28c9351ceb55c8c362bcbc81e1a26b1e3708712 /mail | |
parent | 347bab6e43685d575a0ead82a9a901cbde13f91e (diff) | |
download | pkgsrc-d01ef1b8f13bbc1cdb6443d8bef92fbfa8762dc1.tar.gz |
Remove patch-cc -- it is no longer valid, but instead now breaks
displaying MIME attachments of type message/* (e.g. message/rfc822).
This is actually a long-standing bug in this package...
Diffstat (limited to 'mail')
-rw-r--r-- | mail/nmh/Makefile | 4 | ||||
-rw-r--r-- | mail/nmh/distinfo | 3 | ||||
-rw-r--r-- | mail/nmh/patches/patch-cc | 20 |
3 files changed, 3 insertions, 24 deletions
diff --git a/mail/nmh/Makefile b/mail/nmh/Makefile index df27b510dc7..9f4b0110e36 100644 --- a/mail/nmh/Makefile +++ b/mail/nmh/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.44 2001/11/29 01:12:40 hubertf Exp $ +# $NetBSD: Makefile,v 1.45 2002/01/26 17:19:44 kim Exp $ # FreeBSD Id: Makefile,v 1.2 1997/08/04 06:51:28 markm Exp # DISTNAME= nmh-1.0.4 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= mail MASTER_SITES= ftp://ftp.mhost.com/pub/nmh/ \ ftp://ftp.gw.com/pub/unix/mail/mh/nmh/ diff --git a/mail/nmh/distinfo b/mail/nmh/distinfo index 0f040d7e980..fe0626b40a0 100644 --- a/mail/nmh/distinfo +++ b/mail/nmh/distinfo @@ -1,8 +1,7 @@ -$NetBSD: distinfo,v 1.3 2001/09/21 17:07:12 sommerfeld Exp $ +$NetBSD: distinfo,v 1.4 2002/01/26 17:19:44 kim Exp $ SHA1 (nmh-1.0.4.tar.gz) = 71441a884d898db2fd9184a92e663682536425f5 Size (nmh-1.0.4.tar.gz) = 683215 bytes SHA1 (patch-ca) = 43aaf15dc5d07de03ff912894d7128d03eb1889d SHA1 (patch-cb) = 6e498988c08e393fdd4e8e27f2ff6ce457e2c803 -SHA1 (patch-cc) = c25e9d2f40cd04f5a3d1964f3f5b72aab461dcae SHA1 (patch-cd) = 13901025ef3a1b7fc07d0c13f8e1aef3e9bee2d6 diff --git a/mail/nmh/patches/patch-cc b/mail/nmh/patches/patch-cc deleted file mode 100644 index 4b1f1624afd..00000000000 --- a/mail/nmh/patches/patch-cc +++ /dev/null @@ -1,20 +0,0 @@ -$NetBSD: patch-cc,v 1.2 2000/03/02 00:23:15 hubertf Exp $ - ---- uip/show.c.orig Sun Sep 12 15:50:12 1999 -+++ uip/show.c Thu Mar 2 00:47:34 2000 -@@ -326,6 +326,15 @@ - vec[++vecp] = NULL; - } - -+ /* If the "proc" is "mhshow", add "-file" if showing file or draft. -+ * Ruud de Rooij <ruud@debian.org> Wed, 24 Feb 1999 19:31:40 +0100 -+ */ -+ if (strcmp (r1bindex (proc, '/'), "mhshow") == 0 && (draftsw || file) ) { -+ vec[vecp] = vec[vecp - 1]; -+ vec[vecp - 1] = "-file"; -+ vec[++vecp] = NULL; -+ } -+ - /* - * If "proc" is mhl, then run it internally - * rather than exec'ing it. |