diff options
author | maho <maho@FreeBSD.org> | 2003-05-05 11:39:23 +0000 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2003-05-05 11:39:23 +0000 |
commit | 7037e9a0bfd6ff76175b79d3b08f7b8bee0f594e (patch) | |
tree | 05a5eb16bd641f596d9502a744e247dbed7cfbf3 /math/arpack/files | |
parent | a28fba17e5af4243075881a7a8e57139a3b7e4e4 (diff) | |
download | FreeBSD-ports-7037e9a0bfd6ff76175b79d3b08f7b8bee0f594e.zip FreeBSD-ports-7037e9a0bfd6ff76175b79d3b08f7b8bee0f594e.tar.gz |
Argand Library (serial version)
Submitted by: Pedro F. Giffuni <giffunip@yahoo.com>
Diffstat (limited to 'math/arpack/files')
-rw-r--r-- | math/arpack/files/patch-Armake.inc | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/math/arpack/files/patch-Armake.inc b/math/arpack/files/patch-Armake.inc new file mode 100644 index 0000000..c81b622 --- /dev/null +++ b/math/arpack/files/patch-Armake.inc @@ -0,0 +1,52 @@ +--- ARmake.inc.orig Sat Apr 27 04:12:57 1996 ++++ ARmake.inc Mon May 5 20:12:25 2003 +@@ -25,14 +25,14 @@ + # | other than your home directory. | + # %--------------------------------------% + # +-home = $(HOME)/ARPACK ++home = $(HOME) + # + # %--------------------------------------% + # | The platform identifier to suffix to | + # | the end of library names | + # %--------------------------------------% + # +-PLAT = SUN4 ++PLAT = FBSD + # + # %------------------------------------------------------% + # | The directories to find the various pieces of ARPACK | +@@ -57,9 +57,9 @@ + # | The name of the libraries to be created/linked to | + # %---------------------------------------------------% + # +-ARPACKLIB = $(home)/libarpack_$(PLAT).a +-LAPACKLIB = +-BLASLIB = ++ARPACKLIB = $(home)/libarpack.a ++LAPACKLIB = $(home)/liblapack.a ++BLASLIB = $(home)/libblas.a + # + ALIBS = $(ARPACKLIB) $(LAPACKLIB) $(BLASLIB) + # +@@ -101,8 +101,8 @@ + # | for your system. | + # %-----------------------------------------% + # +-FC = f77 +-FFLAGS = -O -cg89 ++FC = %FC% ++FFLAGS = %FFLAGS% + + LDFLAGS = + CD = cd +@@ -112,7 +112,7 @@ + LN = ln + LNFLAGS = -s + +-MAKE = /bin/make ++MAKE ?= /usr/bin/make + + RM = rm + RMFLAGS = -f |