- Remove USES=fmake. It was created to help migration from

old FreeBSD make (pmake) and there are no more users of it left in
  the ports tree.

Differential Revision:	https://reviews.freebsd.org/D12634
Approved by:	portmgr (bapt)
This commit is contained in:
Alex Kozlov 2017-10-20 17:23:47 +00:00
parent 8314647367
commit 62a17a809f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=452546
2 changed files with 7 additions and 21 deletions

View File

@ -10,6 +10,13 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
20171020:
AUTHOR: ak@FreeBSD.org
The USES=fmake has been removed. It was created to help migration from
old FreeBSD make (pmake) and there are no more users of it left in
the ports tree.
20171012:
AUTHOR: mat@FreeBSD.org

View File

@ -1,21 +0,0 @@
# $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
FMAKE= ${LOCALBASE}/bin/fmake
BUILD_DEPENDS+= ${FMAKE}:devel/fmake
CONFIGURE_ENV+= MAKE=${FMAKE}
MAKE_CMD= ${FMAKE}
.endif