mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
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)
24 lines
481 B
Makefile
24 lines
481 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Provide support to use the legacy FreeBSD make
|
|
#
|
|
# Feature: fmake
|
|
# Usage: USES=fmake
|
|
#
|
|
# MAINTAINER: portmgr@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_FMAKE_MK)
|
|
_INCLUDE_USES_FMAKE_MK= yes
|
|
|
|
.if !empty(fmake_ARGS)
|
|
IGNORE= Incorrect 'USES+= fmake:${fmake_ARGS}' fmake takes no arguments
|
|
.endif
|
|
|
|
.if defined(.PARSEDIR)
|
|
FMAKE= ${LOCALBASE}/bin/fmake
|
|
BUILD_DEPENDS+= ${FMAKE}:${PORTSDIR}/devel/fmake
|
|
CONFIGURE_ENV+= MAKE=${FMAKE}
|
|
MAKE_CMD?= ${FMAKE}
|
|
.endif
|
|
.endif
|