diff options
author | rillig <rillig> | 2008-02-20 10:43:55 +0000 |
---|---|---|
committer | rillig <rillig> | 2008-02-20 10:43:55 +0000 |
commit | 4a548db224529b6a44de3422ac5b1b28a5c92830 (patch) | |
tree | a80f0a78963d51f4480ba8a94e24df457514db56 /lang/python | |
parent | 4dd383ef61ff6e3b667191b9a97aa5ba7162a5bc (diff) | |
download | pkgsrc-4a548db224529b6a44de3422ac5b1b28a5c92830.tar.gz |
Removed colons from variable names so they are accessible to "bmake
help".
Diffstat (limited to 'lang/python')
-rw-r--r-- | lang/python/pyversion.mk | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/lang/python/pyversion.mk b/lang/python/pyversion.mk index 7123d2eee6a..d85d5250738 100644 --- a/lang/python/pyversion.mk +++ b/lang/python/pyversion.mk @@ -1,4 +1,4 @@ -# $NetBSD: pyversion.mk,v 1.51 2008/02/04 23:27:50 joerg Exp $ +# $NetBSD: pyversion.mk,v 1.52 2008/02/20 10:43:55 rillig Exp $ # This file determines which Python version is used as a dependency for # a package. @@ -36,6 +36,20 @@ # Possible values: (defined) (undefined) # Default: (undefined) # +# === Defined variables === +# +# PYPKGPREFIX +# The prefix to use in PKGNAME for extensions which are meant +# to be installed for multiple Python versions. +# +# Example: py24 +# +# PYVERSSUFFIX +# The suffix to executables and in the library path, equal to +# sys.version[0:3]. +# +# Example: 2.4 +# # Keywords: python # @@ -101,13 +115,6 @@ _PYTHON_VERSION?= ${pv} _PYTHON_VERSION= none .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} == "25" PYPKGSRCDIR= ../../wip/python25 PYDEPENDENCY= ${BUILDLINK_API_DEPENDS.python25}:${PYPKGSRCDIR} |