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/gst-plugins-bad: gst-plugins-bad-1.2.3.ebuild ChangeLog
Date: Sat, 01 Mar 2014 08:27:55
Message-Id: 20140301082752.2D1722004C@flycatcher.gentoo.org
1 leio 14/03/01 08:27:52
2
3 Modified: ChangeLog
4 Added: gst-plugins-bad-1.2.3.ebuild
5 Log:
6 Version bump. Many MPEG-TS demuxer, various codec parser and DVD subtitle fixes
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.137 media-libs/gst-plugins-bad/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-bad/ChangeLog?rev=1.137&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-bad/ChangeLog?rev=1.137&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-bad/ChangeLog?r1=1.136&r2=1.137
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-bad/ChangeLog,v
20 retrieving revision 1.136
21 retrieving revision 1.137
22 diff -u -r1.136 -r1.137
23 --- ChangeLog 22 Oct 2013 07:20:12 -0000 1.136
24 +++ ChangeLog 1 Mar 2014 08:27:52 -0000 1.137
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/gst-plugins-bad
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-bad/ChangeLog,v 1.136 2013/10/22 07:20:12 ago Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-bad/ChangeLog,v 1.137 2014/03/01 08:27:52 leio Exp $
31 +
32 +*gst-plugins-bad-1.2.3 (01 Mar 2014)
33 +
34 + 01 Mar 2014; <leio@g.o> +gst-plugins-bad-1.2.3.ebuild:
35 + Version bump. Many MPEG-TS demuxer, various codec parser and DVD subtitle
36 + fixes
37
38 22 Oct 2013; Agostino Sarubbo <ago@g.o> gst-plugins-bad-1.0.10.ebuild:
39 Stable for sparc, wrt bug #480908
40
41
42
43 1.1 media-libs/gst-plugins-bad/gst-plugins-bad-1.2.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-bad/gst-plugins-bad-1.2.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-bad/gst-plugins-bad-1.2.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gst-plugins-bad-1.2.3.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-bad/gst-plugins-bad-1.2.3.ebuild,v 1.1 2014/03/01 08:27:52 leio Exp $
53
54 EAPI="5"
55
56 inherit eutils flag-o-matic gst-plugins-bad gst-plugins10
57
58 DESCRIPTION="Less plugins for GStreamer"
59 HOMEPAGE="http://gstreamer.freedesktop.org/"
60
61 LICENSE="LGPL-2"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
63 IUSE="egl +introspection +orc vnc"
64
65 # FIXME: we need to depend on mesa to avoid automagic on egl
66 # dtmf plugin moved from bad to good in 1.2
67 # X11 is automagic for now, upstream #709530
68 RDEPEND="
69 >=dev-libs/glib-2.32:2
70 >=media-libs/gst-plugins-base-1.2:${SLOT}
71 >=media-libs/gstreamer-1.2:${SLOT}
72 egl? ( media-libs/mesa[egl] )
73 introspection? ( >=dev-libs/gobject-introspection-1.31.1 )
74 orc? ( >=dev-lang/orc-0.4.17 )
75
76 !<media-libs/gst-plugins-good-1.1:${SLOT}
77 "
78 DEPEND="${RDEPEND}
79 >=dev-util/gtk-doc-am-1.12
80 "
81
82 src_configure() {
83 strip-flags
84 replace-flags "-O3" "-O2"
85 filter-flags "-fprefetch-loop-arrays" # (Bug #22249)
86
87 gst-plugins10_src_configure \
88 $(use_enable introspection) \
89 $(use_enable orc) \
90 $(use_enable vnc librfb) \
91 --disable-examples \
92 --disable-debug \
93 --with-egl-window-system=$(usex egl x11 none)
94 }
95
96 src_compile() {
97 default
98 }
99
100 src_install() {
101 DOCS="AUTHORS ChangeLog NEWS README RELEASE"
102 default
103 prune_libtool_files --modules
104 }