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-good.eclass
Date: Fri, 30 Jul 2010 11:08:51
Message-Id: 20100730110845.592FA2CE15@corvid.gentoo.org
1 leio 10/07/30 11:08:44
2
3 Modified: gst-plugins-good.eclass
4 Log:
5 Prepare for gst-plugins-good-0.10.23 - oss4 system plugin moved here from -bad
6
7 Revision Changes Path
8 1.21 eclass/gst-plugins-good.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gst-plugins-good.eclass?rev=1.21&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gst-plugins-good.eclass?rev=1.21&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gst-plugins-good.eclass?r1=1.20&r2=1.21
13
14 Index: gst-plugins-good.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/gst-plugins-good.eclass,v
17 retrieving revision 1.20
18 retrieving revision 1.21
19 diff -u -r1.20 -r1.21
20 --- gst-plugins-good.eclass 28 Jul 2010 05:17:58 -0000 1.20
21 +++ gst-plugins-good.eclass 30 Jul 2010 11:08:44 -0000 1.21
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-good.eclass,v 1.20 2010/07/28 05:17:58 leio Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-good.eclass,v 1.21 2010/07/30 11:08:44 leio Exp $
27
28 # Author : foser <foser@g.o>, zaheerm <zaheerm@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 @@ -30,12 +30,20 @@
40 # sys/ plugins; rest is split plugin options in order of ./configure --help output.
41 # Good ways of validation are seeing diff of old and new configure.ac, and ./configure --help
42 #
43 -# This list is current to gst-plugins-good-0.10.21:
44 +# This list is current to gst-plugins-good-0.10.23:
45 my_gst_plugins_good="gconftool zlib bz2
46 directsound oss sunaudio osx_audio osx_video gst_v4l2 x xshm xvideo
47 aalib aalibtest annodex cairo esd esdtest flac gconf gdk_pixbuf hal jpeg
48 libcaca libdv libpng pulse dv1394 shout2 shout2test soup speex taglib wavpack"
49
50 +# When adding conditionals like below, be careful about having leading spaces in concat
51 +
52 +# sys/oss4 moved here since 0.10.23
53 +if version_is_at_least "0.10.23"; then
54 + my_gst_plugins_good+=" oss4"
55 +fi
56 +
57 +
58 #SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2"
59 SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-good/${MY_P}.tar.bz2"