201 lines
5.9 KiB
Makefile
201 lines
5.9 KiB
Makefile
# $NetBSD: pyversion.mk,v 1.22 2003/09/30 22:44:52 kristerw Exp $
|
|
|
|
.if !defined(PYTHON_PYVERSION_MK)
|
|
PYTHON_PYVERSION_MK= defined
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
PYTHON_VERSION_DEFAULT?= 22
|
|
.if ${OPSYS} == "Darwin"
|
|
PYTHON_VERSIONS_ACCEPTED= 22 # the only one that builds
|
|
.else
|
|
PYTHON_VERSIONS_ACCEPTED?= 22 22pth 23 23pth 21 21pth 20
|
|
.endif
|
|
|
|
BUILDLINK_DEPENDS.python15?= python15>=1.5
|
|
BUILDLINK_DEPENDS.python20?= python20>=2.0
|
|
BUILDLINK_DEPENDS.python21?= python21>=2.1
|
|
BUILDLINK_DEPENDS.python21-pth?= python21-pth>=2.1
|
|
BUILDLINK_DEPENDS.python22?= python22>=2.2
|
|
BUILDLINK_DEPENDS.python22-pth?= python22-pth>=2.2
|
|
BUILDLINK_DEPENDS.python23?= python23>=2.3
|
|
BUILDLINK_DEPENDS.python23-pth?= python23-pth>=2.3
|
|
|
|
# transform the list into individual variables
|
|
.for pv in ${PYTHON_VERSIONS_ACCEPTED}
|
|
_PYTHON_VERSION_${pv}_OK= yes
|
|
.endfor
|
|
|
|
# check what is installed
|
|
.if exists(${LOCALBASE}/bin/python2.3)
|
|
_PYTHON_VERSION_23_INSTALLED= yes
|
|
.endif
|
|
.if exists(${LOCALBASE}/bin/python2p3)
|
|
_PYTHON_VERSION_23pth_INSTALLED=yes
|
|
.endif
|
|
.if exists(${LOCALBASE}/bin/python2.2)
|
|
_PYTHON_VERSION_22_INSTALLED= yes
|
|
.endif
|
|
.if exists(${LOCALBASE}/bin/python2p2)
|
|
_PYTHON_VERSION_22pth_INSTALLED=yes
|
|
.endif
|
|
.if exists(${LOCALBASE}/bin/python2.1)
|
|
_PYTHON_VERSION_21_INSTALLED= yes
|
|
.endif
|
|
.if exists(${LOCALBASE}/bin/python2p1)
|
|
_PYTHON_VERSION_21pth_INSTALLED=yes
|
|
.endif
|
|
.if exists(${LOCALBASE}/bin/python2.0)
|
|
_PYTHON_VERSION_20_INSTALLED= yes
|
|
.endif
|
|
.if exists(${LOCALBASE}/bin/python1.5)
|
|
_PYTHON_VERSION_15_INSTALLED= yes
|
|
.endif
|
|
|
|
#
|
|
# choose a python version where to add,
|
|
# try to be intelligent
|
|
#
|
|
# if a version is explicitely required, take it
|
|
.if defined(PYTHON_VERSION_REQD)
|
|
_PYTHON_VERSION= ${PYTHON_VERSION_REQD}
|
|
.endif
|
|
# if the default is already installed, it is first choice
|
|
.if !defined(_PYTHON_VERSION)
|
|
.if defined(_PYTHON_VERSION_${PYTHON_VERSION_DEFAULT}_OK)
|
|
.if defined(_PYTHON_VERSION_${PYTHON_VERSION_DEFAULT}_INSTALLED)
|
|
_PYTHON_VERSION= ${PYTHON_VERSION_DEFAULT}
|
|
.endif
|
|
.endif
|
|
.endif
|
|
# prefer an already installed version, in order of "accepted"
|
|
.if !defined(_PYTHON_VERSION)
|
|
.for pv in ${PYTHON_VERSIONS_ACCEPTED}
|
|
.if defined(_PYTHON_VERSION_${pv}_INSTALLED)
|
|
_PYTHON_VERSION?= ${pv}
|
|
.else
|
|
# keep information as last resort - see below
|
|
_PYTHON_VERSION_FIRSTACCEPTED?= ${pv}
|
|
.endif
|
|
.endfor
|
|
.endif
|
|
# if the default is OK for the addon pkg, take this
|
|
.if !defined(_PYTHON_VERSION)
|
|
.if defined(_PYTHON_VERSION_${PYTHON_VERSION_DEFAULT}_OK)
|
|
_PYTHON_VERSION= ${PYTHON_VERSION_DEFAULT}
|
|
.endif
|
|
.endif
|
|
# take the first one accepted by the package
|
|
.if !defined(_PYTHON_VERSION)
|
|
_PYTHON_VERSION= ${_PYTHON_VERSION_FIRSTACCEPTED}
|
|
.endif
|
|
|
|
#
|
|
# set variables for the version we decided to use:
|
|
# PYVERSSUFFIX: suffix to executables and in library path,
|
|
# equal to sys.version[0:3]
|
|
# PYPKGPREFIX: prefix to use in PKGNAME for extensions which can install
|
|
# to multiple Python versions
|
|
#
|
|
.if ${_PYTHON_VERSION} == "23"
|
|
PYPKGSRCDIR= ../../lang/python23
|
|
PYDEPENDENCY= ${BUILDLINK_DEPENDS.python23}:${PYPKGSRCDIR}
|
|
PYPACKAGE= python23
|
|
PYVERSSUFFIX= 2.3
|
|
PYPKGPREFIX= py23
|
|
.elif ${_PYTHON_VERSION} == "23pth"
|
|
PYPKGSRCDIR= ../../lang/python23-pth
|
|
PYDEPENDENCY= ${BUILDLINK_DEPENDS.python23-pth}:${PYPKGSRCDIR}
|
|
PYPACKAGE= python23-pth
|
|
PYVERSSUFFIX= 2p3
|
|
PYPKGPREFIX= py23pth
|
|
. if defined(USE_BUILDLINK2) && empty(USE_BUILDLINK2:M[nN][oO])
|
|
PTHREAD_OPTS= require
|
|
. include "../../mk/pthread.buildlink2.mk"
|
|
. if ${PTHREAD_TYPE} == "pth"
|
|
. include "../../devel/pth/buildlink2.mk"
|
|
. endif
|
|
. endif
|
|
.elif ${_PYTHON_VERSION} == "22"
|
|
PYPKGSRCDIR= ../../lang/python22
|
|
PYDEPENDENCY= ${BUILDLINK_DEPENDS.python22}:${PYPKGSRCDIR}
|
|
PYPACKAGE= python22
|
|
PYVERSSUFFIX= 2.2
|
|
PYPKGPREFIX= py22
|
|
.elif ${_PYTHON_VERSION} == "22pth"
|
|
PYPKGSRCDIR= ../../lang/python22-pth
|
|
PYDEPENDENCY= ${BUILDLINK_DEPENDS.python22-pth}:${PYPKGSRCDIR}
|
|
PYPACKAGE= python22-pth
|
|
PYVERSSUFFIX= 2p2
|
|
PYPKGPREFIX= py22pth
|
|
. if defined(USE_BUILDLINK2) && empty(USE_BUILDLINK2:M[nN][oO])
|
|
PTHREAD_OPTS= require
|
|
. include "../../mk/pthread.buildlink2.mk"
|
|
. if ${PTHREAD_TYPE} == "pth"
|
|
. include "../../devel/pth/buildlink2.mk"
|
|
. endif
|
|
. endif
|
|
.elif ${_PYTHON_VERSION} == "21"
|
|
PYPKGSRCDIR= ../../lang/python21
|
|
PYPACKAGE= python21
|
|
PYDEPENDENCY= ${BUILDLINK_DEPENDS.python21}:${PYPKGSRCDIR}
|
|
PYVERSSUFFIX= 2.1
|
|
PYPKGPREFIX= py21
|
|
.elif ${_PYTHON_VERSION} == "21pth"
|
|
PYPKGSRCDIR= ../../lang/python21-pth
|
|
PYPACKAGE= python21-pth
|
|
PYDEPENDENCY= ${BUILDLINK_DEPENDS.python21-pth}:${PYPKGSRCDIR}
|
|
PYVERSSUFFIX= 2p1
|
|
PYPKGPREFIX= py21pth
|
|
. if defined(USE_BUILDLINK2) && empty(USE_BUILDLINK2:M[nN][oO])
|
|
PTHREAD_OPTS= require
|
|
. include "../../mk/pthread.buildlink2.mk"
|
|
. if ${PTHREAD_TYPE} == "pth"
|
|
. include "../../devel/pth/buildlink2.mk"
|
|
. endif
|
|
. endif
|
|
.elif ${_PYTHON_VERSION} == "20"
|
|
PYPKGSRCDIR= ../../lang/python20
|
|
PYPACKAGE= python20
|
|
PYDEPENDENCY= ${BUILDLINK_DEPENDS.python20}:${PYPKGSRCDIR}
|
|
PYVERSSUFFIX= 2.0
|
|
PYPKGPREFIX= py20
|
|
.elif ${_PYTHON_VERSION} == "15"
|
|
PYPKGSRCDIR= ../../lang/python15
|
|
PYPACKAGE= python15
|
|
PYDEPENDENCY= ${BUILDLINK_DEPENDS.python15}:${PYPKGSRCDIR}
|
|
PYVERSSUFFIX= 1.5
|
|
PYPKGPREFIX= py15
|
|
.if !defined(PYTHON_DISTUTILS_BOOTSTRAP)
|
|
BUILD_DEPENDS+= py15-distutils-*:../../devel/py-distutils
|
|
.endif
|
|
.else
|
|
# force an error
|
|
error: no valid Python version
|
|
.endif
|
|
|
|
.if defined(USE_BUILDLINK2) && empty(USE_BUILDLINK2:M[nN][oO])
|
|
. if defined(PYTHON_FOR_BUILD_ONLY)
|
|
BUILD_DEPMETHOD.python?= build
|
|
. endif
|
|
. include "${PYPKGSRCDIR}/buildlink2.mk"
|
|
.else
|
|
. if defined(PYTHON_FOR_BUILD_ONLY)
|
|
BUILD_DEPENDS+= ${PYDEPENDENCY}
|
|
. else
|
|
DEPENDS+= ${PYDEPENDENCY}
|
|
. endif
|
|
.endif
|
|
|
|
PYTHONBIN= ${LOCALBASE}/bin/python${PYVERSSUFFIX}
|
|
|
|
.if exists(${PYTHONBIN})
|
|
PYINC!= ${PYTHONBIN} -c "import distutils.sysconfig; \
|
|
print distutils.sysconfig.get_python_inc(0, \"\")" || ${ECHO} ""
|
|
PYLIB!= ${PYTHONBIN} -c "import distutils.sysconfig; \
|
|
print distutils.sysconfig.get_python_lib(0, 1, \"\")" || ${ECHO} ""
|
|
PYSITELIB!= ${PYTHONBIN} -c "import distutils.sysconfig; \
|
|
print distutils.sysconfig.get_python_lib(0, 0, \"\")" || ${ECHO} ""
|
|
.endif
|
|
|
|
.endif # PYTHON_PYVERSION_MK
|