fe837ee6c6
- Loop over USES twice, once to define all *_ARGS variables and once to include Uses/*.mk. This allows all Uses/*.mk to examine arguments given to other USES entries. - Always define *_ARGS (possibly empty) and replace commas with spaces. Similar for _USES_POST. Adjust all Uses/*.mk: - defined(u_ARGS) becomes !empty(u_ARGS) - Eliminate helper variables like _*_ARGS=${*_ARGS:C/,/ /g} - Some Uses/*.mk used ":" as argument separator instead of ",", but no port used this form - Uses/cran.mk: remove unused variable VALID_ARGS and USES+=fortran which has no effect - Uses/twisted.mk: simplify handling of the case where neither "build" nor "run" arguments have been specified PR: 193931 Exp-run by: antoine Approved by: portmgr (antoine)
33 lines
805 B
Makefile
33 lines
805 B
Makefile
# $FreeBSD$
|
|
#
|
|
# handle dependency on the pkgconf port
|
|
#
|
|
# Feature: pkgconfig
|
|
# Usage: USES=pkgconfig or USES=pkgconfig:ARGS
|
|
# Valid ARGS: build (default, implicit), run, both
|
|
#
|
|
# MAINTAINER: portmgr@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_PKGCONFIG_MK)
|
|
_INCLUDE_USES_PKGCONFIG_MK= yes
|
|
|
|
_PKGCONFIG_DEPENDS= pkgconf:${PORTSDIR}/devel/pkgconf
|
|
|
|
.if empty(pkgconfig_ARGS)
|
|
pkgconfig_ARGS= build
|
|
.endif
|
|
|
|
.if ${pkgconfig_ARGS} == "build"
|
|
BUILD_DEPENDS+= ${_PKGCONFIG_DEPENDS}
|
|
CONFIGURE_ENV+= PKG_CONFIG=pkgconf
|
|
.elif ${pkgconfig_ARGS} == "run"
|
|
RUN_DEPENDS+= ${_PKGCONFIG_DEPENDS}
|
|
.elif ${pkgconfig_ARGS} == "both"
|
|
CONFIGURE_ENV+= PKG_CONFIG=pkgconf
|
|
BUILD_DEPENDS+= ${_PKGCONFIG_DEPENDS}
|
|
RUN_DEPENDS+= ${_PKGCONFIG_DEPENDS}
|
|
.else
|
|
IGNORE= USES=pkgconfig - invalid args: [${pkgconfig_ARGS}] specified
|
|
.endif
|
|
|
|
.endif
|