summaryrefslogtreecommitdiff
path: root/editors/vim-motif/Makefile
diff options
context:
space:
mode:
authorheinz <heinz@pkgsrc.org>2007-05-18 23:46:31 +0000
committerheinz <heinz@pkgsrc.org>2007-05-18 23:46:31 +0000
commit56b89223dc9d0b2594bfed445960f6b070af24db (patch)
treeb6dee7f9c834298b44c78c0bc799c11f04ae8798 /editors/vim-motif/Makefile
parent3797304a81f36bc47b258833a8462df8d12c1fec (diff)
downloadpkgsrc-56b89223dc9d0b2594bfed445960f6b070af24db.tar.gz
- Added support for installation to DESTDIR.
- Introduced PKGMANDIR. - check-interpreter.mk complained about dangling symlinks to vim.1 when installing to DESTDIR. Used CHECK_INTERPRETER_SKIP as a workaround.
Diffstat (limited to 'editors/vim-motif/Makefile')
-rw-r--r--editors/vim-motif/Makefile19
1 files changed, 13 insertions, 6 deletions
diff --git a/editors/vim-motif/Makefile b/editors/vim-motif/Makefile
index c86324d7641..7918a760807 100644
--- a/editors/vim-motif/Makefile
+++ b/editors/vim-motif/Makefile
@@ -1,11 +1,13 @@
-# $NetBSD: Makefile,v 1.24 2006/12/15 20:32:54 joerg Exp $
+# $NetBSD: Makefile,v 1.25 2007/05/18 23:55:53 heinz Exp $
PKGNAME= vim-motif-${VIM_VERSION}.${VIM_PATCHLEVEL}
#PKGREVISION= 1
COMMENT= Vim editor (vi clone) with X11 Motif GUI
-.include "../../editors/vim-share/Makefile.common"
+PKG_DESTDIR_SUPPORT= user-destdir
+
+.include "../../editors/vim-share/Makefile.common"
DEPENDS+= vim-share-${VIM_VERSION}.${VIM_PATCHLEVEL}{,nb*}:../../editors/vim-share
CONFLICTS+= vim-[0-9]* vim-gtk-[0-9]* vim-gtk2-[0-9]*
@@ -20,14 +22,19 @@ MAKE_ENV+= BUILDLINK_DIR=${BUILDLINK_DIR:Q}
BUILD_TARGET= vim
INSTALL_TARGET= installvimbin
+INSTALLATION_DIRS+= ${PKGMANDIR}/man1
+
+CHECK_INTERPRETER_SKIP+=${PKGMANDIR}/man1/gvim.1 ${PKGMANDIR}/man1/gview.1
+CHECK_INTERPRETER_SKIP+=${PKGMANDIR}/man1/rgvim.1 ${PKGMANDIR}/man1/rgview.1
+
post-install:
.for f in gvim.1 gview.1 rgvim.1 rgview.1
- ${RM} -f ${PREFIX:Q}/man/man1/${f:Q}
- ${LN} -s vim.1 ${PREFIX:Q}/man/man1/${f:Q}
+ ${RM} -f ${DESTDIR:Q}${PREFIX:Q}/${PKGMANDIR}/man1/${f:Q}
+ ${LN} -s vim.1 ${DESTDIR:Q}${PREFIX:Q}/${PKGMANDIR}/man1/${f:Q}
.endfor
.for f in gvim gview rgvim rgview rvim rview
- ${RM} -f ${PREFIX:Q}/bin/${f:Q}
- ${LN} -s vim ${PREFIX:Q}/bin/${f:Q}
+ ${RM} -f ${DESTDIR:Q}${PREFIX:Q}/bin/${f:Q}
+ ${LN} -s vim ${DESTDIR:Q}${PREFIX:Q}/bin/${f:Q}
.endfor
.include "../../devel/ncurses/buildlink3.mk"