svn commit: r326029 - head/sysutils/jfbterm

Boris Samorodov bsam at FreeBSD.org
Mon Sep 2 16:38:57 UTC 2013


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}


More information about the svn-ports-all mailing list