blob: 8026f03c57ec727258d140cf5ea65b3511a049e4 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit eutils toolchain-funcs flag-o-matic git-2
DESCRIPTION="Qt GUI version of the Vim text editor"
HOMEPAGE="https://bitbucket.org/equalsraf/vim-qt/overview"
EGIT_REPO_URI="git://gitorious.org/${PN}/${PN}.git
https://gitorious.org/${PN}/${PN}.git"
LICENSE="vim"
SLOT="0"
KEYWORDS=""
IUSE="acl cscope debug gpm nls perl python ruby"
COMMON_DEPEND="
app-admin/eselect-vi
=app-editors/vim-core-7.3.487
sys-libs/ncurses
>=x11-libs/qt-core-4.7.0:4
>=x11-libs/qt-gui-4.7.0:4
acl? ( kernel_linux? ( sys-apps/acl ) )
cscope? ( dev-util/cscope )
gpm? ( sys-libs/gpm )
nls? ( virtual/libintl )
perl? ( dev-lang/perl )
ruby? ( dev-lang/ruby:1.8 )"
DEPEND="${COMMON_DEPEND}
sys-devel/autoconf"
RDEPEND="${COMMON_DEPEND}"
src_configure() {
use debug && append-flags "-DDEBUG"
local myconf="--with-features=huge
--enable-multibyte"
myconf+=" $(use_enable acl)"
myconf+=" $(use_enable gpm)"
myconf+=" $(use_enable nls)"
myconf+=" $(use_enable perl perlinterp)"
myconf+=" $(use_enable python pythoninterp)"
myconf+=" $(use_enable ruby rubyinterp)"
myconf+=" --enable-gui=qt --with-vim-name=qvim --with-x"
if ! use cscope ; then
sed -i -e '/# define FEAT_CSCOPE/d' src/feature.h || \
die "couldn't disable cscope"
fi
econf ${myconf}
}
src_install() {
dobin src/qvim
doicon -s 64 src/qt/icons/vim-qt.png
make_desktop_entry qvim Vim-qt vim-qt "QT;TextEditor;Development;"
}
|