pkgsrc/editors/vim-xaw/Makefile
wiz d63de2f4a3 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.
2000-07-28 10:33:56 +00:00

45 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.8 2000/07/28 10:33:57 wiz Exp $
.include "../vim-share/Makefile.common"
PKGNAME= vim-xaw-${VIM_VERSION}
DEPENDS+= vim-share-${VIM_VERSION}:../vim-share
CONFLICTS= vim-[0-9]* vim-gtk-*
USE_X11= yes
USE_XAW= yes
USE_CURSES= yes
CONFIGURE_ARGS+= --enable-gui=athena
CPPFLAGS+= -I${LOCALBASE}/include # for ncurses' termcap.h
LDFLAGS+= -L${LOCALBASE}/lib # for -lncurses
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}"
ALL_TARGET= vim
INSTALL_TARGET= installvimbin
post-install:
for f in gvim.1 gview.1 rgvim.1 rgview.1; do \
${RM} -f ${PREFIX}/man/man1/$$f; \
${LN} -s vim.1 ${PREFIX}/man/man1/$$f; \
done
for f in gvim gview rgvim rgview rvim rview; do \
${RM} -f ${PREFIX}/bin/$$f; \
${LN} -s vim ${PREFIX}/bin/$$f; \
done
.include "../../mk/bsd.pkg.mk"
.if (${XAW_TYPE} == "standard")
MAKE_ENV+= XAW_LIB=Xaw
.else
MAKE_ENV+= XAW_LIB=Xaw3d
.endif
.if ${NEED_NCURSES} == "YES"
CONFIGURE_ARGS+= --with-tlib=ncurses
.else
CPPFLAGS=
CONFIGURE_ARGS+= --with-tlib=curses
.endif