pkgsrc/editors/vim-xaw/Makefile
jlam c4e71c5e7a CPPFLAGS is now passed to MAKE_ENV and CONFIGURE_ENV by bsd.pkg.mk, so
adapt by moving CPPFLAGS settings to top-level, and removing explicit
inclusion of CPPFLAGS into MAKE_ENV and CONFIGURE_ENV.
2001-06-11 06:34:17 +00:00

47 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.12 2001/06/11 06:34:31 jlam Exp $
.include "../vim-share/Makefile.common"
PKGNAME= vim-xaw-${VIM_VERSION}
COMMENT= Vim editor (vi clone) with X11 Athena GUI
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
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.prefs.mk"
.if ${NEED_NCURSES} == "YES"
CONFIGURE_ARGS+= --with-tlib=ncurses
CPPFLAGS+= -I${LOCALBASE}/include # for ncurses' termcap.h
LDFLAGS+= -L${LOCALBASE}/lib # for -lncurses
.else
CONFIGURE_ARGS+= --with-tlib=curses
.endif
.include "../../mk/bsd.pkg.mk"
.if (${XAW_TYPE} == "standard")
MAKE_ENV+= XAW_LIB=Xaw
.else
MAKE_ENV+= XAW_LIB=Xaw3d
.endif