summaryrefslogtreecommitdiff
path: root/editors/vim-gtk
diff options
context:
space:
mode:
authorjlam <jlam>2008-03-02 16:01:31 +0000
committerjlam <jlam>2008-03-02 16:01:31 +0000
commit2140c0bf8c794d6af5040bc4bdda3879c8b13f57 (patch)
treeda535d9ef18c42dd24a288f29cc71ba6ae9bbde8 /editors/vim-gtk
parenta9526517f3debc409985db94de8c125b059ac97b (diff)
downloadpkgsrc-2140c0bf8c794d6af5040bc4bdda3879c8b13f57.tar.gz
+ Remove the check for whether you can remove -liconv from the linker
command line or not -- we want to do what the user specifies via the pkgsrc PREFER_* settings. + Drop dependency on ncurses -- vim only wants a termcap library. This should fix PR pkg/38110. + Add missing dependency on gettext-lib as one of the "normal" feature sets is to build with gettext and multi-language support. Bump the PKGREVISION of vim editor packages to 1.
Diffstat (limited to 'editors/vim-gtk')
-rw-r--r--editors/vim-gtk/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/editors/vim-gtk/Makefile b/editors/vim-gtk/Makefile
index 8a55f490f69..090951db399 100644
--- a/editors/vim-gtk/Makefile
+++ b/editors/vim-gtk/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.57 2008/01/09 13:47:43 martti Exp $
+# $NetBSD: Makefile,v 1.58 2008/03/02 16:01:32 jlam Exp $
PKGNAME= vim-gtk-${VIM_VERSION}.${VIM_PATCHLEVEL}
-#PKGREVISION= 1
+PKGREVISION= 1
COMMENT= Vim editor (vi clone) with X11 GTK+ GUI
@@ -14,7 +14,7 @@ CONFLICTS+= vim-[0-9]* vim-gtk2-[0-9]* vim-motif-[0-9]*
CONFLICTS+= vim-xaw-[0-9]* vim-kde-[0-9]*
CONFIGURE_ARGS+= --enable-gui=gtk
-CONFIGURE_ARGS+= --with-tlib=ncurses
+CONFIGURE_ARGS+= --with-tlib=${BUILDLINK_LIBNAME.termcap}
BUILD_TARGET= vim
INSTALL_TARGET= installvimbin
@@ -34,8 +34,10 @@ post-install:
${LN} -s vim ${DESTDIR}${PREFIX}/bin/${f}
.endfor
-.include "../../devel/ncurses/buildlink3.mk"
+.include "../../converters/libiconv/buildlink3.mk"
+.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../x11/libXpm/buildlink3.mk"
.include "../../x11/gtk/buildlink3.mk"
+.include "../../mk/termcap.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"