a02a37ca13
This is a bugfix release of Vim. Since Vim 6.2 hundreds of reported problems have been fixed. Also included are new and updated syntax files, translated menus and messages.
30 lines
790 B
Makefile
30 lines
790 B
Makefile
# $NetBSD: Makefile,v 1.53 2004/06/21 08:23:48 martti Exp $
|
|
|
|
.include "../vim-share/Makefile.common"
|
|
|
|
PKGNAME= vim-${VIM_VERSION}.${VIM_PATCHLEVEL}
|
|
#PKGREVISION= 1
|
|
|
|
COMMENT= Vim editor (vi clone) without GUI
|
|
|
|
DEPENDS+= vim-share-${VIM_VERSION}.${VIM_PATCHLEVEL}:../vim-share
|
|
|
|
CONFLICTS+= vim-gtk-[0-9]* vim-gtk2-[0-9]* vim-motif-[0-9]*
|
|
CONFLICTS+= vim-xaw-[0-9]*
|
|
|
|
CONFIGURE_ARGS+= --enable-gui=no --without-x
|
|
CONFIGURE_ARGS+= --with-tlib=ncurses
|
|
CONFIGURE_ARGS+= --enable-multibyte
|
|
|
|
ALL_TARGET= vim
|
|
INSTALL_TARGET= installvimbin
|
|
|
|
post-install:
|
|
for f in rvim rview ; do \
|
|
${RM} -f ${PREFIX}/bin/$$f; \
|
|
${LN} -s vim ${PREFIX}/bin/$$f; \
|
|
done
|
|
|
|
.include "../../devel/ncurses/buildlink3.mk"
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|