summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2008-02-20 10:43:55 +0000
committerrillig <rillig@pkgsrc.org>2008-02-20 10:43:55 +0000
commit0f021654718a1f97000aac025d1f6f1c6c7ec668 (patch)
treea80f0a78963d51f4480ba8a94e24df457514db56
parentd63608279ef1be798aea1b36d66ff38aa1a7c050 (diff)
downloadpkgsrc-0f021654718a1f97000aac025d1f6f1c6c7ec668.tar.gz
Removed colons from variable names so they are accessible to "bmake
help".
-rw-r--r--lang/python/pyversion.mk23
-rw-r--r--mk/check/check-headers.mk4
-rw-r--r--mk/check/check-portability.mk10
-rw-r--r--mk/check/check-shlibs.mk6
-rw-r--r--mk/depends/bsd.depends.mk4
5 files changed, 27 insertions, 20 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}
diff --git a/mk/check/check-headers.mk b/mk/check/check-headers.mk
index b084d0878e5..81c92dbdc12 100644
--- a/mk/check/check-headers.mk
+++ b/mk/check/check-headers.mk
@@ -1,4 +1,4 @@
-# $NetBSD: check-headers.mk,v 1.4 2007/03/16 10:29:22 rillig Exp $
+# $NetBSD: check-headers.mk,v 1.5 2008/02/20 10:43:55 rillig Exp $
#
# This file checks the C and C++ header files for possible problems.
#
@@ -11,7 +11,7 @@
#
# Package-settable-variables:
#
-# CHECK_HEADERS_SKIP:
+# CHECK_HEADERS_SKIP
# A list of filename patterns that should be skipped for this test.
#
diff --git a/mk/check/check-portability.mk b/mk/check/check-portability.mk
index dc947b5c1d4..03482ff4dd7 100644
--- a/mk/check/check-portability.mk
+++ b/mk/check/check-portability.mk
@@ -1,4 +1,4 @@
-# $NetBSD: check-portability.mk,v 1.5 2008/02/20 10:27:35 rillig Exp $
+# $NetBSD: check-portability.mk,v 1.6 2008/02/20 10:43:55 rillig Exp $
#
# This file contains some checks that are applied to the configure
# scripts to check for certain constructs that are known to cause
@@ -6,7 +6,7 @@
#
# The following variables may be set by the pkgsrc user in mk.conf:
#
-# CHECK_PORTABILITY: YesNo
+# CHECK_PORTABILITY
# Whether to enable some portability checks for the configure
# scripts before they are run.
#
@@ -14,7 +14,7 @@
#
# The following variables may be set by the package:
#
-# SKIP_PORTABILITY_CHECK: YesNo
+# SKIP_PORTABILITY_CHECK
# Whether the above checks should be skipped for the current
# package.
#
@@ -22,12 +22,12 @@
# Deprecated: Use CHECK_PORTABILITY_SKIP instead.
# Obsolete since 2008-02-20.
#
-# CHECK_PORTABILITY_SKIP: List of Pathmask
+# CHECK_PORTABILITY_SKIP
# The list of files that should be skipped in the portability
# check.
#
# Default value: empty.
-#
+# Example: debian/*
_VARGROUPS+= check-portability
_USER_VARS.check-portability= CHECK_PORTABILITY
diff --git a/mk/check/check-shlibs.mk b/mk/check/check-shlibs.mk
index 22783994cac..1d68a63474f 100644
--- a/mk/check/check-shlibs.mk
+++ b/mk/check/check-shlibs.mk
@@ -1,18 +1,18 @@
-# $NetBSD: check-shlibs.mk,v 1.14 2008/02/07 21:36:13 rillig Exp $
+# $NetBSD: check-shlibs.mk,v 1.15 2008/02/20 10:43:55 rillig Exp $
#
# This file verifies that all libraries used by the package can be found
# at run-time.
#
# User-settable variables:
#
-# CHECK_SHLIBS:
+# CHECK_SHLIBS
# Whether the check should be enabled or not.
#
# Default value: "yes" for PKG_DEVELOPERs, "no" otherwise.
#
# Package-settable variables:
#
-# CHECK_LIBS_SUPPORTED:
+# CHECK_LIBS_SUPPORTED
# Whether the check should be enabled for this package or not.
#
# Default value: yes
diff --git a/mk/depends/bsd.depends.mk b/mk/depends/bsd.depends.mk
index 3559aa5d943..945a1aced86 100644
--- a/mk/depends/bsd.depends.mk
+++ b/mk/depends/bsd.depends.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.depends.mk,v 1.16 2008/02/07 21:36:13 rillig Exp $
+# $NetBSD: bsd.depends.mk,v 1.17 2008/02/20 10:43:55 rillig Exp $
#
# This Makefile fragment is included by bsd.pkg.mk and provides all
# variables and targets related to dependencies.
@@ -9,7 +9,7 @@
#
# The following variables may be set by the pkgsrc user:
#
-# SKIP_DEPENDS: YesNo
+# SKIP_DEPENDS
# Whether to run the ``depends'' phase. This is probably only
# useful for pkgsrc developers.
#