summaryrefslogtreecommitdiff
path: root/editors/vim-motif
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-motif
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-motif')
-rw-r--r--editors/vim-motif/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/editors/vim-motif/Makefile b/editors/vim-motif/Makefile
index 38e4f9540f9..06da9e9947b 100644
--- a/editors/vim-motif/Makefile
+++ b/editors/vim-motif/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.26 2008/01/09 13:47:43 martti Exp $
+# $NetBSD: Makefile,v 1.27 2008/03/02 16:01:32 jlam Exp $
PKGNAME= vim-motif-${VIM_VERSION}.${VIM_PATCHLEVEL}
-#PKGREVISION= 1
+PKGREVISION= 1
COMMENT= Vim editor (vi clone) with X11 Motif GUI
@@ -14,7 +14,7 @@ CONFLICTS+= vim-[0-9]* vim-gtk-[0-9]* vim-gtk2-[0-9]*
CONFLICTS+= vim-xaw-[0-9]* vim-kde-[0-9]*
CONFIGURE_ARGS+= --enable-gui=motif
-CONFIGURE_ARGS+= --with-tlib=ncurses
+CONFIGURE_ARGS+= --with-tlib=${BUILDLINK_LIBNAME.termcap}
CONFIGURE_ENV+= BUILDLINK_DIR=${BUILDLINK_DIR}
MAKE_ENV+= BUILDLINK_DIR=${BUILDLINK_DIR}
@@ -37,8 +37,9 @@ 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 "../../mk/motif.buildlink3.mk"
-
+.include "../../mk/termcap.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"