diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2002-07-03 20:23:03 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-07-03 20:23:03 +0000 |
commit | 47a55bc07ee96ce383efe741bcb632140da54205 (patch) | |
tree | d5cba11bfd244ac00f63ba4474966faf7e38835a /editors/vim | |
parent | d7e48044a58b8ed09117e4689c7c0ceecd655bde (diff) |
Add a dependancy on libiconv, BUT ONLY do it if libiconv is already installed.
PR: 37023
Submitted by: ru
Notes
Notes:
svn path=/head/; revision=62392
Diffstat (limited to 'editors/vim')
-rw-r--r-- | editors/vim/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile index 47b70d021abd..67bcf3015477 100644 --- a/editors/vim/Makefile +++ b/editors/vim/Makefile @@ -7,7 +7,7 @@ # PORTNAME?= vim -PATCHLEVEL= 114 +PATCHLEVEL= 117 PORTVERSION= 6.1.${PATCHLEVEL} PORTREVISION?= 0 CATEGORIES?= editors @@ -125,6 +125,10 @@ MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=no --without-x --enable-multibyte" MAKE_ARGS+= CONF_OPT_PERL="--disable-perlinterp --disable-pythoninterp --disable-tclinterp --disable-rubyinterp" .endif # LITE +.if exists(${PREFIX}/lib/libiconv.so) +LIB_DEPENDS+= iconv.2:${PORTSDIR}/converters/iconv +.endif + # Until the bsd.gnome.mk people fix their damned file .if defined(WITH_GTK) USE_XLIB= yes |