diff options
author | wiz <wiz> | 2000-07-28 10:33:56 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-07-28 10:33:56 +0000 |
commit | 46c4f8c2c2eed037fee73ca91838634011bbf1d4 (patch) | |
tree | 645721463659c2eb41c243dc65126304596e7750 /editors/vim/Makefile | |
parent | 6e71d0ba90b1f2c7464e5aa7cc5537586fb1f184 (diff) | |
download | pkgsrc-46c4f8c2c2eed037fee73ca91838634011bbf1d4.tar.gz |
Add USE_CURSES for packages that need curses functionality that only
got added in 1.4Y; on older version of NetBSD, ncurses will be used.
Replace previous code that did the same, but wasn't shared.
Diffstat (limited to 'editors/vim/Makefile')
-rw-r--r-- | editors/vim/Makefile | 35 |
1 files changed, 10 insertions, 25 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile index d22ba349717..e022dfdad6f 100644 --- a/editors/vim/Makefile +++ b/editors/vim/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2000/06/25 11:50:32 pooka Exp $ +# $NetBSD: Makefile,v 1.34 2000/07/28 10:33:57 wiz Exp $ .include "../vim-share/Makefile.common" @@ -13,33 +13,11 @@ CPPFLAGS+= -I${LOCALBASE}/include # for ncurses' termcap.h LDFLAGS+= -L${LOCALBASE}/lib # for -lncurses CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" +USE_CURSES= yes + ALL_TARGET= vim INSTALL_TARGET= installvimbin -.include "../../mk/bsd.prefs.mk" - -.if ${OPSYS} == "NetBSD" -GOOD_CURSES= 1.4[Y-Z] 1.4Z[A-Z] 1.[5-9]* - -.for PATTERN in ${GOOD_CURSES} -.if ${OS_VERSION:M${PATTERN}} != "" -CURSES_GOOD?= #defined -.endif -.endfor -.endif - -.if ${OPSYS} == "SunOS" -CURSES_GOOD?= #defined -.endif - -.if defined(CURSES_GOOD) -CPPFLAGS= -CONFIGURE_ARGS+= --with-tlib=curses -.else -DEPENDS+= ncurses>=4.2:../../devel/ncurses -CONFIGURE_ARGS+= --with-tlib=ncurses -.endif - post-install: for f in rvim rview ; do \ ${RM} -f ${PREFIX}/bin/$$f; \ @@ -47,3 +25,10 @@ post-install: done .include "../../mk/bsd.pkg.mk" + +.if ${NEED_NCURSES} == "YES" +CONFIGURE_ARGS+= --with-tlib=ncurses +.else +CPPFLAGS= +CONFIGURE_ARGS+= --with-tlib=curses +.endif |