blob: ea7351f826e2e3e3a9d20ef50747cc51dc65aea3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# handle dependency on the makeinfo port
#
# Feature: makeinfo
# Usage: USES=makeinfo
# Valid ARGS: none
#
# MAINTAINER: ports@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
|