diff options
author | tsutsui <tsutsui@pkgsrc.org> | 2013-07-09 15:46:45 +0000 |
---|---|---|
committer | tsutsui <tsutsui@pkgsrc.org> | 2013-07-09 15:46:45 +0000 |
commit | 4ba3a83b3490694ad8b1e396ab3cecf9702e48da (patch) | |
tree | c058cd7707dcec7dc48263d09d5d41d40bd04ce7 /math/fftw | |
parent | 240936b688a865d8ed5dae30c6a701f2ba56df8a (diff) | |
download | pkgsrc-4ba3a83b3490694ad8b1e396ab3cecf9702e48da.tar.gz |
Disable fftw-fortran option by default until lang/g95 issue is resolved.
Also bump PKGREVISION for the option default change.
"Please do that" from wiz@ in PR/48023.
Diffstat (limited to 'math/fftw')
-rw-r--r-- | math/fftw/Makefile | 4 | ||||
-rw-r--r-- | math/fftw/options.mk | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/math/fftw/Makefile b/math/fftw/Makefile index c8bb4ef2cb0..df7cf152146 100644 --- a/math/fftw/Makefile +++ b/math/fftw/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.45 2013/06/29 18:59:43 tsutsui Exp $ +# $NetBSD: Makefile,v 1.46 2013/07/09 15:46:45 tsutsui Exp $ DISTNAME= fftw-3.3.3 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math MASTER_SITES= ftp://ftp.fftw.org/pub/fftw/ \ http://www.fftw.org/ diff --git a/math/fftw/options.mk b/math/fftw/options.mk index 14d3612eb48..89b9dbd9bba 100644 --- a/math/fftw/options.mk +++ b/math/fftw/options.mk @@ -1,13 +1,15 @@ -# $NetBSD: options.mk,v 1.1 2013/06/29 18:59:43 tsutsui Exp $ +# $NetBSD: options.mk,v 1.2 2013/07/09 15:46:45 tsutsui Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.fftw PKG_SUPPORTED_OPTIONS= fftw-fortran +PKG_SUGGESTED_OPTIONS= # Enable fortran support by default on platforms supported by lang/g95. .if (!empty(MACHINE_ARCH:Mi386) || !empty(MACHINE_ARCH:Mx86_64) || \ !empty(MACHINE_ARCH:Mia64) || !empty(MACHINE_ARCH:Mpowerpc*) || \ !empty(MACHINE_ARCH:Mhppa) || !empty(MACHINE_ARCH:Msparc*) || \ !empty(MACHINE_ARCH:Malpha) || !empty(MACHINE_ARCH:Mmips*)) -PKG_SUGGESTED_OPTIONS= fftw-fortran +# ...but disable it until lang/g95 issue is resolved. +#PKG_SUGGESTED_OPTIONS+= fftw-fortran .endif .include "../../mk/bsd.options.mk" |