diff options
author | jtb <jtb@pkgsrc.org> | 2001-02-02 00:23:49 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2001-02-02 00:23:49 +0000 |
commit | fc38234e923144ddd81187c10365843d248f9497 (patch) | |
tree | 1a25f8f6c5a3cdb8eedc545afafe16f4f48795a4 /math/eispack/Makefile | |
parent | afc80f1b2d11aa4eed9e764da1f3122077d25dcb (diff) | |
download | pkgsrc-fc38234e923144ddd81187c10365843d248f9497.tar.gz |
Don't build shared Fortran libraries. They're too problematic.
Strictly numerical libraries, like fftpack, work fine, but some
which make use of Fortran I/O have problems resolving symbols.
This is a known problem with g77/f2c.
Diffstat (limited to 'math/eispack/Makefile')
-rw-r--r-- | math/eispack/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/math/eispack/Makefile b/math/eispack/Makefile index d62beeeb7c2..9ec04d42897 100644 --- a/math/eispack/Makefile +++ b/math/eispack/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2000/12/01 01:48:25 jtb Exp $ +# $NetBSD: Makefile,v 1.3 2001/02/02 00:23:50 jtb Exp $ DISTNAME= eispack-20001130 CATEGORIES= math @@ -6,14 +6,11 @@ MASTER_SITES= ${MASTER_SITE_LOCAL} MAINTAINER= jtb@netbsd.org +NO_SRC_ON_FTP= Already in MASTER_SITE_LOCAL WRKSRC= ${WRKDIR}/eispack -USE_LIBTOOL= YES -UES_FORTRAN= YES - -.include "../../mk/bsd.prefs.mk" +USE_FORTRAN= YES pre-build: - @${SED} -e 's:%%FORTRAN%%:'${FC}':g' \ - < ${FILESDIR}/Makefile > ${WRKSRC}/Makefile + ${CP} ${FILESDIR}/Makefile ${WRKSRC} .include "../../mk/bsd.pkg.mk" |