mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-21 10:37:53 -04:00
22 lines
615 B
Makefile
22 lines
615 B
Makefile
# $NetBSD: options.mk,v 1.2 2014/01/25 08:59:57 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.qgis
|
|
PKG_SUPPORTED_OPTIONS= python
|
|
PKG_SUGGESTED_OPTIONS+= python
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= python
|
|
|
|
.if empty(PKG_OPTIONS:Mpython)
|
|
CMAKE_ARGS+= -DWITH_BINDINGS:BOOL=FALSE
|
|
.else
|
|
CMAKE_ARGS+= -DWITH_BINDINGS:BOOL=TRUE
|
|
CMAKE_ARGS+= -DSIP_BINARY_PATH:PATH=${BUILDLINK_PREFIX.py-sip}/bin
|
|
PLIST.python= yes
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of 1.7.4
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../x11/py-qt4/buildlink3.mk"
|
|
.include "../../x11/py-sip/buildlink3.mk"
|
|
.endif
|