aboutsummaryrefslogtreecommitdiffstats
path: root/www/lynx
diff options
context:
space:
mode:
authorrafan <rafan@FreeBSD.org>2007-07-27 01:09:40 +0800
committerrafan <rafan@FreeBSD.org>2007-07-27 01:09:40 +0800
commitd4e180d557c7884d2537212fa5f3bdf00439d66c (patch)
tree32e3fc4f891e9a0ee5172381598a41de9f1666c3 /www/lynx
parentadda169b782eb97f7c1e997e160682f726a359a0 (diff)
downloadfreebsd-ports-gnome-d4e180d557c7884d2537212fa5f3bdf00439d66c.tar.gz
freebsd-ports-gnome-d4e180d557c7884d2537212fa5f3bdf00439d66c.tar.zst
freebsd-ports-gnome-d4e180d557c7884d2537212fa5f3bdf00439d66c.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)
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