summaryrefslogtreecommitdiff
path: root/editors/vim-gtk2
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2008-03-02 16:01:31 +0000
committerjlam <jlam@pkgsrc.org>2008-03-02 16:01:31 +0000
commit4bc2250050ae9b83470ee94408f0a363a287ba90 (patch)
treeda535d9ef18c42dd24a288f29cc71ba6ae9bbde8 /editors/vim-gtk2
parent0227bd94a2fc1d6763e3ff6ba7514c6cd2b85c57 (diff)
downloadpkgsrc-4bc2250050ae9b83470ee94408f0a363a287ba90.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-gtk2')
-rw-r--r--editors/vim-gtk2/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/editors/vim-gtk2/Makefile b/editors/vim-gtk2/Makefile
index a9c5c875c7f..74685487932 100644
--- a/editors/vim-gtk2/Makefile
+++ b/editors/vim-gtk2/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.28 2008/01/09 13:47:43 martti Exp $
+# $NetBSD: Makefile,v 1.29 2008/03/02 16:01:32 jlam Exp $
PKGNAME= vim-gtk2-${VIM_VERSION}.${VIM_PATCHLEVEL}
-#PKGREVISION= 1
+PKGREVISION= 1
COMMENT= Vim editor (vi clone) with X11 GTK2 GUI
@@ -14,7 +14,7 @@ CONFLICTS+= vim-[0-9]* vim-gtk-[0-9]* vim-motif-[0-9]*
CONFLICTS+= vim-xaw-[0-9]* vim-kde-[0-9]*
CONFIGURE_ARGS+= --enable-gui=gtk2
-CONFIGURE_ARGS+= --with-tlib=ncurses
+CONFIGURE_ARGS+= --with-tlib=${BUILDLINK_LIBNAME.termcap}
USE_TOOLS+= pkg-config
@@ -36,9 +36,11 @@ 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/libXt/buildlink3.mk"
.include "../../x11/gtk2/buildlink3.mk"
+.include "../../mk/termcap.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"