pkgsrc/editors/vim-motif/Makefile
jmmv c75010e99f Make nvi and vim* use the alternatives system to install wrappers for
bin/vi, bin/ex and bin/view.  Bump their PKGREVISIONs.

vim-kde is an exception because it currently installs programs with these
names.  So, as it's currently marked as vulnerable and as I don't have KDE
installed ATM, I'm marking it as conflicting.
2005-01-25 13:48:54 +00:00

38 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.11 2005/01/25 13:48:54 jmmv Exp $
PKGNAME= vim-motif-${VIM_VERSION}.${VIM_PATCHLEVEL}
PKGREVISION= 1
COMMENT= Vim editor (vi clone) with X11 Motif GUI
.include "../vim-share/Makefile.common"
DEPENDS+= vim-share-${VIM_VERSION}.${VIM_PATCHLEVEL}:../vim-share
CONFLICTS+= vim-[0-9]* vim-gtk-[0-9]* vim-gtk2-[0-9]*
CONFLICTS+= vim-xaw-[0-9]* vim-kde-[0-9]*
USE_X11= yes
CONFIGURE_ARGS+= --enable-gui=motif
CONFIGURE_ARGS+= --with-tlib=ncurses
CONFIGURE_ENV+= BUILDLINK_DIR="${BUILDLINK_DIR}"
MAKE_ENV+= BUILDLINK_DIR="${BUILDLINK_DIR}"
BUILD_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 "../../devel/ncurses/buildlink3.mk"
.include "../../graphics/xpm/buildlink3.mk"
.include "../../mk/motif.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"