# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils vim-doc DESCRIPTION="A small utility which allows debugging from within vim" HOMEPAGE="http://clewn.sourceforge.net" SRC_URI="mirror://sourceforge/clewn/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 amd64" IUSE="" DEPEND=">=app-editors/gvim-7.0 sys-libs/readline sys-devel/gdb" RDEPEND=${RDEPEND} pkg_setup() { if ! built_with_use app-editors/gvim netbeans ; then eerror "Please (re)emerge gvim with netbeans USE flag on before " eerror "emerging clewn" die "please (re)emerge app-editors/gvim with USE='netbeans'" fi } src_install() { dodoc README ChangeLog COPYING dobin clewn } pkg_preinst() { dodir /usr/share/vim/vimfiles/ dodir /usr/share/vim/vimfiles/doc dodir /usr/share/vim/vimfiles/macros/ dodir /usr/share/vim/vimfiles/syntax/ cp ${S}/runtime/clewn.vim ${D}/usr/share/vim/vimfiles/ cp ${S}/runtime/doc/clewn.txt ${D}/usr/share/vim/vimfiles/doc/ cp ${S}/runtime/macros/clewn_mappings.vim ${D}/usr/share/vim/vimfiles/macros/ cp ${S}/runtime/syntax/gdbvar.vim ${D}/usr/share/vim/vimfiles/syntax/ } pkg_postinst() { update_vim_helptags }