The NetBSD Project

CVS log for pkgsrc/math/blas/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / math / blas

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.40 / (download) - annotate - [select for diffs], Tue Jun 15 04:41:51 2021 UTC (2 years, 9 months ago) by thor
Branch: MAIN
CVS Tags: pkgsrc-2023Q4-base, pkgsrc-2023Q4, pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2, pkgsrc-2022Q1-base, pkgsrc-2022Q1, pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2, HEAD
Changes since 1.39: +3 -3 lines
Diff to previous 1.39 (colored) to selected 1.12 (colored)

mk/blas.bl3, Netlib and OpenBLAS packages, NumPy: C fixup and 64 bits

This delivers 64 bit index BLAS libraries alongside 32 bit ones. This is often
called ILP64 in the BLAS world, as opposed to LP64 where integers are 32 bit
due to the Fortran default integer type, not to be confused with the basic
system ABI used by C. For really large vectors on modern machines, you want
an 'ILP64' BLAS and layers on top of it.

In preparation of better support for vendor BLAS libraries, I had to realize
that you better use the C interfaces supplied by them, not the netlib one
strapped on. A simple reason of practicability: The vendor blas libraries,
just like openblas, like to ship all symbols in one library, so you get them
whether you want it or not. Also implementations may skip Fortran and implement
the underlying functionality directly in C anyway, so one might skip a
layer of indirection. Future will tell if other layers will follow. We still
have the framework of individual layers from Netlib to combine with certain
implementations that miss them (Accelerate framework comes to mind, which
needs further work).

The framework of netlib reference packages for the separate libraries
is instructive and helps keeping things small when you not need all of them.
The installation location of the headers is now in a subdirectory to be able
to have 32 and 64 bit variants independently. The 32 bit ones are linked to
${PREFIX}/include to keep the old picture. We could be brave and remove
those, but there is some value in a build just trying -lcblas and
inclusion of <cblas.h> to be happy.

There is one blas.buildlink3.mk that is supposed to be used only once and
so avoids a combination of conflicting libraries (as the 64 bit index symbols
have the same names as the 32 bit ones).

Basic usage for getting LAPACK+BLAS is still the same as before. You get
CBLAS and LAPACKE by setting BLAS_C_INTERFACE=yes in the package. The 64 bit
indices are selected via BLAS_INDEX64=yes.

Due to the special nature of the Accelerate framework, a package has to
explicitly indicate support for it and it will also not appear on the
list of implementations by default. The reason is that it does provide
mainly CBLAS and CLAPACK (another version of C interface to LAPACK, f2c-based)
and BLAS/LAPACK with f2c/g77 calling conventions. A default build with
gfortran would not like that

This commit also fixes up math/py-numpy and math/py-numpy16 to follow the
new scheme, as that are the only packages directly affected by the change
in CBLAS providership.

Revision 1.39 / (download) - annotate - [select for diffs], Wed May 12 14:32:52 2021 UTC (2 years, 10 months ago) by thor
Branch: MAIN
Changes since 1.37: +1 -3 lines
Diff to previous 1.37 (colored) to selected 1.12 (colored)

math/lapack, blas, cblas, lapacke: update to version 3.9.1

This includes a rework of the build system patches, which I'll try
to push upstream ãà----------------------------
revision 1.38
date: 2020/10/12 21:51:57;  author: bacon;  state: Exp;  lines: +7 -9
math/blas, math/lapack: Install interchangeable BLAS system

Install the new interchangeable BLAS system created by Thomas Orgis,
currently supporting Netlib BLAS/LAPACK, OpenBLAS, cblas, lapacke, and
Apple's Accelerate.framework.  This system allows the user to select any
BLAS implementation without modifying packages or using package options, by
setting PKGSRC_BLAS_TYPES in mk.conf. See mk/blas.buildlink3.mk for details.

This commit should not alter behavior of existing packages as the system
defaults to Netlib BLAS/LAPACK, which until now has been the only supported
implementation.

Details:

Add new mk/blas.buildlink3.mk for inclusion in dependent packages
Install compatible Netlib math/blas and math/lapack packages
Update math/blas and math/lapack MAINTAINER approved by adam@
OpenBLAS, cblas, and lapacke will follow in separate commits
Update direct dependents to use mk/blas.buildlink3.mk
Perform recursive revbump

Revision 1.37 / (download) - annotate - [select for diffs], Fri Feb 28 21:48:53 2020 UTC (4 years ago) by plunky
Branch: MAIN
CVS Tags: pkgsrc-2020Q3-base, pkgsrc-2020Q3, pkgsrc-2020Q2-base, pkgsrc-2020Q2, pkgsrc-2020Q1-base, pkgsrc-2020Q1
Changes since 1.36: +5 -6 lines
Diff to previous 1.36 (colored) to selected 1.12 (colored)

