diff options
Diffstat (limited to 'app-editors/vim-qt/vim-qt-9999.ebuild')
-rw-r--r-- | app-editors/vim-qt/vim-qt-9999.ebuild | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/app-editors/vim-qt/vim-qt-9999.ebuild b/app-editors/vim-qt/vim-qt-9999.ebuild index 330a462..3526495 100644 --- a/app-editors/vim-qt/vim-qt-9999.ebuild +++ b/app-editors/vim-qt/vim-qt-9999.ebuild @@ -9,7 +9,7 @@ inherit toolchain-funcs 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/vim-qt/vim-qt.git - https://gitorious.org/vim-qt/vim-qt.git" + https://gitorious.org/vim-qt/vim-qt.git" LICENSE="vim" SLOT="0" @@ -17,10 +17,11 @@ KEYWORDS="" IUSE="nls acl cscope debug gpm perl python ruby" DEPEND=" + =app-editors/vim-core-7.3.487 >=app-admin/eselect-vi-1.1 >=sys-apps/sed-4 sys-devel/autoconf - >=sys-libs/ncurses-5.2-r2 + >=sys-libs/ncurses-5.2-r2 gpm? ( >=sys-libs/gpm-1.19.3 ) nls? ( virtual/libintl ) cscope? ( dev-util/cscope ) @@ -37,23 +38,23 @@ RDEPEND="${DEPEND}" src_configure() { local myconf - + use debug && append-flags "-DDEBUG" - + myconf="--with-features=huge - --enable-multibyte" + --enable-multibyte" myconf+=" $(use_enable gpm)" myconf+=" $(use_enable perl perlinterp)" myconf+=" $(use_enable python pythoninterp)" - myconf+=" $(use_enable ruby rubyinterp)" + myconf+=" $(use_enable ruby rubyinterp)" myconf+=" $(use_enable nls)" myconf+=" $(use_enable acl)" 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 + fi econf ${myconf} } |