mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
5d33e04596
Where appropriate fiddle with a few other things.
21 lines
439 B
Makefile
21 lines
439 B
Makefile
# 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
|
|
|
|
# Depend specifically on makeinfo from ports
|
|
BUILD_DEPENDS+= ${LOCALBASE}/bin/makeinfo:print/texinfo
|
|
MAKEINFO?= ${LOCALBASE}/bin/makeinfo
|
|
|
|
.endif
|