diff options
author | Piotr Jaroszyński <peper@gentoo.org> | 2007-06-28 13:46:45 +0000 |
---|---|---|
committer | Piotr Jaroszyński <peper@gentoo.org> | 2007-06-28 13:46:45 +0000 |
commit | fcda23526f9290f2ed8d8e3bc02cc3965ae97726 (patch) | |
tree | 0fcd84cbce56d8c64915944024117ec6cddd9332 /eclass | |
parent | mv pyme-0.7.0-swig-compatibility.patch pyme-swig-compatibility.patch as we us... (diff) | |
download | gentoo-2-fcda23526f9290f2ed8d8e3bc02cc3965ae97726.tar.gz gentoo-2-fcda23526f9290f2ed8d8e3bc02cc3965ae97726.tar.bz2 gentoo-2-fcda23526f9290f2ed8d8e3bc02cc3965ae97726.zip |
(QA) Fix broken epatch handling wrt bug #109551.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gst-plugins.eclass | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/eclass/gst-plugins.eclass b/eclass/gst-plugins.eclass index 31a5e28086b6..985bb00f41fc 100644 --- a/eclass/gst-plugins.eclass +++ b/eclass/gst-plugins.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins.eclass,v 1.33 2006/09/01 16:46:28 zaheerm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins.eclass,v 1.34 2007/06/28 13:46:45 peper Exp $ # Author : foser <foser@gentoo.org> @@ -48,6 +48,11 @@ HOMEPAGE="http://gstreamer.freedesktop.org/modules/gst-plugins.html" LICENSE="GPL-2" SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2" +if [ ${PV} == "0.8.11" ]; then + SRC_URI="${SRC_URI} + http://dev.gentooexperimental.org/~peper/distfiles/gst-plugins-0.8.11-conffix.patch.bz2" +fi + SLOT=${PV_MAJ_MIN} S=${WORKDIR}/${MY_P} @@ -142,7 +147,7 @@ gst-plugins_src_unpack() { # apply patch to fix broken configure in 0.8.11 cd ${S} if [ ${PV} == "0.8.11" ]; then - epatch ${FILESDIR}/../../../media-libs/gst-plugins/files/gst-plugins-0.8.11-conffix.patch + epatch "${WORKDIR}/gst-plugins-0.8.11-conffix.patch" AT_M4DIR="-I m4 -I common/m4" eautoreconf elibtoolize |