aboutsummaryrefslogtreecommitdiff
path: root/www/lynx
diff options
context:
space:
mode:
authorRong-En Fan <rafan@FreeBSD.org>2007-07-26 17:09:40 +0000
committerRong-En Fan <rafan@FreeBSD.org>2007-07-26 17:09:40 +0000
commit99007900ceb15a2d0dab127f80632e7d6e80663d (patch)
tree3325f6dd2774e21d45e8907fb4d754ea703f0773 /www/lynx
parent220419e18a6d60cbb0a0380e95e89398ae4b3d97 (diff)
downloadports-99007900ceb15a2d0dab127f80632e7d6e80663d.tar.gz
ports-99007900ceb15a2d0dab127f80632e7d6e80663d.zip
- Since iconv is used only for i18n stuff, put it under !defined(WITHOUT_NLS)
section. PR: ports/114356 Submitted by: Helge Oldach <ports-www-lynx-jul07 at oldach.net> Approved by: maintainer timeout (20 days)
Notes
Notes: svn path=/head/; revision=196329
Diffstat (limited to 'www/lynx')
-rw-r--r--www/lynx/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/lynx/Makefile b/www/lynx/Makefile
index 05503fb6bb5f..ac071aa7ebb9 100644
--- a/www/lynx/Makefile
+++ b/www/lynx/Makefile
@@ -19,20 +19,20 @@ COMMENT= A non-graphical, text-based World-Wide Web client
CONFLICTS= lynx-current*
USE_BZIP2= yes
-USE_ICONV= yes
USE_OPENSSL= yes
WRKSRC= ${WRKDIR}/${PORTNAME}2-8-6
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--with-screen=ncurses --with-zlib --libdir="${L_LIB}" \
--enable-nsl-fork --enable-persistent-cookies --with-ssl \
- --with-curses-dir=/usr --with-libiconv-prefix="${LOCALBASE}"
+ --with-curses-dir=/usr
.if defined(WITHOUT_NLS)
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS='@comment '
.else
USE_GETTEXT= yes
-CONFIGURE_ARGS+=--enable-nls
+USE_ICONV= yes
+CONFIGURE_ARGS+=--enable-nls --with-libiconv-prefix="${LOCALBASE}"
PLIST_SUB+= NLS=''
.endif