summaryrefslogtreecommitdiff
path: root/math/lapack/Makefile
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1999-09-20 00:47:53 +0000
committerSteve Price <steve@FreeBSD.org>1999-09-20 00:47:53 +0000
commit70762e13cb0fd5be90d4d427f92e0556dd391e8b (patch)
tree169c04398d09e4013459bb004236dcb10deb323c /math/lapack/Makefile
parentRemove .depend in post-extract because trap.h doesn't exist on FreeBSD/Alpha (diff)
Play the 'MANCOMPRESSED=maybe' trick and compress the manpages ourselves
based on NOMANCOMPRESS, so we don't have problems with the arguments being too long to sh(1).
Notes
Notes: svn path=/head/; revision=21779
Diffstat (limited to '')
-rw-r--r--math/lapack/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/math/lapack/Makefile b/math/lapack/Makefile
index bf2a592d93f2..f07d1e80cfcc 100644
--- a/math/lapack/Makefile
+++ b/math/lapack/Makefile
@@ -16,6 +16,7 @@ MAINTAINER= jmz@FreeBSD.org
DIST_SUBDIR= lapack
+MANCOMPRESSED= maybe
MANL= cgbmv.l cgemm.l cgemv.l cgerc.l cgeru.l chbmv.l chemm.l chemv.l \
cher.l cher2.l cher2k.l cherk.l chpmv.l chpr.l chpr2.l cscal.l \
csymm.l csyr2k.l csyrk.l ctbmv.l ctbsv.l ctpmv.l ctpsv.l ctrmm.l \
@@ -196,5 +197,10 @@ do-install:
${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib
${INSTALL_MAN} ${WRKDIR}/blas/man/manl/*.l ${PREFIX}/man/manl
${INSTALL_MAN} ${WRKDIR}/man/manl/*.l ${PREFIX}/man/manl
+.if !defined(NOMANCOMPRESS)
+.for f in ${MANL}
+ @${GZIP_CMD} ${PREFIX}/man/manl/${f}
+.endfor
+.endif
.include <bsd.port.post.mk>