1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00
freebsd-ports/Mk/Uses/gettext-tools.mk
Tobias C. Berner aa25396790 framework: cleanup conditional-indentations in Mk/
Run Tools/scripts/indent_make_if.pl on all of Mk.

These white space changes contribute greatly to the readability of those files.
As we have a version control system, finding out the reasons for the changes
prior to these white space changes is still easily possible

Differential Revision:	https://reviews.freebsd.org/D35024
Reviewed by:		portmgr (rene, bapt)
2022-04-24 12:00:20 +02:00

24 lines
525 B
Makefile

# 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: tijl@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