blob: a534d54403d1d5525f181727ca000ce192e3bd56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# 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"
IUSE=""
DEPEND=">=app-editors/gvim-7.0
sys-libs/readline"
RDEPEND=${RDEPEND}
S=${WORKDIR}/${PN}
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.txt CHANGELOG
dobin clewn
dodir /usr/share/vim/vimfiles
tar -xzf ${S}/runtime/clewn_runtime.tgz -C ${D}/usr/share/vim/vimfiles
}
pkg_postinst() {
update_vim_helptags
}
|