Gentoo Archives: gentoo-commits

From: "Mart Raudsepp (leio)" <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/gstreamer: ChangeLog gstreamer-0.10.32.ebuild
Date: Thu, 24 Feb 2011 05:19:10
Message-Id: 20110224051857.D5CEF20054@flycatcher.gentoo.org
1 leio 11/02/24 05:18:57
2
3 Modified: ChangeLog
4 Added: gstreamer-0.10.32.ebuild
5 Log:
6 Version bump. valve, input-selector and output-selector elements have matured and moved from gst-plugins-bad to here, while ignoring the old ones if -bad isn't upgraded yet. Lots of performance improvements in heavily-used code paths. Many other improvements and bug fixes.
7
8 (Portage version: 2.2.0_alpha10/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.281 media-libs/gstreamer/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/ChangeLog?rev=1.281&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/ChangeLog?rev=1.281&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/ChangeLog?r1=1.280&r2=1.281
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/gstreamer/ChangeLog,v
20 retrieving revision 1.280
21 retrieving revision 1.281
22 diff -u -r1.280 -r1.281
23 --- ChangeLog 20 Feb 2011 21:51:05 -0000 1.280
24 +++ ChangeLog 24 Feb 2011 05:18:57 -0000 1.281
25 @@ -1,6 +1,14 @@
26 # ChangeLog for media-libs/gstreamer
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gstreamer/ChangeLog,v 1.280 2011/02/20 21:51:05 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gstreamer/ChangeLog,v 1.281 2011/02/24 05:18:57 leio Exp $
30 +
31 +*gstreamer-0.10.32 (24 Feb 2011)
32 +
33 + 24 Feb 2011; Mart Raudsepp <leio@g.o> +gstreamer-0.10.32.ebuild:
34 + Version bump. valve, input-selector and output-selector elements have
35 + matured and moved from gst-plugins-bad to here, while ignoring the old
36 + ones if -bad isn't upgraded yet. Lots of performance improvements in
37 + heavily-used code paths. Many other improvements and bug fixes.
38
39 20 Feb 2011; Markus Meier <maekke@g.o> gstreamer-0.10.31.ebuild:
40 arm stable, bug #353434
41
42
43
44 1.1 media-libs/gstreamer/gstreamer-0.10.32.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/gstreamer-0.10.32.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/gstreamer-0.10.32.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gstreamer-0.10.32.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-libs/gstreamer/gstreamer-0.10.32.ebuild,v 1.1 2011/02/24 05:18:57 leio Exp $
54
55 EAPI=2
56
57 inherit eutils multilib versionator
58
59 # Create a major/minor combo for our SLOT and executables suffix
60 PV_MAJ_MIN=$(get_version_component_range '1-2')
61
62 DESCRIPTION="Streaming media framework"
63 HOMEPAGE="http://gstreamer.sourceforge.net"
64 SRC_URI="http://${PN}.freedesktop.org/src/${PN}/${P}.tar.bz2"
65
66 LICENSE="LGPL-2"
67 SLOT=${PV_MAJ_MIN}
68 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
69 IUSE="+introspection nls test"
70
71 RDEPEND=">=dev-libs/glib-2.22:2
72 dev-libs/libxml2
73 introspection? ( >=dev-libs/gobject-introspection-0.6.3 )
74 !<media-libs/gst-plugins-base-0.10.26"
75 # ^^ queue2 move, mustn't have both libgstcoreleements.so and libgstqueue2.so at runtime providing the element at once
76 DEPEND="${RDEPEND}
77 dev-util/pkgconfig
78 nls? ( sys-devel/gettext )"
79 # dev-util/gtk-doc-am # Only if eautoreconf'ing
80
81 src_configure() {
82 # Disable static archives, dependency tracking and examples
83 # to speed up build time
84 econf \
85 --disable-static \
86 --disable-dependency-tracking \
87 $(use_enable nls) \
88 --disable-valgrind \
89 --disable-examples \
90 --enable-check \
91 $(use_enable introspection) \
92 $(use_enable test tests) \
93 --with-package-name="GStreamer ebuild for Gentoo" \
94 --with-package-origin="http://packages.gentoo.org/package/media-libs/gstreamer"
95 }
96
97 src_install() {
98 emake DESTDIR="${D}" install || die "emake install failed."
99 dodoc AUTHORS ChangeLog NEWS MAINTAINERS README RELEASE
100
101 # Remove unversioned binaries to allow SLOT installations in future
102 cd "${D}"/usr/bin
103 local gst_bins
104 for gst_bins in $(ls *-${PV_MAJ_MIN}); do
105 rm -f ${gst_bins/-${PV_MAJ_MIN}/}
106 done
107 }