summaryrefslogtreecommitdiff
path: root/math/lapack
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1996-06-10 21:19:55 +0000
committerSatoshi Asami <asami@FreeBSD.org>1996-06-10 21:19:55 +0000
commitc8bc1c86c31ba26652d1ca3522d5eb8e17fe7a42 (patch)
treebe40e7b9c73115502fa7e79f08c5675f7201d0e9 /math/lapack
parentAddex uudx. (diff)
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.
Notes
Notes: svn path=/head/; revision=3190
Diffstat (limited to 'math/lapack')
-rw-r--r--math/lapack/Makefile20
1 files changed, 13 insertions, 7 deletions
diff --git a/math/lapack/Makefile b/math/lapack/Makefile
index caba126f2c7e..89be1300fe78 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>