diff options
author | steve <steve@FreeBSD.org> | 1999-09-20 00:47:53 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-09-20 00:47:53 +0000 |
commit | 8a7839d55e266006faed9a4688f77a485e5b16da (patch) | |
tree | 499283cc2c64b3b2a799752b7ad02f42c04bab83 | |
parent | 3c0f6c43145bb55d475d092e4ece91ee8ff975cf (diff) | |
download | FreeBSD-ports-8a7839d55e266006faed9a4688f77a485e5b16da.zip FreeBSD-ports-8a7839d55e266006faed9a4688f77a485e5b16da.tar.gz |
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).
-rw-r--r-- | math/lapack/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/math/lapack/Makefile b/math/lapack/Makefile index bf2a592..f07d1e8 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> |