diff options
author | 2012-05-30 21:33:47 -0400 | |
---|---|---|
committer | 2012-05-30 21:33:47 -0400 | |
commit | d0f398664cc95b7f9389524054e7ae56f4183118 (patch) | |
tree | 0b4f96de6ae79766aaf615c963d4f5e283594fcd /app-editors | |
parent | More format fixes (diff) | |
download | Armageddon-d0f398664cc95b7f9389524054e7ae56f4183118.tar.gz Armageddon-d0f398664cc95b7f9389524054e7ae56f4183118.tar.bz2 Armageddon-d0f398664cc95b7f9389524054e7ae56f4183118.zip |
Tidying up the ebuild to conform to EAPI format and minor fixes.
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/vim-qt/Manifest | 2 | ||||
-rw-r--r-- | app-editors/vim-qt/vim-qt-9999.ebuild | 30 |
2 files changed, 16 insertions, 16 deletions
diff --git a/app-editors/vim-qt/Manifest b/app-editors/vim-qt/Manifest index db1f12c..aad3ae5 100644 --- a/app-editors/vim-qt/Manifest +++ b/app-editors/vim-qt/Manifest @@ -1 +1 @@ -EBUILD vim-qt-9999.ebuild 1580 RMD160 9492368d9126ab2890954d0895b91c6c39f77d96 SHA1 0711d6ea6962692548b3a8f66b12a399ae8edcce SHA256 ffc8e022018d95c7bf9d0c99c1b7e49184440c9c2c7ccb4181616e52f0a39478 +EBUILD vim-qt-9999.ebuild 1554 RMD160 2a6b2a312711e6e830c0e6c55eae4d221fbb1c1a SHA1 89f4c239fff66f953c1a051812177be7446230c9 SHA256 4e2204320eb5e631b44530cbe5ba6e6fe7b6f6c45508f6803a0d623bec4f4859 diff --git a/app-editors/vim-qt/vim-qt-9999.ebuild b/app-editors/vim-qt/vim-qt-9999.ebuild index 8b65058..330a462 100644 --- a/app-editors/vim-qt/vim-qt-9999.ebuild +++ b/app-editors/vim-qt/vim-qt-9999.ebuild @@ -21,12 +21,12 @@ DEPEND=" >=sys-apps/sed-4 sys-devel/autoconf >=sys-libs/ncurses-5.2-r2 - gpm? ( >=sys-libs/gpm-1.19.3 ) - nls? ( virtual/libintl ) - cscope? ( dev-util/cscope ) - perl? ( dev-lang/perl ) - acl? ( kernel_linux? ( sys-apps/acl ) ) - ruby? ( =dev-lang/ruby-1.8* ) + gpm? ( >=sys-libs/gpm-1.19.3 ) + nls? ( virtual/libintl ) + cscope? ( dev-util/cscope ) + perl? ( dev-lang/perl ) + acl? ( kernel_linux? ( sys-apps/acl ) ) + ruby? ( =dev-lang/ruby-1.8* ) !<app-vim/align-30-r1 !<app-vim/vimbuddy-0.9.1-r1 !<app-vim/autoalign-11 @@ -40,21 +40,21 @@ src_configure() { use debug && append-flags "-DDEBUG" - myconf="--with-features=huge \ + myconf="--with-features=huge --enable-multibyte" - myconf+="$(use_enable gpm)" - myconf+="$(use_enable perl perlinterp)" - myconf+="$(use_enable python pythoninterp)" - myconf+="$(use_enable ruby rubyinterp)" - myconf+="$(use_enable nls)" - myconf+="$(use_enable acl)" - myconf+="--enable-gui=qt --with-vim-name=qvim --with-x" + myconf+=" $(use_enable gpm)" + myconf+=" $(use_enable perl perlinterp)" + myconf+=" $(use_enable python pythoninterp)" + 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 - econf ${myconf} || die "vim-qt configure failed" + econf ${myconf} } src_install() { |