mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
67ef08ef8b
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)
22 lines
368 B
Makefile
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
|