Update math/lapack and math/blas to v3.9.0

Have switched to the CMAKE build and enabled tests.
make test passes all (with one patch pushed upstream)

Package additions, from the release notes are:

LAPACK 3.9.0
   LAPACK QR
      preconditioned QR SVD method for computing the SVD with high accuracy,
      by Zlatko Drmac

   LAPACK Householder Reconstruction
      by Igor Kozachenko and Jim Demmel

LAPACK 3.8.0
   Symmetric-indefinite Factorization: AasenÑÔ tridiagonalization 2 stage
      A contribution from Ichitaro Yamazaki (University of Tennessee).

   LAPACKE interfaces
      A contribution from Julie Langou (University of Tennessee).

Revision 1.36 / (download) - annotate - [select for diffs], Sat Dec 3 15:37:34 2016 UTC (7 years, 3 months ago) by marino
Branch: MAIN
CVS Tags: pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3, pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4, pkgsrc-2018Q3-base, pkgsrc-2018Q3, pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1, pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3, pkgsrc-2017Q2-base, pkgsrc-2017Q2, pkgsrc-2017Q1-base, pkgsrc-2017Q1, pkgsrc-2016Q4-base, pkgsrc-2016Q4
Changes since 1.35: +1 -7 lines
Diff to previous 1.35 (colored) to selected 1.12 (colored)

math/lapack: Restore build on DragonFly

Linking lapack with the gold linker fails with this error:
fatal error: --sysroot=: must take a non-empty argument

DragonFly has been using the gold linker by default for a while now.
Since I don't have time to track down this linking problem, I'm going
to restore the build on DragonFly by setting an environment variable
that forces DF to use the classic GNU linker instead.

This was already fixed on math/blas which uses the lapack common
makefile, so just relocate the fix to lapack.

Revision 1.35 / (download) - annotate - [select for diffs], Sat Dec 3 03:42:44 2016 UTC (7 years, 3 months ago) by marino
Branch: MAIN
Changes since 1.34: +7 -1 lines
Diff to previous 1.34 (colored) to selected 1.12 (colored)

math/blas: Restore build on DragonFly

Linking blas with the gold linker fails with this error:
fatal error: --sysroot=: must take a non-empty argument

DragonFly has been using the gold linker by default for a while now.
Since I don't have time to track down this linking problem, I'm going
to restore the build on DragonFly by setting an environment variable
that forces DF to use the classic GNU linker instead.

At this point in time, I don't know if BLAS is unique or if LAPACK
and others need the same workaround.  If the latter, this variable
may need to be moved to the common LAPACK makefile.

