freebsd-ports/Mk/Uses/gettext.mk
Mathieu Arnold 5d33e04596
framework: Remove $FreeBSD$
Where appropriate fiddle with a few other things.
2021-04-06 16:27:10 +02:00

19 lines
454 B
Makefile

# Sets a library dependency on gettext-runtime and a build dependency
# on gettext-tools. Same as "USES=gettext-runtime gettext-tools".
#
# Feature: gettext
# Usage: USES=gettext
#
# MAINTAINER: portmgr@FreeBSD.org
.if !defined(_INCLUDE_USES_GETTEXT_MK)
_INCLUDE_USES_GETTEXT_MK= yes
.if !empty(gettext_ARGS)
IGNORE= USES=gettext does not take arguments
.endif
.include "${USESDIR}/gettext-runtime.mk"
.include "${USESDIR}/gettext-tools.mk"
.endif