diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2007-03-26 20:04:34 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2007-03-26 20:04:34 +0000 |
commit | 329e32ab7f41430be67428ece347fa0313ece634 (patch) | |
tree | c8969fb0f7c1f430139bd85c5bed445f1ba97cbe /eclass/vim.eclass | |
parent | cleanup pkg_setup graphical warning (diff) | |
download | gentoo-2-329e32ab7f41430be67428ece347fa0313ece634.tar.gz gentoo-2-329e32ab7f41430be67428ece347fa0313ece634.tar.bz2 gentoo-2-329e32ab7f41430be67428ece347fa0313ece634.zip |
Remove virtual/x11 depends in some eclasses
Diffstat (limited to 'eclass/vim.eclass')
-rw-r--r-- | eclass/vim.eclass | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index 342b8f6d4965..2eb134adec2b 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.162 2007/03/21 03:40:22 pioto Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.163 2007/03/26 20:04:34 genstef Exp $ # Authors: # Ryan Phillips <rphillips@gentoo.org> @@ -81,10 +81,9 @@ else if [[ "${MY_PN}" == "vim" ]] ; then IUSE="${IUSE} vim-with-x minimal" # see bug #111979 for modular X deps - DEPEND="${DEPEND} vim-with-x? ( || ( - ( x11-libs/libXt x11-libs/libX11 x11-libs/libSM x11-proto/xproto ) - virtual/x11 ) )" - RDEPEND="${RDEPEND} vim-with-x? ( || ( x11-libs/libXt virtual/x11 ) )" + DEPEND="${DEPEND} vim-with-x? ( x11-libs/libXt x11-libs/libX11 + x11-libs/libSM x11-proto/xproto )" + RDEPEND="${RDEPEND} vim-with-x? ( x11-libs/libXt )" elif [[ "${MY_PN}" == "gvim" ]] ; then if version_is_at_least "6.3.086" ; then IUSE="${IUSE} gnome gtk motif" |