421767bd88
The infrastructure Makefiles PR: 206569 Exp run by: antoine Differential Revision: D5047
23 lines
392 B
Makefile
23 lines
392 B
Makefile
# $FreeBSD$
|
|
#
|
|
# handle dependency on the makeinfo port
|
|
#
|
|
# Feature: makeinfo
|
|
# Usage: USES=makeinfo
|
|
# Valid ARGS: none
|
|
#
|
|
# MAINTAINER: portmgr@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_MAKEINFO_MK)
|
|
_INCLUDE_USES_MAKEINFO_MK= yes
|
|
|
|
.if !empty(makeinfo_ARGS)
|
|
IGNORE= USES=makeinfo - expects no arguments
|
|
.endif
|
|
|
|
.if !exists(/usr/bin/makeinfo)
|
|
BUILD_DEPENDS+= makeinfo:print/texinfo
|
|
.endif
|
|
|
|
.endif
|