blob: 477f966d7eddc67f43efd0ed84dac537d91a6dca (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-core/vim-core-6.1-r3.ebuild,v 1.8 2002/12/09 18:48:04 rphillips Exp $
VIMPATCH="vimpatch-1-263.tar.bz2"
inherit vim
DESCRIPTION="vim, gvim and kvim shared files"
KEYWORDS="~x86 ppc ~sparc ~alpha"
DEPEND="dev-util/cscope
sys-libs/libtermcap-compat
>=sys-libs/ncurses-5.2-r2
gpm? ( >=sys-libs/gpm-1.19.3 )
perl? ( sys-devel/perl )
python? ( dev-lang/python )
ruby? ( >=dev-lang/ruby-1.6.4 )"
src_compile() {
local myconf
use nls && myconf="--enable-multibyte" || myconf="--disable-nls"
myconf="$myconf --disable-perlinterp --disable-pythoninterp --disable-rubyinterp"
myconf="$myconf --disable-gpm"
# This should fix a sandbox violation.
addwrite "${SSH_TTY}"
#
# Build a nogui version, this will install as /usr/bin/vim
#
./configure \
--prefix=/usr --mandir=/usr/share/man --host=$CHOST \
--with-features=tiny $myconf \
--enable-gui=no --without-x \
|| die "vim configure failed"
# Parallel make does not work
make tools || die "vim make failed"
cd ${S}
rm src/vim
}
src_install() {
mkdir -p $D/usr/{bin,share/man/man1,share/vim}
cd src
make installruntime installhelplinks installmacros installtutor installtools install-languages install-icons DESTDIR=$D \
BINDIR=/usr/bin MANDIR=/usr/share/man DATADIR=/usr/share || die "make install failed"
# Docs
dodoc README*
cd $D/usr/share/doc/$PF
ln -s ../../vim/*/doc $P
#fix problems with vim not finding its data files.
dodir /etc/env.d
echo "VIMRUNTIME=/usr/share/vim/vim${vim_version/.}" \
>${D}/etc/env.d/40vim
}
|