2012-05-23 08:17:49 +00:00
|
|
|
# -*- tab-width: 4; -*-
|
2000-09-08 11:43:37 +00:00
|
|
|
# ex: ts=4
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
2002-04-17 11:34:47 +00:00
|
|
|
.if !defined(_POSTMKINCLUDED) && !defined(Python_Pre_Include)
|
2000-09-28 11:24:31 +00:00
|
|
|
|
2009-12-18 10:08:32 +00:00
|
|
|
Python_Pre_Include= bsd.python.mk
|
2006-10-09 14:27:26 +00:00
|
|
|
Python_Include_MAINTAINER= python@FreeBSD.org
|
2000-09-08 11:43:37 +00:00
|
|
|
|
|
|
|
# This file contains some variable definitions that are supposed to
|
|
|
|
# make your life easier when dealing with ports related to the Python
|
2002-04-26 10:45:42 +00:00
|
|
|
# language. It's automatically included when USE_PYTHON or PYTHON_VERSION
|
|
|
|
# is defined in the ports' makefile. Define PYTHON_VERSION to override the
|
2003-10-16 05:58:53 +00:00
|
|
|
# defaults that USE_PYTHON would give you. If your port requires only some
|
|
|
|
# set of Python versions, you can define USE_PYTHON as [min]-[max] or
|
|
|
|
# min+. (eg. 2.1-2.3, 2.0+ or -2.2)
|
2000-09-08 11:43:37 +00:00
|
|
|
#
|
|
|
|
# The variables:
|
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHONBASE - Python port's installation prefix.
|
|
|
|
# default: ${LOCALBASE}
|
2002-06-14 11:17:08 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_CMD - Python's command line file name, including the version
|
|
|
|
# number (used for dependencies).
|
|
|
|
# default: ${PYTHONBASE}/bin/${PYTHON_VERSION}
|
2000-09-08 11:43:37 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_DISTFILE - The ${DISTFILE} for your python version. Needed for
|
|
|
|
# extensions like Tkinter, py-gdbm and py-expat, which
|
|
|
|
# are built from sources contained in the Python
|
|
|
|
# distribution.
|
2000-09-08 11:43:37 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_MASTER_SITES
|
|
|
|
# - The ${MASTER_SITES} for your python version. (You must
|
|
|
|
# use this instead of ${MASTER_SITE_PYTHON} to support
|
|
|
|
# python-devel port.)
|
2003-10-29 21:31:13 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_MASTER_SITE_SUBDIR
|
|
|
|
# - The ${MASTER_SITE_SUBDIR} for your python version.
|
2003-10-19 08:49:29 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_INCLUDEDIR - Location of the Python include files.
|
|
|
|
# default: ${PYTHONBASE}/include/${PYTHON_VERSION}
|
2000-10-18 11:56:23 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_LIBDIR - Base of the python library tree
|
|
|
|
# default: ${PYTHONBASE}/lib/${PYTHON_VERSION}
|
2000-09-08 11:43:37 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_PKGNAMEPREFIX
|
|
|
|
# - Use this as a ${PKGNAMEPREFIX} to distinguish
|
|
|
|
# packages for different Python versions.
|
|
|
|
# default: py${PYTHON_SUFFIX}-
|
2000-09-28 11:24:31 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_PKGNAMESUFFIX
|
|
|
|
# - If your port's name is more popular without `py-'
|
|
|
|
# prefix, use this as a ${PKGNAMESUFFIX} alternatively.
|
|
|
|
# default: -py${PYTHON_SUFFIX}
|
2003-10-16 05:58:53 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_PLATFORM - Python's idea of the OS release.
|
|
|
|
# XXX This is faked with ${OPSYS} and ${OSREL} until I
|
|
|
|
# find out how to delay defining a variable until after
|
|
|
|
# a certain target has been built.
|
2001-04-03 11:37:25 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_PORTSDIR - The source of your binary's port. Needed for the
|
|
|
|
# RUN_DEPENDS.
|
2000-09-08 11:43:37 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_PORTVERSION
|
|
|
|
# - Version number suitable for ${PORTVERSION}.
|
2000-09-08 11:43:37 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_REL - Version number in numerical format, to ease
|
|
|
|
# comparison in makefiles
|
2000-09-12 11:50:53 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_SITELIBDIR - Location of the site-packages tree. Don't change,
|
|
|
|
# unless you know what you do.
|
|
|
|
# default: ${PYTHON_LIBDIR}/site-packages
|
2000-09-08 11:43:37 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_SUFFIX - Yet another short version number, primarily intended
|
|
|
|
# for ${PYTHON_PKGNAMEPREFIX}.
|
2000-09-28 11:24:31 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_VERSION - Version of the python binary in your ${PATH}, in the
|
|
|
|
# format "python2.0". Set this in your makefile in case you
|
|
|
|
# want to build extensions with an older binary.
|
|
|
|
# default: depends on the version of your python binary
|
2000-09-08 11:43:37 +00:00
|
|
|
#
|
2007-07-30 09:42:28 +00:00
|
|
|
# PYTHON_DEFAULT_VERSION
|
|
|
|
# - Version of the default python binary in your ${PATH}, in
|
2011-03-04 16:08:23 +00:00
|
|
|
# the format "python2.7". Set this in your /etc/make.conf
|
2007-07-30 09:42:28 +00:00
|
|
|
# in case you want to use an older version as a default.
|
2011-03-04 16:08:23 +00:00
|
|
|
# default: python2.7
|
2007-07-30 09:42:28 +00:00
|
|
|
#
|
2012-12-23 17:52:46 +00:00
|
|
|
# PYTHON3_DEFAULT_VERSION
|
|
|
|
# - Version of the default python binary in your ${PATH}, in
|
|
|
|
# the format "python3.2". Set this in your /etc/make.conf
|
|
|
|
# in case you want to use an older version as a default.
|
|
|
|
# default: python3.3
|
|
|
|
#
|
2012-12-21 15:38:06 +00:00
|
|
|
# PYTHON_MAJOR_VER - Python version major number. 2 for python-2.x,
|
|
|
|
# 3 for python-3.x and so on.
|
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYTHON_WRKSRC - The ${WRKSRC} for your python version. Needed for
|
|
|
|
# extensions like Tkinter, py-gdbm and py-expat, which
|
|
|
|
# are built from sources contained in the Python
|
|
|
|
# distribution.
|
2000-09-08 11:43:37 +00:00
|
|
|
#
|
2002-06-14 11:17:08 +00:00
|
|
|
# There are PREFIX-clean variants of the PYTHON_*DIR variables above.
|
|
|
|
# They are meant to be used in the installation targets.
|
|
|
|
#
|
2012-05-30 14:54:34 +00:00
|
|
|
# PYTHONPREFIX_INCLUDEDIR default: ${PREFIX}/include/${PYTHON_VERSION}
|
|
|
|
# PYTHONPREFIX_LIBDIR default: ${PREFIX}/lib/${PYTHON_VERSION}
|
|
|
|
# PYTHONPREFIX_SITELIBDIR default: ${PYTHONPREFIX_LIBDIR}/site-packages
|
2002-06-14 11:17:08 +00:00
|
|
|
#
|
2012-09-13 04:05:41 +00:00
|
|
|
# PYGAME - Dependency line for the Pygame library.
|
2000-09-08 11:43:37 +00:00
|
|
|
#
|
2008-12-12 15:48:05 +00:00
|
|
|
# PYNUMERIC - Dependency line for the numeric extension.
|
|
|
|
#
|
2006-12-22 05:26:01 +00:00
|
|
|
# PYNUMPY - Dependency line for the new numeric extension.
|
|
|
|
# py-numpy, Py-Numeric is deprecated.
|
2002-07-15 11:35:29 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYXML - Dependency line for the XML extension. As of Python-2.0,
|
|
|
|
# this extension is in the base distribution.
|
2002-04-17 11:34:47 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# USE_PYTHON_PREFIX - Says that the port installs in ${PYTHONBASE}.
|
2002-06-14 11:17:08 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# USE_PYDISTUTILS - Use distutils as do-configure, do-build and do-install
|
|
|
|
# targets.
|
2004-07-08 15:53:45 +00:00
|
|
|
#
|
2007-07-30 09:42:28 +00:00
|
|
|
# PYSETUP - Name of the setup script used by the distutils package.
|
|
|
|
# default: setup.py
|
|
|
|
#
|
|
|
|
# PYDISTUTILS_PKGNAME
|
|
|
|
# - Internal name in the distutils for egg-info.
|
|
|
|
# default: ${PORTNAME}
|
|
|
|
#
|
|
|
|
# PYDISTUTILS_PKGVERSION
|
|
|
|
# - Internal version in the distutils for egg-info.
|
|
|
|
# default: ${PORTVERSION}
|
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYDISTUTILS_CONFIGURE_TARGET
|
|
|
|
# - Pass this command to distutils on configure stage.
|
|
|
|
# default: config
|
2005-10-02 14:31:39 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYDISTUTILS_BUILD_TARGET
|
|
|
|
# - Pass this command to distutils on build stage.
|
|
|
|
# default: build
|
2005-10-02 14:31:39 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYDISTUTILS_INSTALL_TARGET
|
|
|
|
# - Pass this command to distutils on install stage.
|
|
|
|
# default: install
|
2005-10-02 14:31:39 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYDISTUTILS_CONFIGUREARGS
|
|
|
|
# - Arguments to config with distutils.
|
|
|
|
# default: <empty>
|
2002-04-17 11:34:47 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYDISTUTILS_BUILDARGS
|
|
|
|
# - Arguments to build with distutils.
|
|
|
|
# default: <empty>
|
2002-04-17 11:34:47 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# PYDISTUTILS_INSTALLARGS
|
|
|
|
# - Arguments to install with distutils.
|
|
|
|
# default: -c -O1 --prefix=${PREFIX}
|
2002-04-17 11:34:47 +00:00
|
|
|
#
|
2007-07-30 09:42:28 +00:00
|
|
|
# PYDISTUTILS_EGGINFO
|
|
|
|
# - Canonical name for egg-info.
|
2011-07-14 04:13:24 +00:00
|
|
|
# default: ${PYDISTUTILS_PKGNAME:C/[^A-Za-z0-9.]+/_/g}-${PYDISTUTILS_PKGVERSION:C/[^A-Za-z0-9.]+/_/g}-py${PYTHON_VER}.egg-info
|
2007-07-30 09:42:28 +00:00
|
|
|
#
|
|
|
|
# PYDISTUTILS_NOEGGINFO
|
|
|
|
# - Skip an egg-info entry from plist when defined.
|
|
|
|
#
|
|
|
|
# PYEASYINSTALL_EGG
|
|
|
|
# - Canonical directory name for easy_install egg packages.
|
2011-07-14 04:13:24 +00:00
|
|
|
# default: ${PYDISTUTILS_PKGNAME:C/[^A-Za-z0-9.]+/_/g}-${PYDISTUTILS_PKGVERSION:C/[^A-Za-z0-9.]+/_/g}-py${PYTHON_VER}${PYEASYINSTALL_OSARCH}.egg
|
2007-07-30 09:42:28 +00:00
|
|
|
#
|
2007-07-30 17:52:58 +00:00
|
|
|
# PYEASYINSTALL_OSARCH
|
2007-07-30 09:42:28 +00:00
|
|
|
# - Platform identifier for easy_install.
|
|
|
|
# default: -${OPSYS:L}-${_OSRELEASE}-${ARCH}
|
|
|
|
# if PYEASYINSTALL_ARCHDEP is defined.
|
|
|
|
#
|
|
|
|
# PYEASYINSTALL_CMD - Full file path to easy_install command.
|
|
|
|
# default: ${LOCALBASE}/bin/easy_install-${PYTHON_VER}
|
|
|
|
#
|
2007-07-30 12:02:44 +00:00
|
|
|
# PYEASYINSTALL_INSTALLARGS
|
2007-07-30 09:42:28 +00:00
|
|
|
# - Arguments to easy_install command for egg installation.
|
|
|
|
# default: -q -N -S ${PYTHON_SITELIBDIR} ${PYDISTUTILS_PKGNAME}==${PYDISTUTILS_PKGVERSION}
|
|
|
|
#
|
2007-07-30 12:02:44 +00:00
|
|
|
# PYEASYINSTALL_UNINSTALLARGS
|
2007-07-30 09:42:28 +00:00
|
|
|
# - Arguments to easy_install command for egg uninstallation.
|
|
|
|
# default: -q -m -S ${PYTHON_SITELIBDIR} ${PYDISTUTILS_PKGNAME}==${PYDISTUTILS_PKGVERSION}
|
2005-07-07 08:10:24 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# USE_TWISTED - If this option is just yes then build and run
|
|
|
|
# the dependence to twistedCore is added. Alternatively
|
|
|
|
# here can be listed specific components of twisted
|
2009-01-31 09:53:10 +00:00
|
|
|
# framework, available components are: conch, lore,
|
|
|
|
# mail, names, news, runner, web, web2 and words.
|
|
|
|
# Note that core component is required for any of
|
2006-10-08 14:53:49 +00:00
|
|
|
# this optional components.
|
2005-10-02 14:31:39 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# USE_TWISTED_BUILD - Same as previous but add only build dependency.
|
2005-10-02 14:31:39 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# USE_TWISTED_RUN - Same as USE_TWISTED but add only run dependency.
|
2005-07-07 08:10:24 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# USE_ZOPE - Use Zope - an object-based web application platform, this
|
|
|
|
# also sets up:
|
2007-10-07 13:50:15 +00:00
|
|
|
# SZOPEBASEDIR - relative base directory of zope server
|
|
|
|
# ZOPEBASEDIR - absolute base directory of zope that is
|
2007-01-17 10:48:02 +00:00
|
|
|
# ${LOCALBASE}/${SZOPEBASEDIR} by default,
|
2006-10-08 14:53:49 +00:00
|
|
|
# ZOPEPRODUCTDIR - directory, where products for zope can be found
|
2005-11-06 01:28:44 +00:00
|
|
|
#
|
2006-10-08 14:53:49 +00:00
|
|
|
# ZOPE_VERSION - Version of zope that will be used in the port. Set this
|
|
|
|
# in your /etc/make.conf in case you want to use a
|
|
|
|
# specific version of zope.
|
2005-07-07 08:10:24 +00:00
|
|
|
#
|
2000-09-08 11:43:37 +00:00
|
|
|
|
2011-03-04 16:08:23 +00:00
|
|
|
_PYTHON_PORTBRANCH= 2.7
|
2012-12-20 11:55:54 +00:00
|
|
|
_PYTHON_ALLBRANCHES= 2.7 2.6 3.3 3.2 3.1 # preferred first
|
2012-07-16 17:04:29 +00:00
|
|
|
_ZOPE_PORTBRANCH= 2.13
|
|
|
|
_ZOPE_ALLBRANCHES= 2.13
|
2005-11-06 01:28:44 +00:00
|
|
|
|
2003-10-16 05:58:53 +00:00
|
|
|
|
2005-11-06 01:28:44 +00:00
|
|
|
# Determine version number of Zope to use
|
2004-12-19 17:06:16 +00:00
|
|
|
.if defined(USE_ZOPE)
|
2005-11-06 01:28:44 +00:00
|
|
|
.if defined(ZOPE_VERSION)
|
|
|
|
_ZOPE_VERSION:= ${ZOPE_VERSION}
|
|
|
|
.else
|
|
|
|
_ZOPE_VERSION:= ${_ZOPE_PORTBRANCH}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# Validate Zope version whether it meets USE_ZOPE version restriction.
|
2006-11-30 13:51:28 +00:00
|
|
|
_ZOPE_VERSION_CHECK:= ${USE_ZOPE:C/^([1-9]\.[0-9]*)$/\1-\1/}
|
|
|
|
_ZOPE_VERSION_MINIMUM_TMP:= ${_ZOPE_VERSION_CHECK:C/([1-9]\.[0-9]*)[-+].*/\1/}
|
2005-11-06 01:28:44 +00:00
|
|
|
_ZOPE_VERSION_MINIMUM:= ${_ZOPE_VERSION_MINIMUM_TMP:M[1-9].[0-9]}
|
2006-11-30 13:51:28 +00:00
|
|
|
_ZOPE_VERSION_MAXIMUM_TMP:= ${_ZOPE_VERSION_CHECK:C/.*-([1-9]\.[0-9]*)/\1/}
|
2005-11-06 01:28:44 +00:00
|
|
|
_ZOPE_VERSION_MAXIMUM:= ${_ZOPE_VERSION_MAXIMUM_TMP:M[1-9].[0-9]}
|
|
|
|
|
|
|
|
.if !empty(_ZOPE_VERSION_MINIMUM) && ( \
|
|
|
|
${_ZOPE_VERSION} < ${_ZOPE_VERSION_MINIMUM})
|
|
|
|
_ZOPE_VERSION_NONSUPPORTED= ${_ZOPE_VERSION_MINIMUM} at least
|
|
|
|
.elif !empty(_ZOPE_VERSION_MAXIMUM) && ( \
|
|
|
|
${_ZOPE_VERSION} > ${_ZOPE_VERSION_MAXIMUM})
|
|
|
|
_ZOPE_VERSION_NONSUPPORTED= ${_ZOPE_VERSION_MAXIMUM} at most
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# If we have an unsupported version of Zope, try another.
|
|
|
|
.if defined(_ZOPE_VERSION_NONSUPPORTED)
|
|
|
|
.if defined(ZOPE_VERSION)
|
|
|
|
IGNORE= needs Zope ${_ZOPE_VERSION_NONSUPPORTED}.\
|
|
|
|
But you specified ${_ZOPE_VERSION}
|
|
|
|
.else
|
|
|
|
.undef _ZOPE_VERSION
|
|
|
|
.for ver in ${_ZOPE_ALLBRANCHES}
|
|
|
|
__VER= ${ver}
|
|
|
|
.if !defined(_ZOPE_VERSION) && \
|
|
|
|
!(!empty(_ZOPE_VERSION_MINIMUM) && ( \
|
|
|
|
${__VER} < ${_ZOPE_VERSION_MINIMUM})) && \
|
|
|
|
!(!empty(_ZOPE_VERSION_MAXIMUM) && ( \
|
|
|
|
${__VER} > ${_ZOPE_VERSION_MAXIMUM}))
|
|
|
|
_ZOPE_VERSION= ${ver}
|
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
.if !defined(_ZOPE_VERSION)
|
|
|
|
IGNORE= needs an unsupported version of Zope
|
|
|
|
_ZOPE_VERSION= ${_ZOPE_PORTBRANCH} # just to avoid version sanity checking.
|
|
|
|
.endif
|
|
|
|
.endif # defined(ZOPE_VERSION)
|
|
|
|
.endif # defined(_ZOPE_VERSION_NONSUPPORTED)
|
|
|
|
|
|
|
|
ZOPE_VERSION?= ${_ZOPE_VERSION}
|
|
|
|
|
2012-07-16 17:04:29 +00:00
|
|
|
PYTHON_VERSION= python2.7
|
2005-11-06 01:28:44 +00:00
|
|
|
.endif # defined(USE_ZOPE)
|
2004-12-19 17:06:16 +00:00
|
|
|
|
2005-11-06 01:28:44 +00:00
|
|
|
|
|
|
|
# Determine version number of Python to use
|
2007-07-30 09:42:28 +00:00
|
|
|
.if !defined(PYTHON_DEFAULT_VERSION)
|
|
|
|
. if exists(${LOCALBASE}/bin/python)
|
|
|
|
_PYTHON_DEFAULT_VERSION!= (${LOCALBASE}/bin/python -c \
|
2012-05-25 17:13:10 +00:00
|
|
|
'import sys; print(sys.version[:3])' 2> /dev/null \
|
2007-07-30 09:42:28 +00:00
|
|
|
|| ${ECHO_CMD} ${_PYTHON_PORTBRANCH}) | ${TAIL} -1
|
|
|
|
. else
|
|
|
|
_PYTHON_DEFAULT_VERSION= ${_PYTHON_PORTBRANCH}
|
|
|
|
. endif
|
|
|
|
PYTHON_DEFAULT_VERSION= python${_PYTHON_DEFAULT_VERSION}
|
|
|
|
.endif
|
|
|
|
|
2012-12-23 17:52:46 +00:00
|
|
|
.if ${PYTHON_DEFAULT_VERSION:R} == "python3"
|
|
|
|
PYTHON3_DEFAULT_VERSION= ${PYTHON_DEFAULT_VERSION}
|
|
|
|
.else
|
|
|
|
PYTHON3_DEFAULT_VERSION= python3.3
|
|
|
|
.endif
|
|
|
|
|
2003-10-16 05:58:53 +00:00
|
|
|
.if defined(PYTHON_VERSION)
|
2005-10-02 14:31:39 +00:00
|
|
|
_PYTHON_VERSION:= ${PYTHON_VERSION:S/^python//}
|
2003-10-16 05:58:53 +00:00
|
|
|
_PYTHON_CMD= ${LOCALBASE}/bin/${PYTHON_VERSION}
|
|
|
|
.else
|
2007-07-30 09:42:28 +00:00
|
|
|
_PYTHON_VERSION:= ${PYTHON_DEFAULT_VERSION:S/^python//}
|
|
|
|
_PYTHON_CMD= ${LOCALBASE}/bin/${PYTHON_DEFAULT_VERSION}
|
2002-06-14 11:17:08 +00:00
|
|
|
.endif
|
2003-10-16 05:58:53 +00:00
|
|
|
|
2004-07-08 15:53:45 +00:00
|
|
|
.if !defined(USE_PYTHON)
|
|
|
|
.if defined(USE_PYTHON_BUILD)
|
|
|
|
USE_PYTHON= ${USE_PYTHON_BUILD}
|
|
|
|
.elif defined(USE_PYTHON_RUN)
|
|
|
|
USE_PYTHON= ${USE_PYTHON_RUN}
|
|
|
|
.else
|
2011-07-14 04:13:24 +00:00
|
|
|
USE_PYTHON= yes
|
2004-07-08 15:53:45 +00:00
|
|
|
.endif # defined(USE_PYTHON_BUILD)
|
|
|
|
.else
|
|
|
|
USE_PYTHON_BUILD= yes
|
|
|
|
USE_PYTHON_RUN= yes
|
|
|
|
.endif # !defined(USE_PYTHON)
|
|
|
|
|
2003-10-16 05:58:53 +00:00
|
|
|
# Validate Python version whether it meets USE_PYTHON version restriction.
|
2005-10-02 14:31:39 +00:00
|
|
|
_PYTHON_VERSION_CHECK:= ${USE_PYTHON:C/^([1-9]\.[0-9])$/\1-\1/}
|
|
|
|
_PYTHON_VERSION_MINIMUM_TMP:= ${_PYTHON_VERSION_CHECK:C/([1-9]\.[0-9])[-+].*/\1/}
|
|
|
|
_PYTHON_VERSION_MINIMUM:= ${_PYTHON_VERSION_MINIMUM_TMP:M[1-9].[0-9]}
|
|
|
|
_PYTHON_VERSION_MAXIMUM_TMP:= ${_PYTHON_VERSION_CHECK:C/.*-([1-9]\.[0-9])/\1/}
|
|
|
|
_PYTHON_VERSION_MAXIMUM:= ${_PYTHON_VERSION_MAXIMUM_TMP:M[1-9].[0-9]}
|
|
|
|
|
2003-10-16 05:58:53 +00:00
|
|
|
.if !empty(_PYTHON_VERSION_MINIMUM) && ( \
|
|
|
|
${_PYTHON_VERSION} < ${_PYTHON_VERSION_MINIMUM})
|
|
|
|
_PYTHON_VERSION_NONSUPPORTED= ${_PYTHON_VERSION_MINIMUM} at least
|
|
|
|
.elif !empty(_PYTHON_VERSION_MAXIMUM) && ( \
|
|
|
|
${_PYTHON_VERSION} > ${_PYTHON_VERSION_MAXIMUM})
|
|
|
|
_PYTHON_VERSION_NONSUPPORTED= ${_PYTHON_VERSION_MAXIMUM} at most
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# If we have an unsupported version of Python, try another.
|
|
|
|
.if defined(_PYTHON_VERSION_NONSUPPORTED)
|
|
|
|
.if defined(PYTHON_VERSION) || defined(PYTHON_CMD)
|
|
|
|
IGNORE= needs Python ${_PYTHON_VERSION_NONSUPPORTED}.\
|
|
|
|
But you specified ${_PYTHON_VERSION}
|
|
|
|
.else
|
|
|
|
.undef _PYTHON_VERSION
|
|
|
|
.for ver in ${_PYTHON_ALLBRANCHES}
|
|
|
|
__VER= ${ver}
|
|
|
|
.if !defined(_PYTHON_VERSION) && \
|
|
|
|
!(!empty(_PYTHON_VERSION_MINIMUM) && ( \
|
|
|
|
${__VER} < ${_PYTHON_VERSION_MINIMUM})) && \
|
|
|
|
!(!empty(_PYTHON_VERSION_MAXIMUM) && ( \
|
|
|
|
${__VER} > ${_PYTHON_VERSION_MAXIMUM}))
|
|
|
|
_PYTHON_VERSION= ${ver}
|
|
|
|
_PYTHON_CMD= ${LOCALBASE}/bin/python${ver}
|
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
.if !defined(_PYTHON_VERSION)
|
|
|
|
IGNORE= needs an unsupported version of Python
|
|
|
|
_PYTHON_VERSION= ${_PYTHON_PORTBRANCH} # just to avoid version sanity checking.
|
|
|
|
.endif
|
|
|
|
.endif # defined(PYTHON_VERSION) || defined(PYTHON_CMD)
|
|
|
|
.endif # defined(_PYTHON_VERSION_NONSUPPORTED)
|
|
|
|
|
2000-09-08 11:43:37 +00:00
|
|
|
PYTHON_VERSION?= python${_PYTHON_VERSION}
|
2003-10-16 05:58:53 +00:00
|
|
|
PYTHON_CMD?= ${_PYTHON_CMD}
|
Major optimizations for 'make index' and other recursive traversal
targets.
* Use /rescue/sh for index builds instead of /bin/sh, when it exists.
The former is statically linked and faster to execute, which becomes
significant when executing it tens of thousands of times. This
trick can be used with other recursive targets by passing in
__MAKE_SHELL.
* Get rid of make variable assignments that use != command invocations
in the critical path, using several methods:
- rewriting logic to use shell or make builtins instead of external command executions
- macroizing commands and executing them in the targets where they
are needed instead of with every invocation of make
- precomputing the results of invariant commands in
bsd.port.subdir.mk and passing them in explicitly to child makes,
and using this to avoid recalculation in all the children. NB: the
commands are still run one per top-level subdirectory but this
does not currently seem to be a major issue. They could be moved
further up into the top-level Makefile at the cost of some
cleanliness.
- Committers are strongly discouraged from adding further "bare" !=
assignments to the ports tree, even in their own ports. One of
the above strategies should be used to avoid future bloat.
* Rewrite the core 'describe' target to work entirely within a single
shell process using only builtin commands. The old version is
retained as a backup for use on systems older than 603104, which
does not have the make :u modifier. This cuts down the number of
processes executed during the course of a 'make index' by an order
of magnitude, and we are essentially now amortized to the minimum of
a single make + sh instance per port, plus whatever commands the
port makefile itself executes (which are usually unnecessary and
bogus).
* Less validation of the WWW: target is performed; this can become
policed at a port level by portlint. Specifically we look at the
second word of the first line beginning with "WWW:" in pkg-descr,
and append "http://" to it unless it already begins with "http://",
"https://" or "ftp://". Thanks to dougb for the idea of how to
extract WWW: using shell builtins.
* Use the "true" shell builtin instead of echo > /dev/null for a
measurable decrease in CPU use.
* Add a note about dubious escaping strategy in bsd.port.subdir.mk
* Minor change in output of 'make describe': it no longer strips
trailing CR characters from pkg-descr files with MSDOS CR/LF
termination. Instead the makeindex perl script that post-processes
make describe into the INDEX is tweaked to strip on input.
The bottom line is that on my test hardware INDEX builds are now
faster by more than a factor of 2 and with a reduction in system time
by a factor of 4-8 depending on configuration.
2008-07-19 17:59:41 +00:00
|
|
|
.if !defined(PYTHONBASE)
|
2012-05-25 17:13:10 +00:00
|
|
|
PYTHONBASE!= (${PYTHON_CMD} -c 'import sys; print(sys.prefix)' \
|
2006-06-16 15:43:52 +00:00
|
|
|
2> /dev/null || ${ECHO_CMD} ${LOCALBASE}) | ${TAIL} -1
|
Major optimizations for 'make index' and other recursive traversal
targets.
* Use /rescue/sh for index builds instead of /bin/sh, when it exists.
The former is statically linked and faster to execute, which becomes
significant when executing it tens of thousands of times. This
trick can be used with other recursive targets by passing in
__MAKE_SHELL.
* Get rid of make variable assignments that use != command invocations
in the critical path, using several methods:
- rewriting logic to use shell or make builtins instead of external command executions
- macroizing commands and executing them in the targets where they
are needed instead of with every invocation of make
- precomputing the results of invariant commands in
bsd.port.subdir.mk and passing them in explicitly to child makes,
and using this to avoid recalculation in all the children. NB: the
commands are still run one per top-level subdirectory but this
does not currently seem to be a major issue. They could be moved
further up into the top-level Makefile at the cost of some
cleanliness.
- Committers are strongly discouraged from adding further "bare" !=
assignments to the ports tree, even in their own ports. One of
the above strategies should be used to avoid future bloat.
* Rewrite the core 'describe' target to work entirely within a single
shell process using only builtin commands. The old version is
retained as a backup for use on systems older than 603104, which
does not have the make :u modifier. This cuts down the number of
processes executed during the course of a 'make index' by an order
of magnitude, and we are essentially now amortized to the minimum of
a single make + sh instance per port, plus whatever commands the
port makefile itself executes (which are usually unnecessary and
bogus).
* Less validation of the WWW: target is performed; this can become
policed at a port level by portlint. Specifically we look at the
second word of the first line beginning with "WWW:" in pkg-descr,
and append "http://" to it unless it already begins with "http://",
"https://" or "ftp://". Thanks to dougb for the idea of how to
extract WWW: using shell builtins.
* Use the "true" shell builtin instead of echo > /dev/null for a
measurable decrease in CPU use.
* Add a note about dubious escaping strategy in bsd.port.subdir.mk
* Minor change in output of 'make describe': it no longer strips
trailing CR characters from pkg-descr files with MSDOS CR/LF
termination. Instead the makeindex perl script that post-processes
make describe into the INDEX is tweaked to strip on input.
The bottom line is that on my test hardware INDEX builds are now
faster by more than a factor of 2 and with a reduction in system time
by a factor of 4-8 depending on configuration.
2008-07-19 17:59:41 +00:00
|
|
|
.endif
|
2003-12-20 07:13:43 +00:00
|
|
|
DEPENDS_ARGS+= PYTHON_VERSION=${PYTHON_VERSION}
|
Major optimizations for 'make index' and other recursive traversal
targets.
* Use /rescue/sh for index builds instead of /bin/sh, when it exists.
The former is statically linked and faster to execute, which becomes
significant when executing it tens of thousands of times. This
trick can be used with other recursive targets by passing in
__MAKE_SHELL.
* Get rid of make variable assignments that use != command invocations
in the critical path, using several methods:
- rewriting logic to use shell or make builtins instead of external command executions
- macroizing commands and executing them in the targets where they
are needed instead of with every invocation of make
- precomputing the results of invariant commands in
bsd.port.subdir.mk and passing them in explicitly to child makes,
and using this to avoid recalculation in all the children. NB: the
commands are still run one per top-level subdirectory but this
does not currently seem to be a major issue. They could be moved
further up into the top-level Makefile at the cost of some
cleanliness.
- Committers are strongly discouraged from adding further "bare" !=
assignments to the ports tree, even in their own ports. One of
the above strategies should be used to avoid future bloat.
* Rewrite the core 'describe' target to work entirely within a single
shell process using only builtin commands. The old version is
retained as a backup for use on systems older than 603104, which
does not have the make :u modifier. This cuts down the number of
processes executed during the course of a 'make index' by an order
of magnitude, and we are essentially now amortized to the minimum of
a single make + sh instance per port, plus whatever commands the
port makefile itself executes (which are usually unnecessary and
bogus).
* Less validation of the WWW: target is performed; this can become
policed at a port level by portlint. Specifically we look at the
second word of the first line beginning with "WWW:" in pkg-descr,
and append "http://" to it unless it already begins with "http://",
"https://" or "ftp://". Thanks to dougb for the idea of how to
extract WWW: using shell builtins.
* Use the "true" shell builtin instead of echo > /dev/null for a
measurable decrease in CPU use.
* Add a note about dubious escaping strategy in bsd.port.subdir.mk
* Minor change in output of 'make describe': it no longer strips
trailing CR characters from pkg-descr files with MSDOS CR/LF
termination. Instead the makeindex perl script that post-processes
make describe into the INDEX is tweaked to strip on input.
The bottom line is that on my test hardware INDEX builds are now
faster by more than a factor of 2 and with a reduction in system time
by a factor of 4-8 depending on configuration.
2008-07-19 17:59:41 +00:00
|
|
|
|
|
|
|
# We can only use the cached version if we are using the default python version. Otherwise it
|
|
|
|
# should point to some other version we have installed, according to the port USE_PYTHON
|
|
|
|
# specification
|
|
|
|
.if !defined(PYTHON_DEFAULT_PORTVERSION) || (${PYTHON_VERSION} != ${PYTHON_DEFAULT_VERSION})
|
2012-05-25 17:13:10 +00:00
|
|
|
_PYTHON_PORTVERSION!= (${PYTHON_CMD} -c 'import sys; \
|
|
|
|
print(sys.version.split()[0].replace("b",".b"))' 2> /dev/null) | ${TAIL} -1
|
2003-10-29 21:31:13 +00:00
|
|
|
.if !defined(PYTHON_NO_DEPENDS) && !empty(_PYTHON_PORTVERSION)
|
2003-10-19 08:49:29 +00:00
|
|
|
PYTHON_PORTVERSION= ${_PYTHON_PORTVERSION}
|
|
|
|
.endif
|
Major optimizations for 'make index' and other recursive traversal
targets.
* Use /rescue/sh for index builds instead of /bin/sh, when it exists.
The former is statically linked and faster to execute, which becomes
significant when executing it tens of thousands of times. This
trick can be used with other recursive targets by passing in
__MAKE_SHELL.
* Get rid of make variable assignments that use != command invocations
in the critical path, using several methods:
- rewriting logic to use shell or make builtins instead of external command executions
- macroizing commands and executing them in the targets where they
are needed instead of with every invocation of make
- precomputing the results of invariant commands in
bsd.port.subdir.mk and passing them in explicitly to child makes,
and using this to avoid recalculation in all the children. NB: the
commands are still run one per top-level subdirectory but this
does not currently seem to be a major issue. They could be moved
further up into the top-level Makefile at the cost of some
cleanliness.
- Committers are strongly discouraged from adding further "bare" !=
assignments to the ports tree, even in their own ports. One of
the above strategies should be used to avoid future bloat.
* Rewrite the core 'describe' target to work entirely within a single
shell process using only builtin commands. The old version is
retained as a backup for use on systems older than 603104, which
does not have the make :u modifier. This cuts down the number of
processes executed during the course of a 'make index' by an order
of magnitude, and we are essentially now amortized to the minimum of
a single make + sh instance per port, plus whatever commands the
port makefile itself executes (which are usually unnecessary and
bogus).
* Less validation of the WWW: target is performed; this can become
policed at a port level by portlint. Specifically we look at the
second word of the first line beginning with "WWW:" in pkg-descr,
and append "http://" to it unless it already begins with "http://",
"https://" or "ftp://". Thanks to dougb for the idea of how to
extract WWW: using shell builtins.
* Use the "true" shell builtin instead of echo > /dev/null for a
measurable decrease in CPU use.
* Add a note about dubious escaping strategy in bsd.port.subdir.mk
* Minor change in output of 'make describe': it no longer strips
trailing CR characters from pkg-descr files with MSDOS CR/LF
termination. Instead the makeindex perl script that post-processes
make describe into the INDEX is tweaked to strip on input.
The bottom line is that on my test hardware INDEX builds are now
faster by more than a factor of 2 and with a reduction in system time
by a factor of 4-8 depending on configuration.
2008-07-19 17:59:41 +00:00
|
|
|
.elif defined(PYTHON_DEFAULT_PORTVERSION)
|
|
|
|
PYTHON_PORTVERSION= ${PYTHON_DEFAULT_PORTVERSION}
|
|
|
|
.endif
|
2001-05-02 11:49:36 +00:00
|
|
|
|
2005-01-29 01:47:40 +00:00
|
|
|
# Propagate the chosen python version to submakes.
|
|
|
|
.MAKEFLAGS: PYTHON_VERSION=python${_PYTHON_VERSION}
|
|
|
|
|
2012-12-20 11:55:54 +00:00
|
|
|
# Python-3.3
|
|
|
|
.if ${PYTHON_VERSION} == "python3.3"
|
|
|
|
PYTHON_PORTVERSION?=3.3.0
|
|
|
|
PYTHON_PORTSDIR= ${PORTSDIR}/lang/python33
|
|
|
|
PYTHON_REL= 330
|
|
|
|
PYTHON_SUFFIX= 33
|
|
|
|
PYTHON_VER= 3.3
|
|
|
|
.if exists(${PYTHON_CMD}-config)
|
|
|
|
PYTHON_ABIVER!= ${PYTHON_CMD}-config --abiflags
|
|
|
|
.endif
|
|
|
|
|
2011-02-22 07:44:48 +00:00
|
|
|
# Python-3.2
|
2012-12-20 11:55:54 +00:00
|
|
|
.elif ${PYTHON_VERSION} == "python3.2"
|
2012-04-11 12:52:17 +00:00
|
|
|
PYTHON_PORTVERSION?=3.2.3
|
2011-02-22 07:44:48 +00:00
|
|
|
PYTHON_PORTSDIR= ${PORTSDIR}/lang/python32
|
2012-04-11 12:52:17 +00:00
|
|
|
PYTHON_REL= 323
|
2011-02-22 07:44:48 +00:00
|
|
|
PYTHON_SUFFIX= 32
|
|
|
|
PYTHON_VER= 3.2
|
2011-07-14 04:13:24 +00:00
|
|
|
.if exists(${PYTHON_CMD}-config)
|
|
|
|
PYTHON_ABIVER!= ${PYTHON_CMD}-config --abiflags
|
|
|
|
.endif
|
2011-02-22 07:44:48 +00:00
|
|
|
|
2009-07-06 20:30:29 +00:00
|
|
|
# Python-3.1
|
2011-02-22 07:44:48 +00:00
|
|
|
.elif ${PYTHON_VERSION} == "python3.1"
|
2012-04-11 12:52:17 +00:00
|
|
|
PYTHON_PORTVERSION?=3.1.5
|
2009-07-06 20:30:29 +00:00
|
|
|
PYTHON_PORTSDIR= ${PORTSDIR}/lang/python31
|
2012-04-11 12:52:17 +00:00
|
|
|
PYTHON_REL= 315
|
2009-07-06 20:30:29 +00:00
|
|
|
PYTHON_SUFFIX= 31
|
|
|
|
PYTHON_VER= 3.1
|
|
|
|
|
2010-08-15 19:12:51 +00:00
|
|
|
# Python-2.7
|
|
|
|
.elif ${PYTHON_VERSION} == "python2.7"
|
2012-04-11 12:52:17 +00:00
|
|
|
PYTHON_PORTVERSION?=2.7.3
|
2010-08-15 19:12:51 +00:00
|
|
|
PYTHON_PORTSDIR= ${PORTSDIR}/lang/python27
|
2012-04-11 12:52:17 +00:00
|
|
|
PYTHON_REL= 273
|
2010-08-15 19:12:51 +00:00
|
|
|
PYTHON_SUFFIX= 27
|
|
|
|
PYTHON_VER= 2.7
|
|
|
|
|
2008-10-13 08:23:00 +00:00
|
|
|
# Python-2.6
|
|
|
|
.elif ${PYTHON_VERSION} == "python2.6"
|
2012-04-11 12:52:17 +00:00
|
|
|
PYTHON_PORTVERSION?=2.6.8
|
2008-10-13 08:23:00 +00:00
|
|
|
PYTHON_PORTSDIR= ${PORTSDIR}/lang/python26
|
2012-04-11 12:52:17 +00:00
|
|
|
PYTHON_REL= 268
|
2008-10-13 08:23:00 +00:00
|
|
|
PYTHON_SUFFIX= 26
|
|
|
|
PYTHON_VER= 2.6
|
|
|
|
|
2002-06-14 11:17:08 +00:00
|
|
|
# Python versions in development
|
|
|
|
.elif defined(FORCE_PYTHON_VERSION)
|
|
|
|
PYTHON_PORTSDIR= # empty
|
|
|
|
PYTHON_NO_DEPENDS= YES
|
|
|
|
PYTHON_REL!= ${PYTHON_CMD} -c 'import sys; h = "%x" % sys.hexversion; \
|
2012-05-25 17:13:10 +00:00
|
|
|
print(h[0]+h[2]+h[4])'
|
2002-06-14 11:17:08 +00:00
|
|
|
PYTHON_SUFFIX!= ${PYTHON_CMD} -c 'import sys; h = "%x" % sys.hexversion; \
|
2012-05-25 17:13:10 +00:00
|
|
|
print(h[0]+h[2])'
|
|
|
|
PYTHON_VER!= ${PYTHON_CMD} -c 'import sys; print(sys.version[:3])'
|
2002-06-14 11:17:08 +00:00
|
|
|
|
2000-09-08 11:43:37 +00:00
|
|
|
.else
|
2004-01-20 09:14:10 +00:00
|
|
|
check-makevars::
|
|
|
|
@${ECHO} "Makefile error: bad value for PYTHON_VERSION: ${PYTHON_VERSION}."
|
2001-05-02 11:49:36 +00:00
|
|
|
@${ECHO} "Legal values are:"
|
2011-03-04 16:08:23 +00:00
|
|
|
@${ECHO} " python2.6"
|
|
|
|
@${ECHO} " python2.7 (default)"
|
2009-07-06 20:30:29 +00:00
|
|
|
@${ECHO} " python3.1"
|
2011-02-22 07:44:48 +00:00
|
|
|
@${ECHO} " python3.2"
|
2012-12-20 11:55:54 +00:00
|
|
|
@${ECHO} " python3.3"
|
2000-09-08 11:43:37 +00:00
|
|
|
@${FALSE}
|
|
|
|
.endif
|
|
|
|
|
2012-12-21 15:38:06 +00:00
|
|
|
PYTHON_MAJOR_VER= ${PYTHON_VER:R}
|
|
|
|
|
2005-01-29 05:01:02 +00:00
|
|
|
PYTHON_MASTER_SITES= ${MASTER_SITE_PYTHON}
|
2010-08-18 19:11:34 +00:00
|
|
|
PYTHON_MASTER_SITE_SUBDIR= ftp/python/${PYTHON_PORTVERSION:C/rc[0-9]//}
|
2012-10-03 04:06:37 +00:00
|
|
|
PYTHON_DISTFILE= Python-${PYTHON_PORTVERSION:S/.rc/rc/}${EXTRACT_SUFX}
|
2008-10-13 08:23:00 +00:00
|
|
|
PYTHON_WRKSRC= ${WRKDIR}/Python-${PYTHON_PORTVERSION:S/.rc/rc/}
|
2003-10-19 08:49:29 +00:00
|
|
|
|
2011-07-14 04:13:24 +00:00
|
|
|
PYTHON_ABIVER?= # empty
|
|
|
|
PYTHON_INCLUDEDIR= ${PYTHONBASE}/include/${PYTHON_VERSION}${PYTHON_ABIVER}
|
2002-06-14 11:17:08 +00:00
|
|
|
PYTHON_LIBDIR= ${PYTHONBASE}/lib/${PYTHON_VERSION}
|
2000-09-28 11:24:31 +00:00
|
|
|
PYTHON_PKGNAMEPREFIX= py${PYTHON_SUFFIX}-
|
2003-10-16 05:58:53 +00:00
|
|
|
PYTHON_PKGNAMESUFFIX= -py${PYTHON_SUFFIX}
|
2005-12-07 04:23:32 +00:00
|
|
|
PYTHON_PLATFORM= ${OPSYS:L}${OSREL:C/\.[0-9.]*//}
|
2000-09-28 11:24:31 +00:00
|
|
|
PYTHON_SITELIBDIR= ${PYTHON_LIBDIR}/site-packages
|
2002-06-14 11:17:08 +00:00
|
|
|
|
|
|
|
PYTHONPREFIX_INCLUDEDIR= ${PYTHON_INCLUDEDIR:S;${PYTHONBASE};${PREFIX};}
|
|
|
|
PYTHONPREFIX_LIBDIR= ${PYTHON_LIBDIR:S;${PYTHONBASE};${PREFIX};}
|
|
|
|
PYTHONPREFIX_SITELIBDIR= ${PYTHON_SITELIBDIR:S;${PYTHONBASE};${PREFIX};}
|
|
|
|
|
2007-07-30 09:42:28 +00:00
|
|
|
# setuptools support
|
|
|
|
.if defined(USE_PYDISTUTILS) && ${USE_PYDISTUTILS} == "easy_install"
|
2011-07-14 04:13:24 +00:00
|
|
|
.if ${PYTHON_SUFFIX} < 30
|
2007-07-30 09:42:28 +00:00
|
|
|
BUILD_DEPENDS+= ${PYEASYINSTALL_CMD}:${PORTSDIR}/devel/py-setuptools
|
|
|
|
RUN_DEPENDS+= ${PYEASYINSTALL_CMD}:${PORTSDIR}/devel/py-setuptools
|
2011-07-14 04:13:24 +00:00
|
|
|
.else
|
|
|
|
BUILD_DEPENDS+= ${PYEASYINSTALL_CMD}:${PORTSDIR}/devel/py-distribute
|
|
|
|
RUN_DEPENDS+= ${PYEASYINSTALL_CMD}:${PORTSDIR}/devel/py-distribute
|
|
|
|
.endif
|
2007-07-30 09:42:28 +00:00
|
|
|
|
|
|
|
PYDISTUTILS_BUILD_TARGET?= bdist_egg
|
|
|
|
PYDISTUTILS_INSTALL_TARGET?= easy_install
|
2007-10-07 13:50:15 +00:00
|
|
|
PYDISTUTILS_INSTALLARGS?= -O 1 -N -S ${PYTHON_SITELIBDIR} \
|
|
|
|
-d ${PYEASYINSTALL_SITELIBDIR} \
|
|
|
|
-s ${PYEASYINSTALL_BINDIR} \
|
|
|
|
${WRKSRC}/dist/${PYEASYINSTALL_EGG}
|
2007-10-10 07:04:49 +00:00
|
|
|
.if ${PREFIX} != ${LOCALBASE}
|
2007-10-07 13:50:15 +00:00
|
|
|
MAKE_ENV+= PYTHONPATH=${PYEASYINSTALL_SITELIBDIR}
|
2007-10-10 07:04:49 +00:00
|
|
|
.endif
|
2007-07-30 09:42:28 +00:00
|
|
|
|
|
|
|
.if defined(PYEASYINSTALL_ARCHDEP)
|
Major optimizations for 'make index' and other recursive traversal
targets.
* Use /rescue/sh for index builds instead of /bin/sh, when it exists.
The former is statically linked and faster to execute, which becomes
significant when executing it tens of thousands of times. This
trick can be used with other recursive targets by passing in
__MAKE_SHELL.
* Get rid of make variable assignments that use != command invocations
in the critical path, using several methods:
- rewriting logic to use shell or make builtins instead of external command executions
- macroizing commands and executing them in the targets where they
are needed instead of with every invocation of make
- precomputing the results of invariant commands in
bsd.port.subdir.mk and passing them in explicitly to child makes,
and using this to avoid recalculation in all the children. NB: the
commands are still run one per top-level subdirectory but this
does not currently seem to be a major issue. They could be moved
further up into the top-level Makefile at the cost of some
cleanliness.
- Committers are strongly discouraged from adding further "bare" !=
assignments to the ports tree, even in their own ports. One of
the above strategies should be used to avoid future bloat.
* Rewrite the core 'describe' target to work entirely within a single
shell process using only builtin commands. The old version is
retained as a backup for use on systems older than 603104, which
does not have the make :u modifier. This cuts down the number of
processes executed during the course of a 'make index' by an order
of magnitude, and we are essentially now amortized to the minimum of
a single make + sh instance per port, plus whatever commands the
port makefile itself executes (which are usually unnecessary and
bogus).
* Less validation of the WWW: target is performed; this can become
policed at a port level by portlint. Specifically we look at the
second word of the first line beginning with "WWW:" in pkg-descr,
and append "http://" to it unless it already begins with "http://",
"https://" or "ftp://". Thanks to dougb for the idea of how to
extract WWW: using shell builtins.
* Use the "true" shell builtin instead of echo > /dev/null for a
measurable decrease in CPU use.
* Add a note about dubious escaping strategy in bsd.port.subdir.mk
* Minor change in output of 'make describe': it no longer strips
trailing CR characters from pkg-descr files with MSDOS CR/LF
termination. Instead the makeindex perl script that post-processes
make describe into the INDEX is tweaked to strip on input.
The bottom line is that on my test hardware INDEX builds are now
faster by more than a factor of 2 and with a reduction in system time
by a factor of 4-8 depending on configuration.
2008-07-19 17:59:41 +00:00
|
|
|
.if !defined(_OSRELEASE)
|
2007-07-30 09:42:28 +00:00
|
|
|
_OSRELEASE!= ${UNAME} -r
|
Major optimizations for 'make index' and other recursive traversal
targets.
* Use /rescue/sh for index builds instead of /bin/sh, when it exists.
The former is statically linked and faster to execute, which becomes
significant when executing it tens of thousands of times. This
trick can be used with other recursive targets by passing in
__MAKE_SHELL.
* Get rid of make variable assignments that use != command invocations
in the critical path, using several methods:
- rewriting logic to use shell or make builtins instead of external command executions
- macroizing commands and executing them in the targets where they
are needed instead of with every invocation of make
- precomputing the results of invariant commands in
bsd.port.subdir.mk and passing them in explicitly to child makes,
and using this to avoid recalculation in all the children. NB: the
commands are still run one per top-level subdirectory but this
does not currently seem to be a major issue. They could be moved
further up into the top-level Makefile at the cost of some
cleanliness.
- Committers are strongly discouraged from adding further "bare" !=
assignments to the ports tree, even in their own ports. One of
the above strategies should be used to avoid future bloat.
* Rewrite the core 'describe' target to work entirely within a single
shell process using only builtin commands. The old version is
retained as a backup for use on systems older than 603104, which
does not have the make :u modifier. This cuts down the number of
processes executed during the course of a 'make index' by an order
of magnitude, and we are essentially now amortized to the minimum of
a single make + sh instance per port, plus whatever commands the
port makefile itself executes (which are usually unnecessary and
bogus).
* Less validation of the WWW: target is performed; this can become
policed at a port level by portlint. Specifically we look at the
second word of the first line beginning with "WWW:" in pkg-descr,
and append "http://" to it unless it already begins with "http://",
"https://" or "ftp://". Thanks to dougb for the idea of how to
extract WWW: using shell builtins.
* Use the "true" shell builtin instead of echo > /dev/null for a
measurable decrease in CPU use.
* Add a note about dubious escaping strategy in bsd.port.subdir.mk
* Minor change in output of 'make describe': it no longer strips
trailing CR characters from pkg-descr files with MSDOS CR/LF
termination. Instead the makeindex perl script that post-processes
make describe into the INDEX is tweaked to strip on input.
The bottom line is that on my test hardware INDEX builds are now
faster by more than a factor of 2 and with a reduction in system time
by a factor of 4-8 depending on configuration.
2008-07-19 17:59:41 +00:00
|
|
|
.endif
|
2007-07-30 09:42:28 +00:00
|
|
|
PYEASYINSTALL_OSARCH?= -${OPSYS:L}-${_OSRELEASE}-${ARCH}
|
|
|
|
.endif
|
2011-07-14 04:13:24 +00:00
|
|
|
PYEASYINSTALL_EGG?= ${PYDISTUTILS_PKGNAME:C/[^A-Za-z0-9.]+/_/g}-${PYDISTUTILS_PKGVERSION:C/[^A-Za-z0-9.]+/_/g}-py${PYTHON_VER}${PYEASYINSTALL_OSARCH}.egg
|
2007-07-30 09:42:28 +00:00
|
|
|
PYEASYINSTALL_CMD?= ${LOCALBASE}/bin/easy_install-${PYTHON_VER}
|
2007-10-07 13:50:15 +00:00
|
|
|
PYEASYINSTALL_BINDIR?= ${PREFIX}/bin
|
|
|
|
PYEASYINSTALL_SITELIBDIR?= ${PYTHONPREFIX_SITELIBDIR}
|
2007-07-30 09:42:28 +00:00
|
|
|
PYEASYINSTALL_INSTALLARGS?= -q -N -S ${PYTHON_SITELIBDIR} \
|
2007-10-07 13:50:15 +00:00
|
|
|
-d ${PYEASYINSTALL_SITELIBDIR} \
|
|
|
|
-s ${PYEASYINSTALL_BINDIR} \
|
2007-07-30 09:42:28 +00:00
|
|
|
${PYDISTUTILS_PKGNAME}==${PYDISTUTILS_PKGVERSION}
|
2011-11-07 12:40:53 +00:00
|
|
|
PYEASYINSTALL_UNINSTALLARGS?= -q -N -m -S ${PYTHON_SITELIBDIR} \
|
2007-10-07 13:50:15 +00:00
|
|
|
-d ${PYEASYINSTALL_SITELIBDIR} \
|
|
|
|
-s ${PYEASYINSTALL_BINDIR} \
|
2007-07-30 09:42:28 +00:00
|
|
|
${PYDISTUTILS_PKGNAME}==${PYDISTUTILS_PKGVERSION}
|
|
|
|
|
|
|
|
PLIST_SUB+= PYEASYINSTALL_EGG=${PYEASYINSTALL_EGG}
|
|
|
|
|
2007-10-07 13:50:15 +00:00
|
|
|
pre-install: pre-install-easyinstall
|
|
|
|
pre-install-easyinstall:
|
|
|
|
@${MKDIR} ${PYEASYINSTALL_SITELIBDIR}
|
|
|
|
|
2007-07-30 09:42:28 +00:00
|
|
|
add-plist-post: add-plist-easyinstall
|
|
|
|
add-plist-easyinstall:
|
|
|
|
@# @unexec line must be located before any other line while @exec must not.
|
|
|
|
@${CAT} ${TMPPLIST} > ${TMPPLIST}.pei_tmp
|
|
|
|
@${ECHO_CMD} "@unexec ${PYEASYINSTALL_CMD} ${PYEASYINSTALL_UNINSTALLARGS}" \
|
|
|
|
> ${TMPPLIST}
|
|
|
|
@${CAT} ${TMPPLIST}.pei_tmp >> ${TMPPLIST}
|
2007-10-07 13:50:15 +00:00
|
|
|
@${ECHO_CMD} "@exec ${SETENV} PYTHONPATH=${PYEASYINSTALL_SITELIBDIR} \
|
|
|
|
${PYEASYINSTALL_CMD} ${PYEASYINSTALL_INSTALLARGS}" \
|
2007-07-30 09:42:28 +00:00
|
|
|
>> ${TMPPLIST}
|
|
|
|
.endif # defined(USE_PYDISTUTILS) && ${USE_PYDISTUTILS} == "easy_install"
|
|
|
|
|
|
|
|
# distutils support
|
2002-04-17 11:34:47 +00:00
|
|
|
PYSETUP?= setup.py
|
2004-07-08 15:53:45 +00:00
|
|
|
PYDISTUTILS_CONFIGUREARGS?=
|
2002-04-17 11:34:47 +00:00
|
|
|
PYDISTUTILS_BUILDARGS?=
|
|
|
|
PYDISTUTILS_INSTALLARGS?= -c -O1 --prefix=${PREFIX}
|
2007-07-30 09:42:28 +00:00
|
|
|
PYDISTUTILS_PKGNAME?= ${PORTNAME}
|
|
|
|
PYDISTUTILS_PKGVERSION?=${PORTVERSION}
|
2011-07-14 04:13:24 +00:00
|
|
|
PYDISTUTILS_EGGINFO?= ${PYDISTUTILS_PKGNAME:C/[^A-Za-z0-9.]+/_/g}-${PYDISTUTILS_PKGVERSION:C/[^A-Za-z0-9.]+/_/g}-py${PYTHON_VER}.egg-info
|
2007-10-07 13:50:15 +00:00
|
|
|
PYDISTUTILS_EGGINFODIR?=${PYTHONPREFIX_SITELIBDIR}
|
2007-07-30 09:42:28 +00:00
|
|
|
|
|
|
|
.if !defined(PYDISTUTILS_NOEGGINFO) && \
|
|
|
|
(defined(INSTALLS_EGGINFO) || \
|
|
|
|
(defined(USE_PYDISTUTILS) && \
|
|
|
|
${USE_PYDISTUTILS} != "easy_install")) && \
|
2012-09-11 14:27:22 +00:00
|
|
|
defined(PYTHON_REL)
|
2007-07-30 09:42:28 +00:00
|
|
|
. for egg in ${PYDISTUTILS_EGGINFO}
|
|
|
|
PLIST_FILES+= ${PYDISTUTILS_EGGINFODIR:S;${PREFIX}/;;}/${egg}
|
|
|
|
. endfor
|
|
|
|
.endif
|
2000-09-08 11:43:37 +00:00
|
|
|
|
2011-03-05 00:39:33 +00:00
|
|
|
# Fix for programs that build python from a GNU auto* environment
|
2007-02-26 07:32:02 +00:00
|
|
|
CONFIGURE_ENV+= PYTHON="${PYTHON_CMD}"
|
|
|
|
|
2005-11-06 01:28:44 +00:00
|
|
|
# Zope-related variables
|
2002-09-20 18:56:41 +00:00
|
|
|
.if defined(USE_ZOPE)
|
2012-07-16 17:04:29 +00:00
|
|
|
.if ${ZOPE_VERSION} == "2.13"
|
2012-09-11 14:27:22 +00:00
|
|
|
ZOPE_DEPENDS= zope213>0:${PORTSDIR}/www/zope213
|
2005-11-06 01:28:44 +00:00
|
|
|
.else
|
|
|
|
check-makevars::
|
|
|
|
@${ECHO} "Makefile error: bad value for ZOPE_VERSION: ${ZOPE_VERSION}."
|
2012-07-16 17:04:29 +00:00
|
|
|
@${ECHO} "Legal values are: 2.13 (default)"
|
2005-11-06 01:28:44 +00:00
|
|
|
@${FALSE}
|
|
|
|
.endif
|
2007-08-04 11:37:24 +00:00
|
|
|
ZOPEBASEDIR?= ${PREFIX}/${SZOPEBASEDIR}
|
2004-04-19 07:29:44 +00:00
|
|
|
ZOPEPRODUCTDIR?= Products
|
2002-09-20 18:56:41 +00:00
|
|
|
.endif
|
|
|
|
|
2005-11-06 01:28:44 +00:00
|
|
|
# Python 3rd-party modules
|
2012-09-13 04:05:41 +00:00
|
|
|
PYGAME= ${PYTHON_PKGNAMEPREFIX}game>0:${PORTSDIR}/devel/py-game
|
2003-07-31 19:34:54 +00:00
|
|
|
PYNUMERIC= ${PYTHON_SITELIBDIR}/Numeric/Numeric.py:${PORTSDIR}/math/py-numeric
|
2006-12-08 04:57:49 +00:00
|
|
|
PYNUMPY= ${PYTHON_SITELIBDIR}/numpy/core/numeric.py:${PORTSDIR}/math/py-numpy
|
2003-07-31 19:34:54 +00:00
|
|
|
PYXML= ${PYTHON_SITELIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml
|
|
|
|
|
2000-09-08 11:43:37 +00:00
|
|
|
# dependencies
|
2000-09-28 11:24:31 +00:00
|
|
|
PYTHON_NO_DEPENDS?= NO
|
2000-09-08 11:43:37 +00:00
|
|
|
|
|
|
|
.if ${PYTHON_NO_DEPENDS} == "NO"
|
2004-07-08 15:53:45 +00:00
|
|
|
.if defined(USE_PYTHON_BUILD)
|
2000-09-08 11:43:37 +00:00
|
|
|
BUILD_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR}
|
2004-07-08 15:53:45 +00:00
|
|
|
.endif
|
|
|
|
.if defined(USE_PYTHON_RUN)
|
2000-09-08 11:43:37 +00:00
|
|
|
RUN_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR}
|
2004-07-08 15:53:45 +00:00
|
|
|
.endif
|
2002-04-17 11:34:47 +00:00
|
|
|
.endif # ${PYTHON_NO_DEPENDS} == "NO"
|
2000-09-08 11:43:37 +00:00
|
|
|
|
2002-09-20 18:56:41 +00:00
|
|
|
.if defined(USE_ZOPE)
|
2012-09-11 14:27:22 +00:00
|
|
|
RUN_DEPENDS+= ${ZOPE_DEPENDS}
|
2002-09-20 18:56:41 +00:00
|
|
|
.endif
|
|
|
|
|
2002-06-14 11:17:08 +00:00
|
|
|
# set $PREFIX as Python's one
|
|
|
|
.if defined(USE_PYTHON_PREFIX)
|
|
|
|
PREFIX= ${PYTHONBASE}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# Substitutions for pkg-plist
|
|
|
|
# Use a short form of the PYTHONPREFIX_*DIR variables; we don't need the
|
|
|
|
# base directory in the plist file.
|
|
|
|
PLIST_SUB+= PYTHON_INCLUDEDIR=${PYTHONPREFIX_INCLUDEDIR:S;${PREFIX}/;;} \
|
|
|
|
PYTHON_LIBDIR=${PYTHONPREFIX_LIBDIR:S;${PREFIX}/;;} \
|
|
|
|
PYTHON_PLATFORM=${PYTHON_PLATFORM} \
|
|
|
|
PYTHON_SITELIBDIR=${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;} \
|
|
|
|
PYTHON_VERSION=${PYTHON_VERSION}
|
2000-09-28 11:24:31 +00:00
|
|
|
|
2002-09-20 18:56:41 +00:00
|
|
|
# Zope specific substitutions
|
|
|
|
.if defined(USE_ZOPE)
|
2004-01-26 02:11:36 +00:00
|
|
|
PLIST_SUB+= ZOPEBASEDIR=${SZOPEBASEDIR} \
|
|
|
|
ZOPEPRODUCTDIR=${SZOPEBASEDIR}/${ZOPEPRODUCTDIR}
|
2002-09-20 18:56:41 +00:00
|
|
|
.endif
|
|
|
|
|
2005-07-07 08:10:24 +00:00
|
|
|
# Twisted specific routines
|
2005-10-02 14:31:39 +00:00
|
|
|
.if defined(USE_TWISTED) || defined(USE_TWISTED_BUILD) || defined(USE_TWISTED_RUN)
|
|
|
|
|
|
|
|
.if defined(USE_TWISTED_BUILD) && defined(USE_TWISTED_RUN)
|
|
|
|
. if ${USE_TWISTED_BUILD} != ${USE_TWISTED_RUN}
|
|
|
|
IGNORE= : USE_TWISTED_BUILD and USE_TWISTED_RUN must have equal values
|
|
|
|
. endif
|
|
|
|
.endif
|
|
|
|
|
2005-07-07 08:10:24 +00:00
|
|
|
.if defined(USE_TWISTED)
|
2005-10-02 14:31:39 +00:00
|
|
|
TWISTED_BUILD_DEP= yes
|
|
|
|
TWISTED_RUN_DEP= yes
|
|
|
|
.else
|
|
|
|
. if defined(USE_TWISTED_BUILD)
|
|
|
|
TWISTED_BUILD_DEP= yes
|
|
|
|
USE_TWISTED= ${USE_TWISTED_BUILD}
|
|
|
|
. endif
|
|
|
|
. if defined(USE_TWISTED_RUN)
|
|
|
|
TWISTED_RUN_DEP= yes
|
|
|
|
USE_TWISTED= ${USE_TWISTED_RUN}
|
|
|
|
. endif
|
|
|
|
.endif
|
2005-07-07 08:10:24 +00:00
|
|
|
|
|
|
|
.if ${USE_TWISTED} == "20" || ${USE_TWISTED} == "yes"
|
|
|
|
USE_TWISTED_VER= ${USE_TWISTED}
|
2005-10-02 14:31:39 +00:00
|
|
|
. if defined(TWISTED_BUILD_DEP)
|
|
|
|
BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/__init__.py:${PORTSDIR}/devel/py-twistedCore
|
|
|
|
. endif
|
|
|
|
. if defined(TWISTED_RUN_DEP)
|
2005-07-07 08:10:24 +00:00
|
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/__init__.py:${PORTSDIR}/devel/py-twistedCore
|
2005-10-02 14:31:39 +00:00
|
|
|
. endif
|
2005-07-07 08:10:24 +00:00
|
|
|
.else
|
2005-10-02 14:31:39 +00:00
|
|
|
USE_TWISTED_VER= 20
|
2007-01-17 10:48:02 +00:00
|
|
|
# Checking for twisted components
|
2009-01-31 09:53:10 +00:00
|
|
|
_TWISTED_COMPONENTS?= conch lore mail names news runner web web2 words
|
2005-07-07 08:10:24 +00:00
|
|
|
|
|
|
|
# XXX Should be here other dependencies types?
|
2009-01-31 09:53:10 +00:00
|
|
|
conch_DEPENDS= ${PYTHON_SITELIBDIR}/twisted/conch/__init__.py:${PORTSDIR}/security/py-twistedConch
|
|
|
|
lore_DEPENDS= ${PYTHON_SITELIBDIR}/twisted/lore/__init__.py:${PORTSDIR}/textproc/py-twistedLore
|
2005-10-02 14:31:39 +00:00
|
|
|
mail_DEPENDS= ${PYTHON_SITELIBDIR}/twisted/mail/__init__.py:${PORTSDIR}/mail/py-twistedMail
|
|
|
|
names_DEPENDS= ${PYTHON_SITELIBDIR}/twisted/names/__init__.py:${PORTSDIR}/dns/py-twistedNames
|
2009-01-31 09:53:10 +00:00
|
|
|
news_DEPENDS= ${PYTHON_SITELIBDIR}/twisted/news/__init__.py:${PORTSDIR}/news/py-twistedNews
|
2011-09-07 09:27:54 +00:00
|
|
|
pair_DEPENDS= ${PYTHON_SITELIBDIR}/twisted/pair/__init__.py:${PORTSDIR}/net/py-twistedPair
|
2009-01-31 09:53:10 +00:00
|
|
|
runner_DEPENDS= ${PYTHON_SITELIBDIR}/twisted/runner/__init__.py:${PORTSDIR}/devel/py-twistedRunner
|
|
|
|
web2_DEPENDS= ${PYTHON_SITELIBDIR}/twisted/web2/__init__.py:${PORTSDIR}/www/py-twistedWeb2
|
|
|
|
web_DEPENDS= ${PYTHON_SITELIBDIR}/twisted/web/__init__.py:${PORTSDIR}/www/py-twistedWeb
|
|
|
|
words_DEPENDS= ${PYTHON_SITELIBDIR}/twisted/words/__init__.py:${PORTSDIR}/net-im/py-twistedWords
|
2005-07-07 08:10:24 +00:00
|
|
|
|
|
|
|
.for component in ${_TWISTED_COMPONENTS}
|
|
|
|
_COMP_TEST= ${USE_TWISTED:M${component}}
|
|
|
|
. if ${_COMP_TEST:S/${component}//}!=${_COMP_TEST:S/ / /g}
|
2005-10-02 14:31:39 +00:00
|
|
|
. if defined(TWISTED_BUILD_DEP)
|
|
|
|
BUILD_DEPENDS+= ${${component}_DEPENDS}
|
|
|
|
. endif
|
|
|
|
. if defined(TWISTED_RUN_DEP)
|
|
|
|
RUN_DEPENDS+= ${${component}_DEPENDS}
|
|
|
|
. endif
|
2005-07-07 08:10:24 +00:00
|
|
|
. endif
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
# Implicit dependency from core
|
2005-10-02 14:31:39 +00:00
|
|
|
.if defined(TWISTED_BUILD_DEP)
|
|
|
|
BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/__init__.py:${PORTSDIR}/devel/py-twistedCore
|
|
|
|
.endif
|
|
|
|
.if defined(TWISTED_RUN_DEP)
|
2005-07-07 08:10:24 +00:00
|
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/__init__.py:${PORTSDIR}/devel/py-twistedCore
|
|
|
|
.endif
|
|
|
|
|
2005-10-02 14:31:39 +00:00
|
|
|
.endif
|
|
|
|
|
2005-07-07 08:10:24 +00:00
|
|
|
.endif # defined(USE_TWISTED)
|
|
|
|
|
2000-09-28 11:24:31 +00:00
|
|
|
# XXX Hm, should I export some of the variables above to *_ENV?
|
|
|
|
|
2012-06-19 17:18:13 +00:00
|
|
|
# If multiple Python versions are installed and cmake is used, it might
|
|
|
|
# happen that a cmake-enabled port using find_package(PythonLibs) and
|
|
|
|
# find_package(PythonInterp) detects different Python versions.
|
|
|
|
# This in turn might cause it to link against version X while using the
|
|
|
|
# includes of version Y, leading to a broken port.
|
|
|
|
# Enforce a certain Python version by using PYTHON_VER for cmake.
|
|
|
|
.if defined(USE_CMAKE)
|
|
|
|
CMAKE_ARGS+= -DPythonLibs_FIND_VERSION:STRING="${PYTHON_VER}" \
|
|
|
|
-DPythonInterp_FIND_VERSION:STRING="${PYTHON_VER}"
|
|
|
|
.endif
|
|
|
|
|
2002-04-17 11:34:47 +00:00
|
|
|
.endif # !defined(_POSTMKINCLUDED) && !defined(Python_Pre_Include)
|
|
|
|
|
|
|
|
.if defined(_POSTMKINCLUDED) && !defined(Python_Post_Include)
|
|
|
|
|
|
|
|
Python_Post_Include= bsd.python.mk
|
|
|
|
|
|
|
|
# py-distutils support
|
2005-10-02 14:31:39 +00:00
|
|
|
PYDISTUTILS_CONFIGURE_TARGET?= config
|
|
|
|
PYDISTUTILS_BUILD_TARGET?= build
|
|
|
|
PYDISTUTILS_INSTALL_TARGET?= install
|
|
|
|
|
2002-04-17 11:34:47 +00:00
|
|
|
.if defined(USE_PYDISTUTILS)
|
2011-03-05 00:39:33 +00:00
|
|
|
LDSHARED?= ${CC} -shared
|
2012-06-17 12:28:19 +00:00
|
|
|
MAKE_ENV+= LDSHARED="${LDSHARED}" PYTHONDONTWRITEBYTECODE= PYTHONOPTIMIZE=
|
2011-03-05 00:39:33 +00:00
|
|
|
|
2004-07-10 02:00:14 +00:00
|
|
|
.if !target(do-configure) && !defined(HAS_CONFIGURE) && !defined(GNU_CONFIGURE)
|
2004-07-08 15:53:45 +00:00
|
|
|
do-configure:
|
2005-10-02 14:31:39 +00:00
|
|
|
@(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYSETUP} ${PYDISTUTILS_CONFIGURE_TARGET} ${PYDISTUTILS_CONFIGUREARGS})
|
2004-07-08 15:53:45 +00:00
|
|
|
.endif
|
|
|
|
|
2002-04-17 11:34:47 +00:00
|
|
|
.if !target(do-build)
|
|
|
|
do-build:
|
2005-10-02 14:31:39 +00:00
|
|
|
@(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYSETUP} ${PYDISTUTILS_BUILD_TARGET} ${PYDISTUTILS_BUILDARGS})
|
2002-04-17 11:34:47 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(do-install)
|
|
|
|
do-install:
|
2005-10-02 14:31:39 +00:00
|
|
|
@(cd ${INSTALL_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYSETUP} ${PYDISTUTILS_INSTALL_TARGET} ${PYDISTUTILS_INSTALLARGS})
|
2002-04-17 11:34:47 +00:00
|
|
|
.endif
|
2007-10-07 13:50:15 +00:00
|
|
|
|
|
|
|
.if defined(PYEASYINSTALL_ARCHDEP)
|
|
|
|
.if !target(easyinstall-setopt)
|
|
|
|
easyinstall-setopt:
|
|
|
|
@(cd ${BUILD_WRKSRC}; \
|
|
|
|
${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYSETUP} setopt -c build -o build-platlib -s lib.${PYEASYINSTALL_OSARCH:S/^-//}; \
|
|
|
|
${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYSETUP} setopt -c build -o build-temp -s temp.${PYEASYINSTALL_OSARCH:S/^-//}-${PYTHON_VER}; \
|
|
|
|
${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYSETUP} setopt -c bdist_egg -o plat-name -s ${PYEASYINSTALL_OSARCH:S/^-//}; \
|
|
|
|
${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYSETUP} setopt -c bdist -o plat-name -s ${PYEASYINSTALL_OSARCH:S/^-//})
|
|
|
|
.endif # !target(eayinstall-setopt)
|
|
|
|
|
|
|
|
pre-build: easyinstall-setopt
|
|
|
|
.endif # defined(PYEASYINSTALL_ARCHDEP)
|
2002-04-17 11:34:47 +00:00
|
|
|
.endif # defined(USE_PYDISTUTILS)
|
|
|
|
|
|
|
|
.endif # defined(_POSTMKINCLUDED) && !defined(Python_Post_Include)
|