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.29.ebuild
Date: Mon, 28 Jun 2010 07:30:49
Message-Id: 20100628073045.73D1D2C3ED@corvid.gentoo.org
1 leio 10/06/28 07:30:45
2
3 Modified: ChangeLog
4 Added: gstreamer-0.10.29.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.258 media-libs/gstreamer/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/ChangeLog?rev=1.258&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/ChangeLog?rev=1.258&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/ChangeLog?r1=1.257&r2=1.258
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/gstreamer/ChangeLog,v
19 retrieving revision 1.257
20 retrieving revision 1.258
21 diff -u -r1.257 -r1.258
22 --- ChangeLog 27 Jun 2010 13:24:33 -0000 1.257
23 +++ ChangeLog 28 Jun 2010 07:30:45 -0000 1.258
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/gstreamer
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gstreamer/ChangeLog,v 1.257 2010/06/27 13:24:33 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gstreamer/ChangeLog,v 1.258 2010/06/28 07:30:45 leio Exp $
29 +
30 +*gstreamer-0.10.29 (28 Jun 2010)
31 +
32 + 28 Jun 2010; Mart Raudsepp <leio@g.o> +gstreamer-0.10.29.ebuild:
33 + Version bump
34
35 27 Jun 2010; <nixnut@g.o> gstreamer-0.10.28.ebuild:
36 ppc stable #324691
37
38
39
40 1.1 media-libs/gstreamer/gstreamer-0.10.29.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/gstreamer-0.10.29.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gstreamer/gstreamer-0.10.29.ebuild?rev=1.1&content-type=text/plain
44
45 Index: gstreamer-0.10.29.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-libs/gstreamer/gstreamer-0.10.29.ebuild,v 1.1 2010/06/28 07:30:45 leio Exp $
50
51 EAPI=2
52
53 inherit eutils multilib versionator
54
55 # Create a major/minor combo for our SLOT and executables suffix
56 PV_MAJ_MIN=$(get_version_component_range '1-2')
57
58 DESCRIPTION="Streaming media framework"
59 HOMEPAGE="http://gstreamer.sourceforge.net"
60 SRC_URI="http://${PN}.freedesktop.org/src/${PN}/${P}.tar.bz2"
61
62 LICENSE="LGPL-2"
63 SLOT=${PV_MAJ_MIN}
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
65 IUSE="nls test"
66
67 RDEPEND=">=dev-libs/glib-2.18:2
68 dev-libs/libxml2
69 !<media-libs/gst-plugins-base-0.10.26"
70 # ^^ queue2 move, mustn't have both libgstcoreleements.so and libgstqueue2.so at runtime providing the element at once
71 DEPEND="${RDEPEND}
72 dev-util/pkgconfig
73 nls? ( sys-devel/gettext )"
74
75 src_configure() {
76 # Disable static archives, dependency tracking and examples
77 # to speed up build time
78 econf \
79 --disable-static \
80 --disable-dependency-tracking \
81 $(use_enable nls) \
82 --disable-valgrind \
83 --disable-examples \
84 --enable-check \
85 --disable-introspection \
86 $(use_enable test tests) \
87 --with-package-name="GStreamer ebuild for Gentoo" \
88 --with-package-origin="http://packages.gentoo.org/package/media-libs/gstreamer"
89 }
90
91 src_install() {
92 emake DESTDIR="${D}" install || die "emake install failed."
93 dodoc AUTHORS ChangeLog NEWS MAINTAINERS README RELEASE
94
95 # Remove unversioned binaries to allow SLOT installations in future
96 cd "${D}"/usr/bin
97 local gst_bins
98 for gst_bins in $(ls *-${PV_MAJ_MIN}); do
99 rm -f ${gst_bins/-${PV_MAJ_MIN}/}
100 done
101 }