summaryrefslogtreecommitdiff
path: root/math/eispack
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1999-12-23 19:25:48 +0000
committerSteve Price <steve@FreeBSD.org>1999-12-23 19:25:48 +0000
commitd775e184d0114fc4790bd2ac292165aa9bd76625 (patch)
tree45e71fabe3b27df47edd1c57c9da633dde349465 /math/eispack
parentUpdate to version 0.8.3. (diff)
* Fixed MASTER_SITES
* Moved makefile.lib to files/ * Rearranged extract target * Added WWW: line into pkg/DESCR PR: 15499 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Notes
Notes: svn path=/head/; revision=23926
Diffstat (limited to 'math/eispack')
-rw-r--r--math/eispack/Makefile32
-rw-r--r--math/eispack/files/Makefile.lib24
-rw-r--r--math/eispack/pkg-descr2
3 files changed, 43 insertions, 15 deletions
diff --git a/math/eispack/Makefile b/math/eispack/Makefile
index 15d81d6926da..5dd567154e4e 100644
--- a/math/eispack/Makefile
+++ b/math/eispack/Makefile
@@ -1,7 +1,7 @@
-# New ports collection makefile for: eispack
-# Version required: ?
-# Date created: 31 October 1994
-# Whom: ljo
+# New ports collection makefile for: eispack
+# Version required: ?
+# Date created: 31 October 1994
+# Whom: ljo
#
# $FreeBSD$
#
@@ -9,19 +9,15 @@
DISTNAME= eispack
PKGNAME= eispack-1.0
CATEGORIES= math
-MASTER_SITES= ftp://netlib.bell-labs.com/netlib/eispack/ \
- ftp://www.hensa.ac.uk/mirrors/netlib/eispack/ \
- ftp://elib.zib-berlin.de/pub/netlib/eispack/
+MASTER_SITES= ftp://ftp.netlib.org/eispack/ \
+ ftp://netlib.bell-labs.com/netlib/eispack/ \
+ ftp://www.hensa.ac.uk/mirrors/netlib/eispack/
-DIST_SUBDIR= ${DISTNAME}
+MAINTAINER= ports@FreeBSD.org
LIB_DEPENDS= blas.1:${PORTSDIR}/math/blas
-EXTRACT_CMD= ${SH} ${SCRIPTDIR}/uncomp
-EXTRACT_SUFX= .gz
-EXTRACT_BEFORE_ARGS= ${WRKDIR}
-EXTRACT_AFTER_ARGS= # empty
-
+DIST_SUBDIR= ${DISTNAME}
NO_WRKSUBDIR= yes
SRCS = csroot.f epslon.f pythag.f bakvec.f balanc.f balbak.f bandr.f \
@@ -39,11 +35,17 @@ DISTFILES= ${SRCS:.f=.f.gz}
.include <bsd.port.pre.mk>
+do-extract:
+ @${MKDIR} ${WRKDIR}
+.for file in ${SRCS}
+ @${GZCAT} ${_DISTDIR}/${file:.f=.f.gz} > ${WRKSRC}/${file}
+.endfor
+
pre-build:
- ${CP} Makefile.lib ${WRKDIR}/Makefile
+ ${CP} ${FILESDIR}/Makefile.lib ${WRKSRC}/Makefile
post-install:
- ${LDCONFIG} -m ${PREFIX}/lib
+ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib
.if ${PORTOBJFORMAT} == "aout"
${LN} -sf libeispack.so.1.0 ${PREFIX}/lib/libeispack.so
.endif
diff --git a/math/eispack/files/Makefile.lib b/math/eispack/files/Makefile.lib
new file mode 100644
index 000000000000..079bafa60e2d
--- /dev/null
+++ b/math/eispack/files/Makefile.lib
@@ -0,0 +1,24 @@
+# EISPACK sources
+LIBDIR= ${PREFIX}/lib
+NOPROFILE= no
+
+SHLIB_MAJOR= 1
+SHLIB_MINOR= 0
+
+# removed otqlrat.f from the SRCS list, only one tqlrat routine can
+# be used in a library.
+# ATS
+LIB=eispack
+SRCS = csroot.f epslon.f pythag.f bakvec.f balanc.f balbak.f bandr.f \
+ bandv.f bisect.f bqr.f cbabk2.f cbal.f cg.f ch.f cinvit.f combak.f \
+ comhes.f comlr.f comlr2.f comqr.f comqr2.f cortb.f corth.f elmbak.f \
+ elmhes.f eltran.f figi.f figi2.f hqr.f hqr2.f htrib3.f htribk.f \
+ htrid3.f htridi.f imtql1.f imtql2.f imtqlv.f invit.f minfit.f \
+ ortbak.f orthes.f ortran.f qzhes.f qzit.f qzval.f qzvec.f \
+ ratqr.f rebak.f rebakb.f reduc.f reduc2.f rg.f rgg.f rs.f rsb.f \
+ rsg.f rsgab.f rsgba.f rsm.f rsp.f rst.f rt.f svd.f tinvit.f tql1.f \
+ tql2.f tqlrat.f trbak1.f trbak3.f tred1.f tred2.f tred3.f tridib.f \
+ tsturm.f cdiv.f
+CLEANFILES+= *.c
+
+.include <bsd.lib.mk>
diff --git a/math/eispack/pkg-descr b/math/eispack/pkg-descr
index 02e4215b6d3c..2937097c2bbb 100644
--- a/math/eispack/pkg-descr
+++ b/math/eispack/pkg-descr
@@ -13,3 +13,5 @@ it is otherwise the same. The package is described in:
As the package is in FORTRAN there are no include files for the library,
and the only thing to install is the library itself.
+
+WWW: http://www.netlib.org/eispack/