1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-18 03:46:03 +00:00
freebsd-ports/Mk/Uses/iconv.mk
Marcus von Appen 67ef08ef8b Introduces USES= iconv to replace USE_ICONV.
It takes no arguments.

This deprecates USE_ICONV, please convert your ports.
USE_ICONV will be removed as soon as it is no more used in
the ports tree.

Approved by:	portmgr (bapt)
2013-04-26 20:44:59 +00:00

22 lines
368 B
Makefile

# $FreeBSD$
#
# handle dependency on the iconv port
#
# MAINTAINER: portmgr@FreeBSD.org
#
# Feature: iconv
# Usage: USES=iconv
# Valid ARGS: does not require args
#
#
.if !defined(_INCLUDE_USES_ICONV_MK)
_INCLUDE_USES_ICONV_MK= yes
.if defined(iconv_ARGS)
IGNORE= USES=iconv does not require args
.endif
LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv
.endif