Hi all,

here is a little patch to gst-plugins10.eclass fixing SLOT definition
for the new 1.2 release. Per upstream release mail, 1.* will remain
API/ABI compatible.

-- 
Gilles Dartiguelongue <[email protected]>
Gentoo
Index: gst-plugins10.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/gst-plugins10.eclass,v
retrieving revision 1.10
diff -u -B -r1.10 gst-plugins10.eclass
--- gst-plugins10.eclass	31 Jan 2013 19:59:54 -0000	1.10
+++ gst-plugins10.eclass	29 Sep 2013 14:50:58 -0000
@@ -102,7 +102,11 @@
 SRC_URI="http://gstreamer.freedesktop.org/src/${GST_ORG_MODULE}/${GST_ORG_MODULE}-${PV}.tar.${GST_TARBALL_SUFFIX}";
 
 LICENSE="GPL-2"
-SLOT="${GST_ORG_PVP}"
+case ${GST_ORG_PVP} in
+	0.10) SLOT="0.10" ;;
+	1.*) SLOT="1.0" ;;
+	*) die "Unkown gstreamer release."
+esac
 
 S="${WORKDIR}/${GST_ORG_MODULE}-${PV}"
 

Reply via email to