diff options
author | Remi Cardona <remi@gentoo.org> | 2008-10-25 11:10:54 +0000 |
---|---|---|
committer | Remi Cardona <remi@gentoo.org> | 2008-10-25 11:10:54 +0000 |
commit | 82b27b846310c718f99c2993fc68483d1d9cc582 (patch) | |
tree | 8db8dd0c4f6c78f7bd6a0922c81f5220816335f3 /eclass | |
parent | Add call to intltoolize, fix bug #244184. (diff) | |
download | historical-82b27b846310c718f99c2993fc68483d1d9cc582.tar.gz historical-82b27b846310c718f99c2993fc68483d1d9cc582.tar.bz2 historical-82b27b846310c718f99c2993fc68483d1d9cc582.zip |
add blockers to the gnome-python-common eclass
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gnome-python-common.eclass | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/eclass/gnome-python-common.eclass b/eclass/gnome-python-common.eclass index 6a13401a6229..ed07d9c8f04d 100644 --- a/eclass/gnome-python-common.eclass +++ b/eclass/gnome-python-common.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome-python-common.eclass,v 1.3 2008/09/16 12:51:03 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome-python-common.eclass,v 1.4 2008/10/25 11:10:54 remi Exp $ # Original Author: Arun Raghavan <ford_prefect@gentoo.org> (based on the # gnome-python-desktop eclass by Jim Ramsay <lack@gentoo.org>) @@ -43,7 +43,12 @@ fi S="${WORKDIR}/${G_PY_PN}-${PV}" -RDEPEND="~dev-python/${G_PY_PN}-base-${PV}" +# add blockers, we can probably remove them later on +if [[ $${G_PY_PN} == "gnome-python-extras" ]]; then + RDEPEND="!<=dev-python/gnome-python-extras-2.19.1-r2" +fi + +RDEPEND="${RDEPEND} ~dev-python/${G_PY_PN}-base-${PV}" DEPEND="${RDEPEND} dev-util/pkgconfig" |