summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authortsutsui <tsutsui>2013-07-09 15:46:45 +0000
committertsutsui <tsutsui>2013-07-09 15:46:45 +0000
commit2faf2895ee5484389b05b02a0457474aef003f3e (patch)
treec058cd7707dcec7dc48263d09d5d41d40bd04ce7 /math
parentf3f0e779f29ec4f6194714c46557347ad47b9471 (diff)
downloadpkgsrc-2faf2895ee5484389b05b02a0457474aef003f3e.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')
-rw-r--r--math/fftw/Makefile4
-rw-r--r--math/fftw/options.mk6
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"