diff options
author | asami <asami@FreeBSD.org> | 1996-04-26 08:42:49 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-04-26 08:42:49 +0000 |
commit | 81f5efc1c843598ed1c3d6265f44305c5af82c9c (patch) | |
tree | 233e114cba50973e3ee44138d655de53f4dbb866 /mail/mh/Makefile | |
parent | a8c17275f6b95754203fd182a68f00a02824b667 (diff) | |
download | FreeBSD-ports-81f5efc1c843598ed1c3d6265f44305c5af82c9c.zip FreeBSD-ports-81f5efc1c843598ed1c3d6265f44305c5af82c9c.tar.gz |
(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 :)
Diffstat (limited to 'mail/mh/Makefile')
-rw-r--r-- | mail/mh/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mail/mh/Makefile b/mail/mh/Makefile index 4cd9901..482d5d6 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> |