diff options
author | heinz <heinz@pkgsrc.org> | 2007-05-18 23:46:31 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2007-05-18 23:46:31 +0000 |
commit | 6c7d7fef17fca381c433ccee6da7668474e9c0b7 (patch) | |
tree | b6dee7f9c834298b44c78c0bc799c11f04ae8798 /editors/vim-motif | |
parent | 9bd43d73a17b7add066206d063a7090f8c97aad4 (diff) | |
download | pkgsrc-6c7d7fef17fca381c433ccee6da7668474e9c0b7.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')
-rw-r--r-- | editors/vim-motif/Makefile | 19 |
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" |