89f715edf7
can't be disabled by setting it to "no" like the other variables. Besides, flavor/pkg/metadata.mk has been expecting for a long time that "no" is a valid value. Make PKG_DEVELOPER DWIM.
55 lines
1.6 KiB
Makefile
55 lines
1.6 KiB
Makefile
# $NetBSD: check-portability.mk,v 1.7 2010/08/24 19:08:29 bad Exp $
|
|
#
|
|
# This file contains some checks that are applied to the configure
|
|
# scripts to check for certain constructs that are known to cause
|
|
# problems on some platforms.
|
|
#
|
|
# The following variables may be set by the pkgsrc user in mk.conf:
|
|
#
|
|
# CHECK_PORTABILITY
|
|
# Whether to enable some portability checks for the configure
|
|
# scripts before they are run.
|
|
#
|
|
# Default value: yes for PKG_DEVELOPERs, no otherwise.
|
|
#
|
|
# The following variables may be set by the package:
|
|
#
|
|
# SKIP_PORTABILITY_CHECK
|
|
# Whether the above checks should be skipped for the current
|
|
# package.
|
|
#
|
|
# Default value: no
|
|
# Deprecated: Use CHECK_PORTABILITY_SKIP instead.
|
|
# Obsolete since 2008-02-20.
|
|
#
|
|
# 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
|
|
_PKG_VARS.check-portability= CHECK_PORTABILITY_SKIP
|
|
|
|
.if defined(PKG_DEVELOPER) && ${PKG_DEVELOPER} != "no"
|
|
CHECK_PORTABILITY?= yes
|
|
.endif
|
|
CHECK_PORTABILITY?= no
|
|
.if defined(SKIP_PORTABILITY_CHECK)
|
|
PKG_FAIL_REASON+= "[check-portability.mk] SKIP_PORTABILITY_CHECK is obsolete."
|
|
.endif
|
|
CHECK_PORTABILITY_SKIP?= # none
|
|
|
|
.if ${CHECK_PORTABILITY:M[Yy][Ee][Ss]} != ""
|
|
pre-configure-checks-hook: _check-portability
|
|
.endif
|
|
.PHONY: _check-portability
|
|
_check-portability:
|
|
@${STEP_MSG} "Checking for portability problems in extracted files"
|
|
${RUN} \
|
|
[ -d ${WRKSRC}/. ] || exit 0; \
|
|
cd ${WRKSRC}; \
|
|
env SKIP_FILTER=${CHECK_PORTABILITY_SKIP:@p@${p}) skip=yes;;@:Q} \
|
|
sh ${PKGSRCDIR}/mk/check/check-portability.sh
|