mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
421767bd88
The infrastructure Makefiles PR: 206569 Exp run by: antoine Differential Revision: D5047
26 lines
530 B
Makefile
26 lines
530 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Handle dependency on the gettext-tools port
|
|
#
|
|
# Feature: gettext-tools
|
|
# Usage: USES=gettext-tools or USES=gettext-tools:ARGS
|
|
# Valid ARGS: build (default), run
|
|
#
|
|
# MAINTAINER: portmgr@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_GETTEXT_TOOLS_MK)
|
|
_INCLUDE_USES_GETTEXT_TOOLS_MK= yes
|
|
|
|
.if empty(gettext-tools_ARGS)
|
|
gettext-tools_ARGS= build
|
|
.endif
|
|
|
|
.if ${gettext-tools_ARGS:Mbuild}
|
|
BUILD_DEPENDS+= msgfmt:devel/gettext-tools
|
|
.endif
|
|
.if ${gettext-tools_ARGS:Mrun}
|
|
RUN_DEPENDS+= msgfmt:devel/gettext-tools
|
|
.endif
|
|
|
|
.endif
|