diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-06-22 17:10:55 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-06-22 17:10:55 +0000 |
commit | c93bf47f9116af7484957942927da863f90db4ed (patch) | |
tree | 127dfde9f408dd41bc504419a6668922fbbd69ec /math/lapack++/Makefile | |
parent | 161b751262bc5e1c5239a167762733cdcdd1d29d (diff) |
Notes
Diffstat (limited to 'math/lapack++/Makefile')
-rw-r--r-- | math/lapack++/Makefile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/math/lapack++/Makefile b/math/lapack++/Makefile new file mode 100644 index 000000000000..2eb9f8930421 --- /dev/null +++ b/math/lapack++/Makefile @@ -0,0 +1,45 @@ +# New ports collection makefile for: lapack++ +# Date created: 5 May 2002 +# Whom: NAKATA Maho <chat95@mbox.kyoto-inet.or.jp> +# +# $FreeBSD$ +# + +PORTNAME= lapack++ +PORTVERSION= 1.1 +CATEGORIES= math +MASTER_SITES= http://math.nist.gov/lapack++/ +DISTFILES= Lapackpp1_1a.tgz +DIST_SUBDIR= lapack++ +EXTRACT_ONLY= Lapackpp1_1a.tgz + +.if !defined(NOPORTDOCS) +DISTFILES+= lapack++.ps.gz lapackpp1_1.ps.gz lapackppman1_1.ps.gz \ + lapack++_install.ps.gz +.endif + +MAINTAINER= chat95@mbox.kyoto-inet.or.jp + +LIB_DEPENDS= lapack:${PORTSDIR}/math/lapack \ + atlas:${PORTSDIR}/math/atlas + +WRKSRC= ${WRKDIR}/Lapackpp1.1a + +post-patch: + @(cd ${WRKSRC} ; ${MV} makefile Makefile) + +do-install: +.for i in libblas++ liblamatrix++ liblapack++ + ${INSTALL_DATA} ${WRKSRC}/${i}.a ${PREFIX}/lib +.endfor + @${MKDIR} ${PREFIX}/include/lapack++ + ${INSTALL_DATA} ${WRKSRC}/include/*.h ${PREFIX}/include/lapack++ +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${CP} ${DISTDIR}/${DIST_SUBDIR}/lapack++.ps.gz ${DOCSDIR} + ${CP} ${DISTDIR}/${DIST_SUBDIR}/lapack++_install.ps.gz ${DOCSDIR} + ${CP} ${DISTDIR}/${DIST_SUBDIR}/lapackpp1_1.ps.gz ${DOCSDIR} + ${CP} ${DISTDIR}/${DIST_SUBDIR}/lapackppman1_1.ps.gz ${DOCSDIR} +.endif + +.include <bsd.port.mk> |