13 lines
359 B
Makefile
13 lines
359 B
Makefile
# $NetBSD: options.mk,v 1.2 2018/07/03 05:03:09 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.gdb
|
|
PKG_SUPPORTED_OPTIONS= python
|
|
PKG_SUGGESTED_OPTIONS= python
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mpython)
|
|
CONFIGURE_ARGS+= --with-python=${PYTHONBIN}
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 37
|
|
.include "../../lang/python/application.mk"
|
|
.endif
|