Revision 1.34 / (download) - annotate - [select for diffs], Tue Oct 18 14:08:48 2016 UTC (7 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.33: +1 -2 lines
Diff to previous 1.33 (colored) to selected 1.12 (colored)

Update blas to 3.6.1 as well.

Changes: see lapack.

Both updates provided by Kai-Uwe Eckhardt in private email.

Revision 1.33 / (download) - annotate - [select for diffs], Tue Aug 19 13:37:14 2014 UTC (9 years, 7 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2, pkgsrc-2016Q1-base, pkgsrc-2016Q1, pkgsrc-2015Q4-base, pkgsrc-2015Q4, pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2, pkgsrc-2015Q1-base, pkgsrc-2015Q1, pkgsrc-2014Q4-base, pkgsrc-2014Q4, pkgsrc-2014Q3-base, pkgsrc-2014Q3
Changes since 1.32: +2 -1 lines
Diff to previous 1.32 (colored) to selected 1.12 (colored)

Build and link Fortran code using the Fortran Compiler. Bump revision.

Revision 1.32 / (download) - annotate - [select for diffs], Fri Feb 28 09:39:56 2014 UTC (10 years, 1 month ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2014Q2-base, pkgsrc-2014Q2, pkgsrc-2014Q1-base, pkgsrc-2014Q1
Changes since 1.31: +9 -22 lines
Diff to previous 1.31 (colored) to selected 1.12 (colored)

Changes 3.5.0:
* added Symmetric/Hermitian LDLT factorization routines with rook pivoting algorithm
* 2-by-1 CSD to be used for tall and skinny matrix with orthonormal columns (in LAPCK 3.4.0, we already integrated CSD of a full square orthogonal matrix)
* New stopping criteria for balancing.

Revision 1.31 / (download) - annotate - [select for diffs], Mon Jun 3 08:04:56 2013 UTC (10 years, 9 months ago) by tron
Branch: MAIN
CVS Tags: pkgsrc-2013Q4-base, pkgsrc-2013Q4, pkgsrc-2013Q3-base, pkgsrc-2013Q3, pkgsrc-2013Q2-base, pkgsrc-2013Q2
Changes since 1.30: +2 -3 lines
Diff to previous 1.30 (colored) to selected 1.12 (colored)

This packages needs a Fortran 95 compiler to build, Fortran 77 is not
good enough.

Revision 1.30 / (download) - annotate - [select for diffs], Tue Sep 11 23:04:17 2012 UTC (11 years, 6 months ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2013Q1-base, pkgsrc-2013Q1, pkgsrc-2012Q4-base, pkgsrc-2012Q4, pkgsrc-2012Q3-base, pkgsrc-2012Q3
Changes since 1.29: +1 -2 lines
Diff to previous 1.29 (colored) to selected 1.12 (colored)

"user-destdir" is default these days

Revision 1.29 / (download) - annotate - [select for diffs], Fri Jul 30 10:36:27 2010 UTC (13 years, 8 months ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2012Q2-base, pkgsrc-2012Q2, pkgsrc-2012Q1-base, pkgsrc-2012Q1, pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3
Changes since 1.28: +2 -2 lines
Diff to previous 1.28 (colored) to selected 1.12 (colored)

"fortran" -> "fortran77" except where it is clear that it isn't F77.
"fortran" is alias of "fortran77" for now, but it will change later.

Revision 1.28 / (download) - annotate - [select for diffs], Thu Dec 3 13:06:53 2009 UTC (14 years, 3 months ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2010Q2-base, pkgsrc-2010Q2, pkgsrc-2010Q1-base, pkgsrc-2010Q1, pkgsrc-2009Q4-base, pkgsrc-2009Q4
Changes since 1.27: +2 -2 lines
Diff to previous 1.27 (colored) to selected 1.12 (colored)

Follow f2c/libf2c split: bump revision of all packages
that list Fortran in used languages.

Revision 1.27 / (download) - annotate - [select for diffs], Sun Feb 22 14:15:28 2009 UTC (15 years, 1 month ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2009Q3-base, pkgsrc-2009Q3, pkgsrc-2009Q2-base, pkgsrc-2009Q2, pkgsrc-2009Q1-base, pkgsrc-2009Q1
Changes since 1.26: +2 -2 lines
Diff to previous 1.26 (colored) to selected 1.12 (colored)


Use MASTER_SITE_NETLIB for Netlib and its mirrors.
Discussed with Tobias Nygren.

Revision 1.26 / (download) - annotate - [select for diffs], Tue Aug 12 21:32:26 2008 UTC (15 years, 7 months ago) by markd
Branch: MAIN
CVS Tags: pkgsrc-2008Q4-base, pkgsrc-2008Q4, pkgsrc-2008Q3-base, pkgsrc-2008Q3, cube-native-xorg-base, cube-native-xorg
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (colored) to selected 1.12 (colored)

fix typo.

Revision 1.25 / (download) - annotate - [select for diffs], Tue Aug 12 21:29:11 2008 UTC (15 years, 7 months ago) by markd
Branch: MAIN
Changes since 1.24: +2 -1 lines
Diff to previous 1.24 (colored) to selected 1.12 (colored)

Tell libtool that its linking fortran so the correct libraries get
linked in.

Revision 1.24 / (download) - annotate - [select for diffs], Fri Mar 7 07:14:24 2008 UTC (16 years ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2008Q2-base, pkgsrc-2008Q2, pkgsrc-2008Q1-base, pkgsrc-2008Q1, cwrapper
Changes since 1.23: +14 -6 lines
Diff to previous 1.23 (colored) to selected 1.12 (colored)

Update math/blas to version 1.1.  Changes from version 1.0 include:

- The addition of several new routines for complex number operations.

- Minor changes in the function implementations to use the new
  operations.

+ Support user-destdir installation.

+ Move Makefile for building the BLAS library from patch-aa into
  files/Makefile.blas.  It's simpler to edit this file than to create
  new patches.

Revision 1.23 / (download) - annotate - [select for diffs], Sun Dec 2 12:14:15 2007 UTC (16 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2007Q4-base, pkgsrc-2007Q4
Changes since 1.22: +2 -4 lines
Diff to previous 1.22 (colored) to selected 1.12 (colored)

Remove Ex-MASTER_SITEs. From Zafer Aydogan.

Revision 1.22 / (download) - annotate - [select for diffs], Fri Jun 9 10:38:35 2006 UTC (17 years, 9 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2007Q3-base, pkgsrc-2007Q3, pkgsrc-2007Q2-base, pkgsrc-2007Q2, pkgsrc-2007Q1-base, pkgsrc-2007Q1, pkgsrc-2006Q4-base, pkgsrc-2006Q4, pkgsrc-2006Q3-base, pkgsrc-2006Q3, pkgsrc-2006Q2-base, pkgsrc-2006Q2
Changes since 1.21: +2 -2 lines
Diff to previous 1.21 (colored) to selected 1.12 (colored)

USE_LANGUAGES+=c, because linking is done with cc.

Revision 1.21 / (download) - annotate - [select for diffs], Mon Apr 11 21:46:28 2005 UTC (18 years, 11 months ago) by tv
Branch: MAIN
CVS Tags: pkgsrc-2006Q1-base, pkgsrc-2006Q1, pkgsrc-2005Q4-base, pkgsrc-2005Q4, pkgsrc-2005Q3-base, pkgsrc-2005Q3, pkgsrc-2005Q2-base, pkgsrc-2005Q2
Changes since 1.20: +1 -2 lines
Diff to previous 1.20 (colored) to selected 1.12 (colored)

Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.

Revision 1.20 / (download) - annotate - [select for diffs], Wed Jan 12 15:32:00 2005 UTC (19 years, 2 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base, pkgsrc-2005Q1
Changes since 1.19: +2 -2 lines
Diff to previous 1.19 (colored) to selected 1.12 (colored)

Nuke USE_FORTRAN and bring the f2c handling within the mk/compiler
framework.  The list of changes include:

  * Modify compiler.mk so that "c" is always prepended to USE_LANGUAGES,
    so we no longer need to say it in package Makefiles.  Packages
    should now append to USE_LANGUAGES instead of setting it.

  * Create mk/compiler/f2c.mk which implements another pseudo-compiler
    "f2c" that may be used with any C compiler backend, e.g.

	PKGSRC_COMPILER= f2c ccache gcc

  * Teach the various "real" compiler files, e.g., sunpro.mk, mipspro.mk,
    etc., to use f2c if the native Fortran compiler isn't present.

Packages that use Fortran should now simply include the line:

	USE_LANGUAGES+=	fortran

in the package Makefile.

Revision 1.19 / (download) - annotate - [select for diffs], Sun Oct 3 00:12:55 2004 UTC (19 years, 5 months ago) by tv
Branch: MAIN
CVS Tags: pkgsrc-2004Q4-base, pkgsrc-2004Q4
Changes since 1.18: +2 -2 lines
Diff to previous 1.18 (colored) to selected 1.12 (colored)

Libtool fix for PR pkg/26633, and other issues.  Update libtool to 1.5.10
in the process.  (More information on tech-pkg.)

Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.

Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.

Revision 1.18 / (download) - annotate - [select for diffs], Sun May 30 15:29:34 2004 UTC (19 years, 10 months ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base, pkgsrc-2004Q3, pkgsrc-2004Q2-base, pkgsrc-2004Q2
Changes since 1.17: +3 -1 lines
Diff to previous 1.17 (colored) to selected 1.12 (colored)

Create "lib" in the depot to install libraries into the correct place.
Pointed out by Joachim Kuebart on tech-pkg@.

Revision 1.17 / (download) - annotate - [select for diffs], Tue May 18 11:27:29 2004 UTC (19 years, 10 months ago) by uebayasi
Branch: MAIN
Changes since 1.16: +3 -1 lines
Diff to previous 1.16 (colored) to selected 1.12 (colored)

Enable pkgviews installation.

Revision 1.16 / (download) - annotate - [select for diffs], Thu Feb 26 15:26:05 2004 UTC (20 years, 1 month ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2004Q1-base, pkgsrc-2004Q1
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored) to selected 1.12 (colored)

From now on use buildlink3.mk

Revision 1.15 / (download) - annotate - [select for diffs], Tue Jan 20 12:20:04 2004 UTC (20 years, 2 months ago) by agc
Branch: MAIN
Changes since 1.14: +2 -2 lines
Diff to previous 1.14 (colored) to selected 1.12 (colored)

Move WRKSRC definition away from the first paragraph in a Makefile.

Revision 1.14 / (download) - annotate - [select for diffs], Thu Dec 4 09:13:58 2003 UTC (20 years, 3 months ago) by adam
Branch: MAIN
Changes since 1.13: +15 -17 lines
Diff to previous 1.13 (colored) to selected 1.12 (colored)

Now uses libtool and makes shared libraries

Revision 1.13 / (download) - annotate - [select for diffs], Wed Nov 19 16:16:47 2003 UTC (20 years, 4 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2003Q4-base, pkgsrc-2003Q4
Changes since 1.12: +2 -1 lines
Diff to previous 1.12 (colored)

Homepage added

Revision 1.12 / (download) - annotate - [selected], Thu Jul 17 21:47:21 2003 UTC (20 years, 8 months ago) by grant
Branch: MAIN
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (colored)

s/netbsd.org/NetBSD.org/

Revision 1.11 / (download) - annotate - [select for diffs], Mon Jun 2 01:18:34 2003 UTC (20 years, 10 months ago) by jschauma
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored) to selected 1.12 (colored)

Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.
Should anybody feel like they could be the maintainer for any of thewe packages,
please adjust.

Revision 1.10 / (download) - annotate - [select for diffs], Sat Mar 29 12:41:39 2003 UTC (21 years ago) by jmmv
Branch: MAIN
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored) to selected 1.12 (colored)

Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz.

Revision 1.9 / (download) - annotate - [select for diffs], Tue Mar 11 01:46:29 2003 UTC (21 years ago) by jmc
Branch: MAIN
Changes since 1.8: +2 -1 lines
Diff to previous 1.8 (colored) to selected 1.12 (colored)

Add libblas_pic.a as a target and make/install it. Therefore other packages
(like math/R) which try to link libblas into shared objects have proper PIC
objects to use.

Revision 1.8 / (download) - annotate - [select for diffs], Thu Aug 29 17:15:15 2002 UTC (21 years, 7 months ago) by jlam
Branch: MAIN
CVS Tags: netbsd-1-6-1-base, netbsd-1-6-1
Changes since 1.7: +1 -3 lines
Diff to previous 1.7 (colored) to selected 1.12 (colored)

Remove debugging lines that shouldn't have been committed.

Revision 1.7 / (download) - annotate - [select for diffs], Tue Aug 27 17:32:34 2002 UTC (21 years, 7 months ago) by jlam
Branch: MAIN
Changes since 1.6: +4 -1 lines
Diff to previous 1.6 (colored) to selected 1.12 (colored)

Use buildlink2.

Revision 1.6 / (download) - annotate - [select for diffs], Sun Sep 9 20:36:35 2001 UTC (22 years, 6 months ago) by agc
Branch: MAIN
CVS Tags: pkgviews-base, pkgviews, netbsd-1-6-RELEASE-base, netbsd-1-6, netbsd-1-5-PATCH003, buildlink2-base, buildlink2
Changes since 1.5: +1 -2 lines
Diff to previous 1.5 (colored) to selected 1.12 (colored)

Deprecate NO_WRKSUBDIR, replacing it with an explicit assignment of:

WRKSRC= ${WRKDIR}

This is much cleaner, much more indicative of what happens, and removes
another of the negative definitions (NO_.* = value).

Revision 1.5 / (download) - annotate - [select for diffs], Sat Apr 14 21:43:50 2001 UTC (22 years, 11 months ago) by jtb
Branch: MAIN
CVS Tags: netbsd-1-5-PATCH001
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored) to selected 1.12 (colored)

Change MAINTAINER section to packages@netbsd.org

Revision 1.4 / (download) - annotate - [select for diffs], Sat Feb 17 18:22:15 2001 UTC (23 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.3: +2 -1 lines
Diff to previous 1.3 (colored) to selected 1.12 (colored)

Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.

Revision 1.3 / (download) - annotate - [select for diffs], Fri Feb 2 02:21:25 2001 UTC (23 years, 1 month ago) by jtb
Branch: MAIN
Changes since 1.2: +4 -1 lines
Diff to previous 1.2 (colored) to selected 1.12 (colored)

Don't forget to copy the Makefile into ${WRKSRC}.

Revision 1.2 / (download) - annotate - [select for diffs], Fri Feb 2 00:23:49 2001 UTC (23 years, 1 month ago) by jtb
Branch: MAIN
Changes since 1.1: +14 -23 lines
Diff to previous 1.1 (colored) to selected 1.12 (colored)

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.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Mon Nov 6 17:55:12 2000 UTC (23 years, 4 months ago) by wennmach
Branch: TNF
CVS Tags: pkgsrc-base
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored) to selected 1.12 (colored)

Initial import of blas-1.0, Basic Linear Algebra Subroutines for Fortran.
Submitted by Jason Beegan <jasontd@indigo.ie> in PR 11384.

Revision 1.1 / (download) - annotate - [select for diffs], Mon Nov 6 17:55:12 2000 UTC (23 years, 4 months ago) by wennmach
Branch: MAIN
Diff to selected 1.12 (colored)

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>