diff options
author | asami <asami@FreeBSD.org> | 1996-06-10 21:19:55 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-06-10 21:19:55 +0000 |
commit | d85b27904046edf14f988e06ab0f92e7571b27a9 (patch) | |
tree | db95e6c1ccdd86e3819045fdb680af47c1ba1275 /math | |
parent | be36a4a2ae68ea33240dbf309bef869a88cfbcc4 (diff) | |
download | FreeBSD-ports-d85b27904046edf14f988e06ab0f92e7571b27a9.zip FreeBSD-ports-d85b27904046edf14f988e06ab0f92e7571b27a9.tar.gz |
Make it install manpages even if NOMANCOMPRESS is defined. Run
/sbin/ldconfig -m on shared libraries. Take out @ from install
commands so user can have some idea what's going on.
Diffstat (limited to 'math')
-rw-r--r-- | math/lapack/Makefile | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/math/lapack/Makefile b/math/lapack/Makefile index caba126..89be130 100644 --- a/math/lapack/Makefile +++ b/math/lapack/Makefile @@ -3,7 +3,7 @@ # Date created: 2 July 1994 # Whom: jmz # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1996/06/07 15:39:53 jmz Exp $ # DISTNAME= LAPACK @@ -15,13 +15,19 @@ DISTFILES= lapack.tar.gz manpages.tar.gz MAINTAINER= jmz@FreeBSD.org do-install: - @install -c -o bin -g bin ${WRKSRC}/BLAS/SRC/libblas.* ${PREFIX}/lib - @install -c -o bin -g bin ${WRKSRC}/SRC/liblapack.* ${PREFIX}/lib + install -c -o bin -g bin ${WRKSRC}/BLAS/SRC/libblas.* ${PREFIX}/lib + install -c -o bin -g bin ${WRKSRC}/SRC/liblapack.* ${PREFIX}/lib + /sbin/ldconfig -m ${PREFIX}/lib .if !defined(NOMANCOMPRESS) - @(cd ${WRKDIR}/blas/man/manl; \ - for i in *.l; do gzip < $$i >${PREFIX}/man/manl/$$i.gz; done) - @(cd ${WRKDIR}/man/manl; \ - for i in *.l; do gzip < $$i >${PREFIX}/man/manl/$$i.gz; done) + cd ${WRKDIR}/blas/man/manl; \ + for i in *.l; do gzip -9f < $$i >${PREFIX}/man/manl/$$i.gz; done + cd ${WRKDIR}/man/manl; \ + for i in *.l; do gzip -9f < $$i >${PREFIX}/man/manl/$$i.gz; done +.else + cd ${WRKDIR}/blas/man/manl; \ + for i in *.l; do cp $$i ${PREFIX}/man/manl/; done + cd ${WRKDIR}/man/manl; \ + for i in *.l; do cp $$i ${PREFIX}/man/manl/; done .endif .include <bsd.port.mk> |