summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1996-04-26 08:42:49 +0000
committerSatoshi Asami <asami@FreeBSD.org>1996-04-26 08:42:49 +0000
commit452c8adfcfb4fda0e794fcfcfcbf91f987d0c9cb (patch)
tree196a85b1e6fb174378554d9df19c708d8c12eced /mail
parentAdd dvi2tty. (diff)
(1) PATCH_SITES is not spelled PATCHSITES.
(2) It is recommended to use full pathnames for ldconfig. (3) It is recommended to check NOMANCOMPRESS before compressing manpages (or Rod's going to scream :)
Notes
Notes: svn path=/head/; revision=3028
Diffstat (limited to 'mail')
-rw-r--r--mail/mh/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/mail/mh/Makefile b/mail/mh/Makefile
index 4cd99014ae07..482d5d6af908 100644
--- a/mail/mh/Makefile
+++ b/mail/mh/Makefile
@@ -3,7 +3,7 @@
# Date created: Oct 4, 1994
# Whom: pst
#
-# $Id: Makefile,v 1.6 1995/12/05 12:37:28 markm Exp $
+# $Id: Makefile,v 1.7 1996/04/25 11:45:58 peter Exp $
#
DISTNAME= mh-6.8.3
@@ -12,7 +12,7 @@ CATEGORIES+= mail
MASTER_SITES= ftp://ftp.ics.uci.edu/pub/mh/tar/
EXTRACT_SUFX= .tar.Z
-PATCHSITES= ftp://ftp.ics.uci.edu/pub/mh/updates/
+PATCH_SITES= ftp://ftp.ics.uci.edu/pub/mh/updates/
PATCHFILES= MH.6.8.4.Z
MAINTAINER= markm@FreeBSD.ORG
@@ -30,7 +30,9 @@ MHMAN= man1/ali.1 man1/anno.1 man1/burst.1 man1/comp.1 man1/dist.1 \
man8/fmtdump.8
post-install:
- ldconfig -m ${PREFIX}/lib
+ /sbin/ldconfig -m ${PREFIX}/lib
+.if !defined(NOMANCOMPRESS)
for m in ${MHMAN}; do gzip -9nf ${PREFIX}/man/$$m; done
+.endif
.include <bsd.port.mk>