diff options
author | Elijah El Lazkani <ThyArmageddon+GentooOverlay@Gmail.com> | 2012-05-31 09:32:38 -0400 |
---|---|---|
committer | Elijah El Lazkani <ThyArmageddon+GentooOverlay@Gmail.com> | 2012-05-31 09:32:38 -0400 |
commit | f3d5514668a3d60a20785ca1d861dc4e2d6ef4a5 (patch) | |
tree | f4a1401f80bd8130aaef5c416c6cda9b85fea4e2 /app-editors | |
parent | Added granr with a bug fix causing it to crash when clicking on (diff) | |
download | Armageddon-f3d5514668a3d60a20785ca1d861dc4e2d6ef4a5.tar.gz Armageddon-f3d5514668a3d60a20785ca1d861dc4e2d6ef4a5.tar.bz2 Armageddon-f3d5514668a3d60a20785ca1d861dc4e2d6ef4a5.zip |
Added a vim-core dependency and fixed trailing white spaces.
Manifest was deleted as of thin-manifest.
Diffstat (limited to 'app-editors')
-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} } |