diff options
author | 2006-02-06 17:45:19 +0000 | |
---|---|---|
committer | 2006-02-06 17:45:19 +0000 | |
commit | e3cc0b80aef9165976806a867f2212684eec7e6b (patch) | |
tree | 2072bd68a6e5e10e051f8f3122f67a0a099a8c5e /eclass/gst-plugins-bad.eclass | |
parent | Fixing dependencies and closing bug #121741. (diff) | |
download | historical-e3cc0b80aef9165976806a867f2212684eec7e6b.tar.gz historical-e3cc0b80aef9165976806a867f2212684eec7e6b.tar.bz2 historical-e3cc0b80aef9165976806a867f2212684eec7e6b.zip |
Fixes circular dep bug #121714
Diffstat (limited to 'eclass/gst-plugins-bad.eclass')
-rw-r--r-- | eclass/gst-plugins-bad.eclass | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/eclass/gst-plugins-bad.eclass b/eclass/gst-plugins-bad.eclass index 1db364fd5b38..54c8d8ee04e7 100644 --- a/eclass/gst-plugins-bad.eclass +++ b/eclass/gst-plugins-bad.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-bad.eclass,v 1.1 2006/01/21 01:29:12 compnerd Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-bad.eclass,v 1.2 2006/02/06 17:45:19 zaheerm Exp $ # # Original Author: Saleem Abdulrasool <compnerd@gentoo.org> @@ -19,14 +19,17 @@ MY_P=${MY_PN}-${PV} SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-bad/${MY_P}.tar.bz2" -RDEPEND=">=media-libs/gstreamer-0.10 - >=media-libs/gst-plugins-base-0.10 +# added to remove circular deps +# 6/2/2006 - zaheerm +if [ "${PN}" != "${MY_PN}" ]; then +RDEPEND="=media-libs/gstreamer-0.10* + =media-libs/gst-plugins-base-0.10* >=dev-libs/glib-2.6 >=dev-libs/liboil-0.3" DEPEND="${RDEPEND} sys-apps/sed sys-devel/gettext" - +fi S=${WORKDIR}/${MY_P} gst-plugins-bad_src_unpack() { |