diff options
author | tnn <tnn@pkgsrc.org> | 2009-10-20 14:00:23 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2009-10-20 14:00:23 +0000 |
commit | f901f6233f2f4cd59512105939f62856b6933165 (patch) | |
tree | 98ce508265bfa1a5a2a4eed697cc51b16e1607a1 /math/lapack | |
parent | 0b97394178d61051f54a500b656ff8d0ad3f9b01 (diff) | |
download | pkgsrc-f901f6233f2f4cd59512105939f62856b6933165.tar.gz |
patch-ad: Don't remove the $(NOOPT) for slamch.f and dlamch.f
Was probably done unintentionally and caused infinite loops on some platforms.
Patch from Aleksey Cheusov in PR pkg/38371.
Diffstat (limited to 'math/lapack')
-rw-r--r-- | math/lapack/Makefile | 5 | ||||
-rw-r--r-- | math/lapack/distinfo | 4 | ||||
-rw-r--r-- | math/lapack/patches/patch-ad | 13 |
3 files changed, 13 insertions, 9 deletions
diff --git a/math/lapack/Makefile b/math/lapack/Makefile index b24cb042af2..db2c4a1be95 100644 --- a/math/lapack/Makefile +++ b/math/lapack/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.27 2009/02/22 14:15:28 asau Exp $ +# $NetBSD: Makefile,v 1.28 2009/10/20 14:00:23 tnn Exp $ DISTNAME= lapack-lite-3.1.1 PKGNAME= lapack-3.1.1 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_NETLIB:=lapack/} EXTRACT_SUFX= .tgz @@ -13,7 +13,6 @@ COMMENT= Linear Algebra PACKage PKG_INSTALLATION_TYPES= overwrite pkgviews PKG_DESTDIR_SUPPORT= user-destdir -NOT_FOR_BULK_PLATFORM= Linux-*-* USE_LANGUAGES= c fortran USE_LIBTOOL= YES diff --git a/math/lapack/distinfo b/math/lapack/distinfo index b5a1029af6b..1d104b6321d 100644 --- a/math/lapack/distinfo +++ b/math/lapack/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.11 2008/08/12 21:32:04 markd Exp $ +$NetBSD: distinfo,v 1.12 2009/10/20 14:00:23 tnn Exp $ SHA1 (lapack-lite-3.1.1.tgz) = 1ec4ef90b544cf82bc7b4f770cee6fb46da457c5 RMD160 (lapack-lite-3.1.1.tgz) = d81baafd1f0f9859d9f75ac9b658f743544b5f5b @@ -6,4 +6,4 @@ Size (lapack-lite-3.1.1.tgz) = 5332509 bytes SHA1 (patch-aa) = 75671f2cc3233241f03ecab5a5d79cb505eece15 SHA1 (patch-ab) = fd5989eaafc622f29284759f538ccc0f11dfe624 SHA1 (patch-ac) = 649f7e40142936af49c8c9dbec376bdd1a11b05a -SHA1 (patch-ad) = e727bd3e83351f03c3a6cf2b8d5f33d5cbbc37da +SHA1 (patch-ad) = eb9cdf3d47cef03e2c679b0eda8d8120c572a2c0 diff --git a/math/lapack/patches/patch-ad b/math/lapack/patches/patch-ad index 94f252f64d5..d8dfe83b674 100644 --- a/math/lapack/patches/patch-ad +++ b/math/lapack/patches/patch-ad @@ -1,14 +1,19 @@ -$NetBSD: patch-ad,v 1.1 2007/12/10 17:50:31 adam Exp $ +$NetBSD: patch-ad,v 1.2 2009/10/20 14:00:23 tnn Exp $ ---- INSTALL/Makefile.orig 2007-11-22 18:51:41.000000000 +0100 +--- INSTALL/Makefile.orig 2007-02-26 19:19:47.000000000 +0100 +++ INSTALL/Makefile -@@ -29,7 +29,6 @@ testversion: ilaver.o LAPACK_version.o +@@ -29,7 +29,10 @@ testversion: ilaver.o LAPACK_version.o clean: rm -f *.o -slamch.o: slamch.f ; $(FORTRAN) $(NOOPT) -c $< -o $@ -dlamch.o: dlamch.f ; $(FORTRAN) $(NOOPT) -c $< -o $@ - +- -.f.o: ; $(FORTRAN) $(OPTS) -c $< -o $@ ++slamch.o: slamch.f ++ ${LIBTOOL} --mode=compile --tag=CC $(FC) $(NOOPT) -c $< -o $@ ++dlamch.o: dlamch.f ++ ${LIBTOOL} --mode=compile --tag=CC $(FC) $(NOOPT) -c $< -o $@ ++ +.f.o: + ${LIBTOOL} --mode=compile --tag=CC ${FC} ${FFLAGS} -c $< |