diff options
author | tron <tron@pkgsrc.org> | 1999-02-12 21:32:59 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-02-12 21:32:59 +0000 |
commit | 2bd3c416530c6172747c50122aa82653152aefde (patch) | |
tree | 826aee1125d87346996cdc45723241f8e8c96da7 /editors/vim | |
parent | c4fd33ce03623c07c42547c4aff4fbb2d0b0d2ba (diff) | |
download | pkgsrc-2bd3c416530c6172747c50122aa82653152aefde.tar.gz |
Because "vim" still doesn't work with NetBSD's termcap library in X11
window mode we use "ncurses" again.
Diffstat (limited to 'editors/vim')
-rw-r--r-- | editors/vim/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile index 40f566101c7..7f510a6cc6e 100644 --- a/editors/vim/Makefile +++ b/editors/vim/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 1999/02/12 21:09:28 tron Exp $ +# $NetBSD: Makefile,v 1.15 1999/02/12 21:32:59 tron Exp $ DISTNAME= vim-5.3 CATEGORIES= editors @@ -11,10 +11,11 @@ DISTFILES= vim-5.3-src.tar.gz vim-5.3-rt.tar.gz MAINTAINER= tron@netbsd.org HOMEPAGE= http://www.vim.org/ +DEPENDS= ncurses-1.9.9g:../../devel/ncurses + LDFLAGS+= "-L${LOCALBASE}/lib" WRKSRC= ${WRKDIR}/${DISTNAME}/src GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --enable-gui=athena -CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ +CONFIGURE_ARGS+= --enable-gui=athena --with-tlib=ncurses .include "../../mk/bsd.pkg.mk" |