diff options
Diffstat (limited to 'editors/vim/Makefile')
-rw-r--r-- | editors/vim/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile index bc10143b0fc..5c8a6ba0179 100644 --- a/editors/vim/Makefile +++ b/editors/vim/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 1999/10/07 17:41:49 tron Exp $ +# $NetBSD: Makefile,v 1.21 1999/11/12 16:55:11 agc Exp $ DISTNAME= vim-5.4 WRKSRC= ${WRKDIR}/${DISTNAME}/src @@ -13,8 +13,6 @@ DISTFILES= ${DISTNAME}-src${EXTRACT_SUFX} \ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.vim.org/ -DEPENDS= ncurses-4.2:../../devel/ncurses - CONFLICTS= vim-gtk-* GNU_CONFIGURE= yes @@ -24,4 +22,10 @@ CPPFLAGS+= -I${LOCALBASE}/include # for ncurses' termcap.h LDFLAGS+= -L${LOCALBASE}/lib # for -lncurses CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "NetBSD" +DEPENDS= ncurses-4.2:../../devel/ncurses +.endif + .include "../../mk/bsd.pkg.mk" |