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.35.ebuild
Date: Thu, 30 Jun 2011 11:16:54
Message-Id: 20110630111643.9AAFB20054@flycatcher.gentoo.org
1 leio 11/06/30 11:16:43
2
3 Modified: ChangeLog
4 Added: gstreamer-0.10.35.ebuild
5 Log:
6 Version bump. Don't let the upstream build system always pass -g (honoring CFLAGS in make.conf about it). New funnel element for N-to-1 pipe fitting. New progress message API. Index reporting support in gst-launch. Lots of performance improvements, bug fixes and other improvements.
7
8 (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.294 media-libs/gstreamer/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/ChangeLog?rev=1.294&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/ChangeLog?rev=1.294&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/ChangeLog?r1=1.293&r2=1.294
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/gstreamer/ChangeLog,v
20 retrieving revision 1.293
21 retrieving revision 1.294
22 diff -u -r1.293 -r1.294
23 --- ChangeLog 9 Jun 2011 16:00:02 -0000 1.293
24 +++ ChangeLog 30 Jun 2011 11:16:43 -0000 1.294
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.293 2011/06/09 16:00:02 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gstreamer/ChangeLog,v 1.294 2011/06/30 11:16:43 leio Exp $
30 +
31 +*gstreamer-0.10.35 (30 Jun 2011)
32 +
33 + 30 Jun 2011; Mart Raudsepp <leio@g.o> +gstreamer-0.10.35.ebuild:
34 + Version bump. Don't let the upstream build system always pass -g (honoring
35 + CFLAGS in make.conf about it). New funnel element for N-to-1 pipe fitting.
36 + New progress message API. Index reporting support in gst-launch. Lots of
37 + performance improvements, bug fixes and other improvements.
38
39 09 Jun 2011; Jeroen Roovers <jer@g.o> gstreamer-0.10.32-r1.ebuild:
40 Stable for HPPA (bug #368281).
41
42
43
44 1.1 media-libs/gstreamer/gstreamer-0.10.35.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/gstreamer-0.10.35.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/gstreamer-0.10.35.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gstreamer-0.10.35.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.35.ebuild,v 1.1 2011/06/30 11:16:43 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 ~mips ~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 # Disable debug, as it only affects -g passing (debugging symbols), this must done through make.conf in gentoo
85 econf \
86 --disable-static \
87 --disable-dependency-tracking \
88 $(use_enable nls) \
89 --disable-valgrind \
90 --disable-examples \
91 --disable-debug \
92 --enable-check \
93 $(use_enable introspection) \
94 $(use_enable test tests) \
95 --with-package-name="GStreamer ebuild for Gentoo" \
96 --with-package-origin="http://packages.gentoo.org/package/media-libs/gstreamer"
97 }
98
99 src_install() {
100 emake DESTDIR="${D}" install || die "emake install failed."
101 dodoc AUTHORS ChangeLog NEWS MAINTAINERS README RELEASE
102
103 # Remove unversioned binaries to allow SLOT installations in future
104 cd "${D}"/usr/bin
105 local gst_bins
106 for gst_bins in $(ls *-${PV_MAJ_MIN}); do
107 rm -f ${gst_bins/-${PV_MAJ_MIN}/}
108 done
109 }