diff options
author | sheldonh <sheldonh@FreeBSD.org> | 1999-12-23 17:15:56 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 1999-12-23 17:15:56 +0800 |
commit | 38b8aa1b2b5f754b7ca22703e17b7dab9d680b39 (patch) | |
tree | bb0888d3d97c9efd6a0352cf3cf29d643755f7b0 /mail | |
parent | 96d24f854826055acd0c2d363c08c699fb13a0ca (diff) | |
download | freebsd-ports-gnome-38b8aa1b2b5f754b7ca22703e17b7dab9d680b39.tar.gz freebsd-ports-gnome-38b8aa1b2b5f754b7ca22703e17b7dab9d680b39.tar.zst freebsd-ports-gnome-38b8aa1b2b5f754b7ca22703e17b7dab9d680b39.zip |
Update to nmh-1.0.2:
Documentation update providing current support channels.
No show-stopping bugs fixed, just lots of nits.
Changes to the actual port:
Simplify handling of PREFIX.
Use autoconf.
Use DOT_LOCKING, not FLOCK_LOCKING. (IMPORTANT)
Tweak DESCR to make it more obvious that this is an MUA.
PR: 15423
Submitted by: maintainer
Diffstat (limited to 'mail')
-rw-r--r-- | mail/nmh/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/mail/nmh/Makefile b/mail/nmh/Makefile index f062afc63a67..b7de886ea351 100644 --- a/mail/nmh/Makefile +++ b/mail/nmh/Makefile @@ -1,5 +1,5 @@ # New ports collection makefile for: nmh -# Version required: 1.0 +# Version required: 1.0.2 # Date created: 07 Feb 1999 # Whom: Scott Blachowicz <Scott.Blachowicz@seaslug.org> # @@ -29,15 +29,15 @@ # script's '--with-pager' option. # -DISTNAME= nmh-1.0 +DISTNAME= nmh-1.0.2 CATEGORIES= mail MASTER_SITES= ftp://ftp.mhost.com/pub/nmh/ \ http://www.freebsd.org/~jkoshy/PORTS/ MAINTAINER= Scott.Blachowicz@seaslug.org -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/nmh \ +USE_AUTOCONF= yes +CONFIGURE_ARGS= --libdir=${PREFIX}/libexec/nmh \ --sysconfdir=${PREFIX}/etc/nmh --enable-nmh-pop .ifdef NMH_MTS CONFIGURE_ARGS+= --with-mts=${NMH_MTS} @@ -59,9 +59,13 @@ MAN1= ali.1 anno.1 burst.1 comp.1 dist.1 flist.1 folder.1 forw.1 \ MAN5= mh-alias.5 mh-draft.5 mh-format.5 mh-mail.5 mh-profile.5 \ mh-sequence.5 mh-tailor.5 +MLINKS= mh-profile.5 mh_profile.5 MAN8= ap.8 conflict.8 dp.8 fmtdump.8 install-mh.8 mh-mts.8 post.8 +pre-configure: + cd ${WRKSRC}; chmod +w configure + # Since we patch the autoconf files as well as their outputs, avoid attempt # to regenerate header input files with 'autoheader' by Makefile. post-patch: |