Gentoo Archives: gentoo-commits

From: "Mart Raudsepp (leio)" <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: gst-plugins-ugly.eclass
Date: Wed, 28 Jul 2010 06:24:48
Message-Id: 20100728062444.D374D2CE15@corvid.gentoo.org
1 leio 10/07/28 06:24:44
2
3 Modified: gst-plugins-ugly.eclass
4 Log:
5 Fix some QA warnings about missing configure options by conditional by version appending to my_gst_plugins_ugly variable, bug 285539
6
7 Revision Changes Path
8 1.19 eclass/gst-plugins-ugly.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gst-plugins-ugly.eclass?rev=1.19&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gst-plugins-ugly.eclass?rev=1.19&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gst-plugins-ugly.eclass?r1=1.18&r2=1.19
13
14 Index: gst-plugins-ugly.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/gst-plugins-ugly.eclass,v
17 retrieving revision 1.18
18 retrieving revision 1.19
19 diff -u -r1.18 -r1.19
20 --- gst-plugins-ugly.eclass 28 Jul 2010 05:17:58 -0000 1.18
21 +++ gst-plugins-ugly.eclass 28 Jul 2010 06:24:44 -0000 1.19
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2004 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-ugly.eclass,v 1.18 2010/07/28 05:17:58 leio Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-ugly.eclass,v 1.19 2010/07/28 06:24:44 leio Exp $
27
28 # Author : foser <foser@g.o>
29
30 @@ -14,7 +14,7 @@
31 # Gentoo developers responsible for gstreamer <gnome@g.o>, the application developer
32 # or the gstreamer team.
33
34 -inherit eutils gst-plugins10
35 +inherit eutils versionator gst-plugins10
36
37
38 ###
39 @@ -25,9 +25,13 @@
40 MY_P=${MY_PN}-${PV}
41 # All relevant configure options for gst-plugins-ugly
42 # need a better way to extract these.
43 -# Not necessary since -ugly-0.10.13: id3tag dvdnav
44 -my_gst_plugins_ugly="a52dec amrnb amrwb cdio dvdread dvdnav lame id3tag mad
45 -mpeg2dec sidplay twolame x264"
46 +my_gst_plugins_ugly="a52dec amrnb amrwb cdio dvdread lame mad mpeg2dec sidplay
47 +twolame x264"
48 +
49 +# dvdnav and id3tag disabled/removed since -ugly-0.10.13
50 +if ! version_is_at_least "0.10.13"; then
51 + my_gst_plugins_bad+=" dvdnav id3tag"
52 +fi
53
54 #SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2"
55 SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-ugly/${MY_P}.tar.bz2"