421767bd88
The infrastructure Makefiles PR: 206569 Exp run by: antoine Differential Revision: D5047
29 lines
656 B
Makefile
29 lines
656 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Handle dependency on the gettext-runtime (libintl) port
|
|
#
|
|
# Feature: gettext-runtime
|
|
# Usage: USES=gettext-runtime or USES=gettext-runtime:ARGS
|
|
# Valid ARGS: lib (default), build, run
|
|
#
|
|
# MAINTAINER: portmgr@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_GETTEXT_RUNTIME_MK)
|
|
_INCLUDE_USES_GETTEXT_RUNTIME_MK= yes
|
|
|
|
.if empty(gettext-runtime_ARGS)
|
|
gettext-runtime_ARGS= lib
|
|
.endif
|
|
|
|
.if ${gettext-runtime_ARGS:Mlib}
|
|
LIB_DEPENDS+= libintl.so:devel/gettext-runtime
|
|
.endif
|
|
.if ${gettext-runtime_ARGS:Mbuild}
|
|
BUILD_DEPENDS+= gettext:devel/gettext-runtime
|
|
.endif
|
|
.if ${gettext-runtime_ARGS:Mrun}
|
|
RUN_DEPENDS+= gettext:devel/gettext-runtime
|
|
.endif
|
|
|
|
.endif
|