Date: Mon, 2 Sep 2013 16:38:56 +0000 (UTC) From: Boris Samorodov <bsam@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326029 - head/sysutils/jfbterm Message-ID: <201309021638.r82Gcu5K080764@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bsam Date: Mon Sep 2 16:38:56 2013 New Revision: 326029 URL: http://svnweb.freebsd.org/changeset/ports/326029 Log: Just use USES+=iconv (delete non-functional if-then-else code). Modified: head/sysutils/jfbterm/Makefile Modified: head/sysutils/jfbterm/Makefile ============================================================================== --- head/sysutils/jfbterm/Makefile Mon Sep 2 16:34:22 2013 (r326028) +++ head/sysutils/jfbterm/Makefile Mon Sep 2 16:38:56 2013 (r326029) @@ -54,20 +54,10 @@ MAN1= ${PORTNAME}.1 MAN5= ${PORTNAME}.conf.5 .endif -.if !${PORT_OPTIONS:MICONV} -MAKE_ENV+= WITHOUT_ICONV= -.endif - -.if !exists(/usr/include/iconv.h) -. if ${PORT_OPTIONS:MICONV} -. if !defined(NO_SHARED) +.if ${PORT_OPTIONS:MICONV} USES+= iconv -. else -BUILD_DEPENDS+= ${LOCALBASE}/lib/libiconv.a:${PORTSDIR}/converters/libiconv -. endif -. else -BUILD_DEPENDS+= ${LOCALBASE}/include/iconv.h:${PORTSDIR}/converters/libiconv -. endif +.else +MAKE_ENV+= WITHOUT_ICONV= .endif .if ${PORT_OPTIONS:MPNG}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309021638.r82Gcu5K080764>