2000-09-08 11:43:37 +00:00
|
|
|
# -*- mode: Fundamental; tab-width: 4; -*-
|
|
|
|
# ex: ts=4
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
2000-09-28 11:24:31 +00:00
|
|
|
.if !defined(Python_Include)
|
|
|
|
|
2000-09-08 11:43:37 +00:00
|
|
|
Python_Include= bsd.python.mk
|
|
|
|
Python_Include_MAINTAINER= tg@FreeBSD.org
|
|
|
|
|
|
|
|
# This file contains some variable definitions that are supposed to
|
|
|
|
# make your life easier when dealing with ports related to the Python
|
|
|
|
# language. It's automatically included when USE_PYTHON or PYTHON_VERSION
|
|
|
|
# is defined in the ports' makefile. Define PYTHON_VERSION to override the
|
|
|
|
# defaults that USE_PYTHON would give you.
|
|
|
|
#
|
|
|
|
# The variables:
|
|
|
|
#
|
|
|
|
# PYTHON_CMD: Python's command line file name, including the version
|
2000-09-28 11:24:31 +00:00
|
|
|
# number (used for dependencies).
|
2000-10-18 11:56:23 +00:00
|
|
|
# default: ${LOCALBASE}/bin/${PYTHON_VERSION}
|
2000-09-08 11:43:37 +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-10-18 11:56:23 +00:00
|
|
|
#
|
|
|
|
# PYTHON_INCLUDEDIR: Location of the Python include files.
|
|
|
|
# default: ${LOCALBASE}/include/${PYTHON_VERSION}
|
|
|
|
#
|
2000-09-08 11:43:37 +00:00
|
|
|
# PYTHON_LIBDIR: Base of the python library tree
|
2000-10-18 11:56:23 +00:00
|
|
|
# default: ${LOCALBASE}/lib/${PYTHON_VERSION}
|
2000-09-08 11:43:37 +00:00
|
|
|
#
|
2000-09-28 11:24:31 +00:00
|
|
|
# PYTHON_PKGNAMEPREFIX: Use this as a ${PKGNAMEPREFIX} to distinguish
|
|
|
|
# packages for different Python versions.
|
|
|
|
# default: py${PYTHON_SUFFIX}-
|
|
|
|
#
|
2000-09-08 11:43:37 +00:00
|
|
|
# PYTHON_PORTSDIR: The source of your binary's port. Needed for the
|
|
|
|
# RUN_DEPENDS.
|
|
|
|
#
|
|
|
|
# PYTHON_PORTVERSION: Version number suitable for ${PORTVERSION}.
|
|
|
|
#
|
2000-09-12 11:50:53 +00:00
|
|
|
# PYTHON_REL: Version number in numerical format, to ease
|
|
|
|
# comparison in makefiles
|
|
|
|
#
|
2000-09-08 11:43:37 +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-28 11:24:31 +00:00
|
|
|
# PYTHON_SUFFIX: Yet another short version number, primarily intended
|
|
|
|
# for ${PYTHON_PKGNAMEPREFIX}.
|
|
|
|
#
|
2000-09-08 11:43:37 +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
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# PYDISTUTILS: Dependency line for the distutils extension. As of Python-2.0,
|
|
|
|
# the distutils are in the base distribution.
|
|
|
|
#
|
|
|
|
# PYXML: Dependency line for the XML entension. As of Python-2.0,
|
|
|
|
# this extension is in the base distribution.
|
|
|
|
|
|
|
|
# XXX Ugly hack, but running python is the best way to determine the
|
|
|
|
# currently installed version. If Python is not installed, a default
|
|
|
|
# version number is substituted and the corresponding Python distribution
|
|
|
|
# will be built through the dependency processing.
|
|
|
|
_PYTHON_VERSION!= (python -c 'import sys; print sys.version[:3]') 2> /dev/null \
|
2000-10-18 11:56:23 +00:00
|
|
|
|| echo 2.0
|
2000-09-08 11:43:37 +00:00
|
|
|
PYTHON_VERSION?= python${_PYTHON_VERSION}
|
|
|
|
PYTHON_PORTVERSION!= (${PYTHON_VERSION} -c 'import string, sys; \
|
|
|
|
print string.split(sys.version)[0]') 2> /dev/null \
|
2000-10-18 11:56:23 +00:00
|
|
|
|| echo 2.0
|
2000-09-08 11:43:37 +00:00
|
|
|
|
|
|
|
# Python-2.0
|
|
|
|
.if ${PYTHON_VERSION} == "python2.0"
|
2000-09-28 11:24:31 +00:00
|
|
|
PYDISTUTILS= ${PYTHON_LIBDIR}/distutils/core.py:${PYTHON_PORTSDIR}
|
2000-11-20 12:30:14 +00:00
|
|
|
PYXML= ${PYTHON_SITELIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml
|
2000-09-08 11:43:37 +00:00
|
|
|
|
2000-10-18 11:56:23 +00:00
|
|
|
PYTHON_DISTFILE= BeOpen-Python-2.0.tar.gz
|
2000-09-08 11:43:37 +00:00
|
|
|
PYTHON_PORTSDIR= ${PORTSDIR}/lang/python
|
2000-10-18 11:56:23 +00:00
|
|
|
PYTHON_REL= 200
|
2000-09-28 11:24:31 +00:00
|
|
|
PYTHON_SUFFIX= # empty, default version
|
2000-10-18 11:56:23 +00:00
|
|
|
PYTHON_WRKSRC= ${WRKDIR}/Python-2.0
|
2000-09-08 11:43:37 +00:00
|
|
|
|
|
|
|
# Python-1.5
|
|
|
|
.elif ${PYTHON_VERSION} == "python1.5"
|
|
|
|
PYDISTUTILS= ${PYTHON_LIBDIR}/site-packages/distutils/core.py:${PORTSDIR}/misc/py-distutils
|
2000-11-20 12:30:14 +00:00
|
|
|
PYXML= ${PYTHON_SITELIBDIR}/xml/__init__.py:${PORTSDIR}/textproc/py-xml
|
2000-09-08 11:43:37 +00:00
|
|
|
|
|
|
|
PYTHON_DISTFILE= py152.tgz
|
|
|
|
PYTHON_PORTSDIR= ${PORTSDIR}/lang/python15
|
2000-09-12 11:50:53 +00:00
|
|
|
PYTHON_REL= 152
|
2000-10-18 11:56:23 +00:00
|
|
|
PYTHON_SUFFIX= 15
|
2000-09-08 11:43:37 +00:00
|
|
|
PYTHON_WRKSRC= ${WRKDIR}/Python-1.5.2
|
|
|
|
|
|
|
|
.else
|
|
|
|
.BEGIN:
|
|
|
|
@${ECHO} "Error: bad value for PYTHON_VERSION: ${PYTHON_VERSION}."
|
2000-10-18 11:56:23 +00:00
|
|
|
@${ECHO} "Use one of python1.5 or python2.0 (default)."
|
2000-09-08 11:43:37 +00:00
|
|
|
@${FALSE}
|
|
|
|
.endif
|
|
|
|
|
2000-09-28 11:24:31 +00:00
|
|
|
PYTHON_CMD= ${LOCALBASE}/bin/${PYTHON_VERSION}
|
2000-10-18 11:56:23 +00:00
|
|
|
PYTHON_INCLUDEDIR= ${LOCALBASE}/include/${PYTHON_VERSION}
|
2000-09-28 11:24:31 +00:00
|
|
|
PYTHON_LIBDIR= ${LOCALBASE}/lib/${PYTHON_VERSION}
|
|
|
|
PYTHON_PKGNAMEPREFIX= py${PYTHON_SUFFIX}-
|
|
|
|
PYTHON_SITELIBDIR= ${PYTHON_LIBDIR}/site-packages
|
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"
|
|
|
|
BUILD_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR}
|
|
|
|
RUN_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# pkg/PLIST substrings
|
|
|
|
PLIST_SUB+= PYTHON_VERSION=${PYTHON_VERSION}
|
2000-09-28 11:24:31 +00:00
|
|
|
|
|
|
|
# XXX Hm, should I export some of the variables above to *_ENV?
|
|
|
|
|
|
|
|
.endif # !defined(Python_Include)
|