summaryrefslogtreecommitdiff
path: root/mail/mh
diff options
context:
space:
mode:
Diffstat (limited to 'mail/mh')
-rw-r--r--mail/mh/Makefile16
-rw-r--r--mail/mh/distinfo1
-rw-r--r--mail/mh/files/patch-aa31
-rw-r--r--mail/mh/files/patch-ab16
-rw-r--r--mail/mh/files/patch-ac50
-rw-r--r--mail/mh/files/patch-ad216
-rw-r--r--mail/mh/pkg-comment1
-rw-r--r--mail/mh/pkg-descr3
-rw-r--r--mail/mh/pkg-plist118
-rw-r--r--mail/mh/scripts/configure9
10 files changed, 0 insertions, 461 deletions
diff --git a/mail/mh/Makefile b/mail/mh/Makefile
deleted file mode 100644
index 88f1fb160f36..000000000000
--- a/mail/mh/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-# New ports collection makefile for: mh
-# Version required: 6.8.3
-# Date created: Oct 4, 1994
-# Whom: pst
-#
-# $Id: Makefile,v 1.3 1995/04/11 20:28:15 asami Exp $
-#
-
-DISTNAME= mh-6.8.3
-CATEGORIES+= mail
-MASTER_SITES= ftp://ftp.ics.uci.edu/pub/mh/tar/
-EXTRACT_SUFX= .tar.Z
-
-MAINTAINER= markm@FreeBSD.ORG
-
-.include <bsd.port.mk>
diff --git a/mail/mh/distinfo b/mail/mh/distinfo
deleted file mode 100644
index 610e3ea4a923..000000000000
--- a/mail/mh/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (mh-6.8.3.tar.Z) = 70bd6efcdeb3ba9d8a0484098e15b830
diff --git a/mail/mh/files/patch-aa b/mail/mh/files/patch-aa
deleted file mode 100644
index 2819ec54a471..000000000000
--- a/mail/mh/files/patch-aa
+++ /dev/null
@@ -1,31 +0,0 @@
-*** /dev/null Tue Oct 4 16:00:58 1994
---- conf/FreeBSD Tue Oct 4 15:18:03 1994
-***************
-*** 0 ****
---- 1,26 ----
-+ # @(#)$Id: MH,v 1.7 1990/04/06 09:44:31 sources Exp $
-+ # FreeBSD running sendmail
-+
-+ bin /usr/local/bin
-+ etc /usr/local/lib/mh
-+ mandir /usr/local/man
-+ mail /var/mail
-+ chown /usr/sbin/chown
-+ mts sendmail/smtp
-+ cc cc
-+ signal void
-+
-+ # Good options for all MH installations (personal preferences)
-+ options ATHENA DUMB FOLDPROT='"0700"' MHE MHRC RPATHS SBACKUP='"\\043"'
-+
-+ # FreeBSD specific options (for FreeBSD-1.x, remove BSD44)
-+ options BSD42 BSD43 BSD44 WAITINT UNISTD VSPRINTF MORE='"/usr/bin/more"'
-+ options NORUSERPASS DBMPWD POSIX NTOHLSWAP SYS5DIR OVERHEAD
-+ options BIND MIME SENDMTS SMTP WHATNOW ZONEINFO
-+
-+ # If you want POP support, this will help you get started, but feel
-+ # free to customize it.
-+ #pop on
-+ #popdir /usr/local/libexec
-+ #options APOP='"/etc/pop.auth"' MPOP RPOP
-+ #ldoptlibs -lcrypt
diff --git a/mail/mh/files/patch-ab b/mail/mh/files/patch-ab
deleted file mode 100644
index b5d02ae2d62c..000000000000
--- a/mail/mh/files/patch-ab
+++ /dev/null
@@ -1,16 +0,0 @@
-*** folder.c.orig Tue Nov 30 20:01:36 1993
---- uip/folder.c Fri Jul 1 13:11:16 1994
-***************
-*** 551,556 ****
---- 551,561 ----
-
- base = strcmp (name, "./") ? name : name + 2;/* hack */
-
-+ /* short-cut to see if directory has any sub-directories */
-+
-+ if (stat (name, &st) != NOTOK && st.st_nlink == 2)
-+ return;
-+
- if ((dd = opendir (name)) == NULL) {
- admonish (name, "unable to read directory ");
- return;
diff --git a/mail/mh/files/patch-ac b/mail/mh/files/patch-ac
deleted file mode 100644
index 65730405c162..000000000000
--- a/mail/mh/files/patch-ac
+++ /dev/null
@@ -1,50 +0,0 @@
-*** slocal.c.orig Tue Nov 30 20:01:38 1993
---- uip/slocal.c Fri Jul 1 13:09:36 1994
-***************
-*** 173,178 ****
---- 173,180 ----
- NULL
- };
-
-+ static char *rcvstore;
-+
- /* */
-
- extern char **environ;
-***************
-*** 299,304 ****
---- 301,308 ----
-
- /* */
-
-+ rcvstore = getcpy(libpath("rcvstore"));
-+
- if (addr == NULL)
- addr = getusr ();
- if (user == NULL)
-***************
-*** 543,549 ****
---- 547,569 ----
- status = usr_pipe (fd, tmpbuf, "/bin/sh", vec + 2);
- break;
-
-+ case '+':
-+ dofolder:
-+ if (*string == '+')
-+ strcpy(tmpbuf, string);
-+ else
-+ sprintf(tmpbuf, "+%s", string);
-+ vec[2] = "rcvstore";
-+ vec[3] = tmpbuf;
-+ vec[4] = NULL;
-+ if (verbose)
-+ printf("rcvstore %s", vec[3]);
-+ status = usr_pipe(fd, "rcvstore", rcvstore, vec + 2);
-+ break;
-+
- case 'f':
-+ if (uleq(action, "folder"))
-+ goto dofolder;
- if (!uleq (action, "file"))
- continue; /* else fall */
- case '>':
diff --git a/mail/mh/files/patch-ad b/mail/mh/files/patch-ad
deleted file mode 100644
index 9cf2db46f21e..000000000000
--- a/mail/mh/files/patch-ad
+++ /dev/null
@@ -1,216 +0,0 @@
-Received: from freefall.cdrom.com (freefall.cdrom.com [192.216.222.4]) by time.cdrom.com (8.6.9/8.6.9) with ESMTP id LAA01600 for <jkh@time.cdrom.com>; Tue, 27 Dec 1994 11:39:33 -0800
-Received: (from gnats@localhost) by freefall.cdrom.com (8.6.9/8.6.6) id LAA20701; Tue, 27 Dec 1994 11:40:03 -0800
-Date: Tue, 27 Dec 1994 11:40:03 -0800
-Message-Id: <199412271940.LAA20701@freefall.cdrom.com>
-From: Mark Murray <mark@grondar.za>
-Reply-To: Mark Murray <mark@grondar.za>
-To: core@freefall.cdrom.com
-Cc: current@freefall.cdrom.com
-Subject: misc/88: MH has no 'local' shared libraries.
-In-Reply-To: Your message of Tue, 27 Dec 1994 21:34:40 +0200
- <199412271934.VAA13910@grunt.grondar.za>
-
-
->Number: 88
->Category: misc
->Synopsis: MH has no 'local' shared libraries.
->Confidential: no
->Severity: non-critical
->Priority: low
->Responsible: core (FreeBSD core team)
->State: open
->Class: change-request
->Submitter-Id: current-users
->Arrival-Date: Tue Dec 27 11:40:01 1994
->Originator: Mark Murray
->Organization:
-GTA
->Release: FreeBSD 2.1.0-Development i386
->Environment:
-
-I use MH as my mailer of choice (I know, I'm a geek ;-), and I used the
-ports-mail port of MH to compile MH on my -current system.
-
->Description:
-
-I noticed at compile time that MH had not been configured to take
-advantage of the SUN/SYS5 shared libraries (in sbr/), so I did it.
-
->How-To-Repeat:
-
-Compile ports/mail/mh.
-
->Fix:
-
-Please could some kind soul with commit powers commit the following
-as patch-ad in ports-mail/mh/patches? Obviously those already using
-MH will have to re-ldconfig, as the library gets dumped into
-/usr/local/lib/libmh.so.3.2, and MH will break if it can't find this.
-
-------8<--------------patch-ad-------------------------------------------
-*** ../mh-6.8.3.orig/conf/FreeBSD Tue Dec 27 20:36:52 1994
---- conf/FreeBSD Tue Dec 27 19:10:35 1994
-***************
-*** 9,14 ****
---- 9,16 ----
- mts sendmail/smtp
- cc cc
- signal void
-+ sharedlib fbsd
-+ slflags -fpic
-
- # Good options for all MH installations (personal preferences)
- options ATHENA DUMB FOLDPROT='"0700"' MHE MHRC RPATHS SBACKUP='"\\043"'
-*** ../mh-6.8.3.orig/conf/makefiles/sbr Wed Dec 1 06:00:23 1993
---- conf/makefiles/sbr Tue Dec 27 19:01:07 1994
-***************
-*** 123,128 ****
---- 123,131 ----
- @BEGIN: SYS5SHLIB
- (cd shared; ld -G -o ../$@ -h $@.$(SLIBVER) $(OFILES))
- @END: SYS5SHLIB
-+ @BEGIN: FBSDSHLIB
-+ (cd shared; ld -Bshareable -o ../$@ $(OFILES))
-+ @END: FBSDSHLIB
- -@rm -f $@.$(SLIBVER)
- ln $@ $@.$(SLIBVER)
- -@ls -l $@*
-*** ../mh-6.8.3.orig/conf/makefiles/uip Wed Dec 1 06:00:23 1993
---- conf/makefiles/uip Tue Dec 27 19:30:22 1994
-***************
-*** 138,147 ****
- SLIBVER = .@(SLIBVER)
- @END: SUN4SHLIB
- @BEGIN: SHAREDLIB
-! LIBES = ../config/config.o ../sbr/libmh.so ../mts/libmts.a \
-! ../zotnet/libzot.a
- LDLIBES = ../config/config.o -Bdynamic @(SLDFLAG) -lmh$(SLIBVER) \
- ../mts/libmts.a ../zotnet/libzot.a
- LDLIBS = $(LDLIBES) ../config/version.o $(LDOPTLIB)
- @END: SHAREDLIB
- LINT = lint
---- 138,157 ----
- SLIBVER = .@(SLIBVER)
- @END: SUN4SHLIB
- @BEGIN: SHAREDLIB
-! @BEGIN: SUN4SHLIB
-! LDLIBES = ../config/config.o -Bdynamic @(SLDFLAG) -lmh$(SLIBVER) \
-! ../mts/libmts.a ../zotnet/libzot.a
-! @END: SUN4SHLIB
-! @BEGIN: SYS5SHLIB
- LDLIBES = ../config/config.o -Bdynamic @(SLDFLAG) -lmh$(SLIBVER) \
- ../mts/libmts.a ../zotnet/libzot.a
-+ @END: SYS5SHLIB
-+ @BEGIN: FBSDSHLIB
-+ LDLIBES = ../config/config.o @(SLDFLAG) -lmh$(SLIBVER) \
-+ ../mts/libmts.a ../zotnet/libzot.a
-+ @END: FBSDSHLIB
-+ LIBES = ../config/config.o ../sbr/libmh.so ../mts/libmts.a \
-+ ../zotnet/libzot.a
- LDLIBS = $(LDLIBES) ../config/version.o $(LDOPTLIB)
- @END: SHAREDLIB
- LINT = lint
-*** ../mh-6.8.3.orig/conf/mhconfig.c Wed Dec 1 06:00:24 1993
---- conf/mhconfig.c Tue Dec 27 19:08:40 1994
-***************
-*** 32,38 ****
- #define MHRELEASE "6.8.3" /* for version: "Maj.min.pat" */
- #define MHCENTERFOOT "MH.6.8" /* for nroff page footers */
- #define MHLEFTFOOT "[mh.6]" /* [mh.6] MH.6.6 page# */
-! #define MHSLIBVER "3.2" /* SunOS4 shared library version */
-
- #define NOTOK (-1)
-
---- 32,38 ----
- #define MHRELEASE "6.8.3" /* for version: "Maj.min.pat" */
- #define MHCENTERFOOT "MH.6.8" /* for nroff page footers */
- #define MHLEFTFOOT "[mh.6]" /* [mh.6] MH.6.6 page# */
-! #define MHSLIBVER "3.2" /* Shared library version */
-
- #define NOTOK (-1)
-
-***************
-*** 456,461 ****
---- 456,465 ----
- fprintf (fp, "/^@BEGIN: SYS5SHLIB$/d\n/^@END: SYS5SHLIB$/d\n");
- else
- fprintf (fp, "/^@BEGIN: SYS5SHLIB$/,/^@END: SYS5SHLIB$/d\n");
-+ if (strcmp (sharedlib, "fbsd") == 0)
-+ fprintf (fp, "/^@BEGIN: FBSDSHLIB$/d\n/^@END: FBSDSHLIB$/d\n");
-+ else
-+ fprintf (fp, "/^@BEGIN: FBSDSHLIB$/,/^@END: FBSDSHLIB$/d\n");
-
- /* */
-
-***************
-*** 774,782 ****
-
- if (strcmp (sharedlib, "on") && strcmp (sharedlib, "off")
- && strcmp (sharedlib, "sun4") && strcmp (sharedlib, "sys5")
-! && strcmp (sharedlib, "secure"))
- adios (NULLCP,
-! "sharedlib should be either \"sun4\", \"sys5\", or \"off\", not %s",
- sharedlib);
-
- (void) sprintf(buffer, "TYPESIG=%s", signl);
---- 778,786 ----
-
- if (strcmp (sharedlib, "on") && strcmp (sharedlib, "off")
- && strcmp (sharedlib, "sun4") && strcmp (sharedlib, "sys5")
-! && strcmp (sharedlib, "fbsd") && strcmp (sharedlib, "secure"))
- adios (NULLCP,
-! "sharedlib should be either \"sun4\", \"sys5\", \"fbsd\" or \"off\", not %s",
- sharedlib);
-
- (void) sprintf(buffer, "TYPESIG=%s", signl);
-*** ../mh-6.8.3.orig/support/bboards/mmdfII/bboards/lock.c Wed Dec 1 06:01:30 1993
---- support/bboards/mmdfII/bboards/lock.c Tue Dec 27 19:58:05 1994
-***************
-*** 47,52 ****
---- 47,56 ----
- #include <sys/file.h>
- #endif
-
-+ #ifdef __FreeBSD__
-+ #include <fcntl.h>
-+ #endif
-+
- #ifdef SYS5
- #define u_short ushort
- #define u_long ulong
-*** ../mh-6.8.3.orig/support/pop/mmdfII/pop/lock.c Wed Dec 1 06:01:30 1993
---- support/pop/mmdfII/pop/lock.c Tue Dec 27 19:58:05 1994
-***************
-*** 47,52 ****
---- 47,56 ----
- #include <sys/file.h>
- #endif
-
-+ #ifdef __FreeBSD__
-+ #include <fcntl.h>
-+ #endif
-+
- #ifdef SYS5
- #define u_short ushort
- #define u_long ulong
-diff -cdr ../mh-6.8.3.orig/zotnet/mts/lock.c ./zotnet/mts/lock.c
-*** ../mh-6.8.3.orig/zotnet/mts/lock.c Wed Dec 1 06:01:30 1993
---- zotnet/mts/lock.c Tue Dec 27 19:58:05 1994
-***************
-*** 47,52 ****
---- 47,56 ----
- #include <sys/file.h>
- #endif
-
-+ #ifdef __FreeBSD__
-+ #include <fcntl.h>
-+ #endif
-+
- #ifdef SYS5
- #define u_short ushort
- #define u_long ulong
-------8<--------------patch-ad-------------------------------------------
->Audit-Trail:
->Unformatted:
-
-
diff --git a/mail/mh/pkg-comment b/mail/mh/pkg-comment
deleted file mode 100644
index 006645c5bc1c..000000000000
--- a/mail/mh/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-Rand MH mail handling system, version 6.8.3
diff --git a/mail/mh/pkg-descr b/mail/mh/pkg-descr
deleted file mode 100644
index adea8e59a4d7..000000000000
--- a/mail/mh/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-This is the MH mail user agent (reader/sender), a command line based mail
-reader that is powerful and extensible. MH is an excellent choice for people
-who receive and process a LOT of mail.
diff --git a/mail/mh/pkg-plist b/mail/mh/pkg-plist
deleted file mode 100644
index a2a7b5f083ce..000000000000
--- a/mail/mh/pkg-plist
+++ /dev/null
@@ -1,118 +0,0 @@
-@cwd /usr/local
-bin/ali
-bin/anno
-bin/burst
-bin/comp
-bin/dist
-bin/folder
-bin/folders
-bin/forw
-bin/inc
-bin/mark
-bin/mhmail
-bin/mhn
-bin/mhpath
-bin/msgchk
-bin/msh
-bin/show
-bin/next
-bin/prev
-bin/packf
-bin/pick
-bin/prompter
-bin/refile
-bin/repl
-bin/rmf
-bin/rmm
-bin/scan
-bin/send
-bin/sortm
-bin/vmh
-bin/whatnow
-bin/whom
-bin/mhparam
-lib/libmh.so.3.2
-lib/mh/mtstailor
-lib/mh/MailAliases
-lib/mh/components
-lib/mh/digestcomps
-lib/mh/distcomps
-lib/mh/forwcomps
-lib/mh/rcvdistcomps
-lib/mh/replcomps
-lib/mh/mhl.digest
-lib/mh/mhl.format
-lib/mh/mhl.forward
-lib/mh/mhl.body
-lib/mh/mhl.headers
-lib/mh/scan.mailx
-lib/mh/scan.default
-lib/mh/scan.size
-lib/mh/scan.time
-lib/mh/scan.timely
-lib/mh/packmbox
-lib/mh/mhn_defaults
-lib/mh/viamail
-lib/mh/ap
-lib/mh/conflict
-lib/mh/dp
-lib/mh/mhl
-lib/mh/install-mh
-lib/mh/post
-lib/mh/rcvdist
-lib/mh/rcvpack
-lib/mh/rcvstore
-lib/mh/rcvtty
-lib/mh/fmtdump
-lib/mh/spost
-lib/mh/slocal
-lib/mh/tmac.h
-man/man1/ali.1
-man/man1/anno.1
-man/man1/burst.1
-man/man1/comp.1
-man/man1/dist.1
-man/man1/folder.1
-man/man1/forw.1
-man/man1/inc.1
-man/man1/mark.1
-man/man1/mh-chart.1
-man/man1/mh.1
-man/man1/mhl.1
-man/man1/mhook.1
-man/man1/mhmail.1
-man/man1/mhn.1
-man/man1/mhparam.1
-man/man1/mhpath.1
-man/man1/msgchk.1
-man/man1/msh.1
-man/man1/next.1
-man/man1/packf.1
-man/man1/pick.1
-man/man1/prev.1
-man/man1/prompter.1
-man/man1/rcvstore.1
-man/man1/refile.1
-man/man1/repl.1
-man/man1/rmf.1
-man/man1/rmm.1
-man/man1/scan.1
-man/man1/send.1
-man/man1/show.1
-man/man1/slocal.1
-man/man1/sortm.1
-man/man1/vmh.1
-man/man1/whatnow.1
-man/man1/whom.1
-man/man5/mh-alias.5
-man/man5/mh-format.5
-man/man5/mh-mail.5
-man/man5/mh-profile.5
-man/man5/mh-sequence.5
-man/man5/mh-tailor.5
-man/man8/ap.8
-man/man8/conflict.8
-man/man8/dp.8
-man/man8/install-mh.8
-man/man8/post.8
-man/man8/fmtdump.8
diff --git a/mail/mh/scripts/configure b/mail/mh/scripts/configure
deleted file mode 100644
index 135141de869e..000000000000
--- a/mail/mh/scripts/configure
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-#
-# Configure MH
-#
-cd $WRKSRC/conf
-make
-./mhconfig FreeBSD
-cd ..
-make clean