1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00
freebsd-ports/Mk/Uses/gettext.mk
Olli Hauer db533faaee - use new LIB_DEPENDS notation in subversion ports
- use new LIB_DEPENDS notation in Mk/Uses to fix static svn building [1]

Approved by:	portmgr (babt@) [1]
2013-10-14 19:42:48 +00:00

32 lines
694 B
Makefile

# $FreeBSD$
#
# handle dependency on the gettext (libintl) port
#
# MAINTAINER: portmgr@FreeBSD.org
#
# Feature: gettext
# Usage: USES=gettext or USES=gettext:ARGS
# Valid ARGS: build, run, lib (default, implicit)
#
#
.if !defined(_INCLUDE_USES_GETTEXT_MK)
_INCLUDE_USES_GETTEXT_MK= yes
_GETTEXT_DEPENDS= xgettext:${PORTSDIR}/devel/gettext
.if !defined(gettext_ARGS)
gettext_ARGS= lib
.endif
.if ${gettext_ARGS} == "build"
BUILD_DEPENDS+= ${_GETTEXT_DEPENDS}
.elif ${gettext_ARGS} == "run"
RUN_DEPENDS+= ${_GETTEXT_DEPENDS}
.elif ${gettext_ARGS} == "lib"
LIB_DEPENDS+= libintl.so:${PORTSDIR}/devel/gettext
.else
IGNORE= USES=gettext - invalid args: [${gettext_ARGS}] specifed
.endif
.endif