pkgsrc/editors/vim/Makefile
morr ac12539c13 Long awaited update to vim 7.3.
The most notable additions since 7.2:
- Persistent undo and undo for reload
- Blowfish encryption, encryption of the swap file
- Conceal text
- Lua interface
- Python 3 interface

Once you have installed Vim 7.3 you can find all the details about the
changes since Vim 7.2 with:
        :help version-7.3
2012-08-27 14:45:36 +00:00

32 lines
904 B
Makefile

# $NetBSD: Makefile,v 1.71 2012/08/27 14:45:36 morr Exp $
PKGNAME= vim-${VIM_VERSION}.${VIM_PATCHLEVEL}
COMMENT= Vim editor (vi clone) without GUI
PKG_DESTDIR_SUPPORT= user-destdir
.include "../../editors/vim-share/Makefile.common"
DEPENDS+= vim-share-${VIM_VERSION}.${VIM_PATCHLEVEL}{,nb*}:../../editors/vim-share
CONFLICTS+= vim-gtk-[0-9]* vim-gtk2-[0-9]* vim-motif-[0-9]*
CONFLICTS+= vim-xaw-[0-9]* vim-kde-[0-9]*
CONFIGURE_ARGS+= --enable-gui=no --without-x
CONFIGURE_ARGS+= --with-tlib=${BUILDLINK_LIBNAME.termcap}
BUILD_TARGET= vim
INSTALL_TARGET= installvimbin
TEST_TARGET= check
post-install:
.for f in rvim rview
${RM} -f ${DESTDIR}${PREFIX}/bin/${f}
${LN} -s vim ${DESTDIR}${PREFIX}/bin/${f}
.endfor
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../mk/termcap.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"