diff options
author | tsutsui <tsutsui> | 2013-07-09 15:49:43 +0000 |
---|---|---|
committer | tsutsui <tsutsui> | 2013-07-09 15:49:43 +0000 |
commit | e020f4da9f809e111e9d35f5ef546174f09825a6 (patch) | |
tree | d3b73284b4c998df61585a3715a2f28e59c0fe61 /x11/py-gtk2 | |
parent | f35a9f54b1237d8a332e729e917fe5b6a117680a (diff) | |
download | pkgsrc-e020f4da9f809e111e9d35f5ef546174f09825a6.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/py-gtk2')
-rw-r--r-- | x11/py-gtk2/Makefile | 4 | ||||
-rw-r--r-- | x11/py-gtk2/options.mk | 8 |
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" |