summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authortsutsui <tsutsui@pkgsrc.org>2013-07-09 15:49:43 +0000
committertsutsui <tsutsui@pkgsrc.org>2013-07-09 15:49:43 +0000
commitcab28aade47b2d47f5c0e7eda0689b1179e80dee (patch)
treed3b73284b4c998df61585a3715a2f28e59c0fe61 /x11
parent4ba3a83b3490694ad8b1e396ab3cecf9702e48da (diff)
downloadpkgsrc-cab28aade47b2d47f5c0e7eda0689b1179e80dee.tar.gz
Disable py-numpy option (which requires lang/g95 support) 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 'x11')
-rw-r--r--x11/py-gtk2/Makefile4
-rw-r--r--x11/py-gtk2/options.mk8
2 files changed, 8 insertions, 4 deletions
diff --git a/x11/py-gtk2/Makefile b/x11/py-gtk2/Makefile
index 343f73144ef..cdb9e1db462 100644
--- a/x11/py-gtk2/Makefile
+++ b/x11/py-gtk2/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.94 2013/06/06 12:53:56 wiz Exp $
+# $NetBSD: Makefile,v 1.95 2013/07/09 15:49:43 tsutsui Exp $
#
DISTNAME= pygtk-2.24.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/pygtk/gtk2/}
-PKGREVISION= 13
+PKGREVISION= 14
CATEGORIES= x11 python
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/pygtk/2.24/}
EXTRACT_SUFX= .tar.bz2
diff --git a/x11/py-gtk2/options.mk b/x11/py-gtk2/options.mk
index a07862804ce..ba9fd0592bd 100644
--- a/x11/py-gtk2/options.mk
+++ b/x11/py-gtk2/options.mk
@@ -1,12 +1,16 @@
-# $NetBSD: options.mk,v 1.2 2012/11/30 12:38:26 ryoon Exp $
+# $NetBSD: options.mk,v 1.3 2013/07/09 15:49:43 tsutsui Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.py-gtk2
PKG_SUPPORTED_OPTIONS= py-numpy
+PKG_SUGGESTED_OPTIONS=
+# Enable py-numpy (which requires 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= py-numpy
+# ...but disable it until lang/g95 issue is resolved.
+#PKG_SUGGESTED_OPTIONS+= py-numpy
.endif
.include "../../mk/bsd.options.mk"