aboutsummaryrefslogtreecommitdiffstats
path: root/Mk/Uses/gettext.mk
blob: 9f758dde04991d3551defbb68be27bc5ab75e085 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# $FreeBSD$
#
# 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