Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gettext-tools.mk « Uses « Mk « ports « test - github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce7e8bd712c24b9ca55221ce85f17c22bc79ccda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# $FreeBSD: head/Mk/Uses/gettext-tools.mk 411970 2016-03-27 01:23:25Z bapt $
#
# 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:	portmgr@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