blob: 1b4f0d5c270bdab84e9f5f9f1c2f7a8fce09e54d (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/gvim/gvim-7.0.91.ebuild,v 1.4 2006/10/25 16:55:17 gustavoz Exp $
inherit vim
VIM_VERSION="7.0"
VIM_SNAPSHOT="vim-7.0-r1.tar.bz2"
VIM_GENTOO_PATCHES="vim-7.0-gentoo-patches.tar.bz2"
VIM_ORG_PATCHES="vim-patches-${PV}.tar.gz"
GVIMRC_FILE_SUFFIX="-r1"
SRC_URI="${SRC_URI}
mirror://gentoo/${VIM_SNAPSHOT}
mirror://gentoo/${VIM_GENTOO_PATCHES}
mirror://gentoo/${VIM_ORG_PATCHES}"
S=${WORKDIR}/vim${VIM_VERSION/.*}
DESCRIPTION="GUI version of the Vim text editor"
KEYWORDS="alpha ~amd64 ~hppa ia64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd"
IUSE="aqua gnome gtk motif nextaw"
PROVIDE="virtual/editor"
DEPEND="${DEPEND}
~app-editors/vim-core-${PV}
|| ( x11-libs/libXext virtual/x11 )
!aqua? (
gtk? (
>=x11-libs/gtk+-2.6
virtual/xft
gnome? ( >=gnome-base/libgnomeui-2.6 )
)
!gtk? (
motif? (
x11-libs/openmotif
)
!motif? (
nextaw? (
x11-libs/neXtaw
)
!nextaw? (
|| ( x11-libs/libXaw virtual/x11 )
)
)
)
)"
|