blob: f1122c608d8b3944fa4f39c391cb33e546e0e5c0 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/vim-6.1-r17.ebuild,v 1.12 2002/12/27 17:38:35 rphillips Exp $
VIMPATCH="vimpatch-1-263.tar.bz2"
inherit vim
DESCRIPTION="Vi IMproved!"
KEYWORDS="~x86 ~sparc ~alpha"
DEPEND="app-editors/vim-core
sys-libs/libtermcap-compat
dev-util/cscope
>=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 )"
# tcltk? ( dev-lang/tcl )"
IUSE="nls perl python ruby tcltk gpm X"
src_compile() {
local myconf
myconf="--with-features=big --enable-multibyte"
use nls && myconf="$myconf --enable-multibyte"
use nls || myconf="$myconf --disable-nls"
use perl && myconf="$myconf --enable-perlinterp"
use python && myconf="$myconf --enable-pythoninterp"
use ruby && myconf="$myconf --enable-rubyinterp"
# tclinterp is BROKEN. See note above DEPEND=
# use tcltk && myconf="$myconf --enable-tclinterp"
# Added back gpm for temporary will remove if necessary, I think that I have
# fixed most of gpm so it should be fine.
use gpm || myconf="$myconf --disable-gpm"
# the console vim will change the caption of a terminal in X.
# the configure script should autodetect X being installed, so
# we'll specifically turn it off if X is not in the USE vars.
# -rphillips
use X && myconf="$myconf --with-x"
# This should fix a sandbox violation.
for file in /dev/pty/s*
do
addwrite $file
done
#
# Build a nogui version, this will install as /usr/bin/vim
#
./configure \
--prefix=/usr --mandir=/usr/share/man --host=$CHOST \
--with-features=huge --enable-cscope $myconf \
--enable-gui=no \
|| die "vim configure failed"
# move config files to /etc/vim/
echo "#define SYS_VIMRC_FILE \"/etc/vim/vimrc\"" \
>>${WORKDIR}/vim61/src/feature.h
echo "#define SYS_GVIMRC_FILE \"/etc/vim/gvimrc\"" \
>>${WORKDIR}/vim61/src/feature.h
# Parallel make does not work
make || die "vim make failed"
}
src_install() {
dobin src/vim
ln -s vim ${D}/usr/bin/vimdiff
ln -s vim ${D}/usr/bin/rvim
ln -s vim ${D}/usr/bin/ex
ln -s vim ${D}/usr/bin/view
ln -s vim ${D}/usr/bin/rview
# Default vimrc
insinto /etc/vim/
doins ${FILESDIR}/vimrc
}
pkg_postinst() {
einfo ""
einfo "gvim has now a seperate ebuild, 'emerge gvim' will install gvim"
}
|