pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc Removed colons from variable names so they are accessi...
details: https://anonhg.NetBSD.org/pkgsrc/rev/8901e1d4e23a
branches: trunk
changeset: 538869:8901e1d4e23a
user: rillig <rillig%pkgsrc.org@localhost>
date: Wed Feb 20 10:43:55 2008 +0000
description:
Removed colons from variable names so they are accessible to "bmake
help".
diffstat:
lang/python/pyversion.mk | 23 +++++++++++++++--------
mk/check/check-headers.mk | 4 ++--
mk/check/check-portability.mk | 10 +++++-----
mk/check/check-shlibs.mk | 6 +++---
mk/depends/bsd.depends.mk | 4 ++--
5 files changed, 27 insertions(+), 20 deletions(-)
diffs (147 lines):
diff -r 58829d2bc5a5 -r 8901e1d4e23a lang/python/pyversion.mk
--- a/lang/python/pyversion.mk Wed Feb 20 10:42:21 2008 +0000
+++ b/lang/python/pyversion.mk Wed Feb 20 10:43:55 2008 +0000
@@ -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= 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 -r 58829d2bc5a5 -r 8901e1d4e23a mk/check/check-headers.mk
--- a/mk/check/check-headers.mk Wed Feb 20 10:42:21 2008 +0000
+++ b/mk/check/check-headers.mk Wed Feb 20 10:43:55 2008 +0000
@@ -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 -r 58829d2bc5a5 -r 8901e1d4e23a mk/check/check-portability.mk
--- a/mk/check/check-portability.mk Wed Feb 20 10:42:21 2008 +0000
+++ b/mk/check/check-portability.mk Wed Feb 20 10:43:55 2008 +0000
@@ -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 -r 58829d2bc5a5 -r 8901e1d4e23a mk/check/check-shlibs.mk
--- a/mk/check/check-shlibs.mk Wed Feb 20 10:42:21 2008 +0000
+++ b/mk/check/check-shlibs.mk Wed Feb 20 10:43:55 2008 +0000
@@ -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 -r 58829d2bc5a5 -r 8901e1d4e23a mk/depends/bsd.depends.mk
--- a/mk/depends/bsd.depends.mk Wed Feb 20 10:42:21 2008 +0000
+++ b/mk/depends/bsd.depends.mk Wed Feb 20 10:43:55 2008 +0000
@@ -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.
#
Home |
Main Index |
Thread Index |
Old Index