Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/gst-plugins-good: ChangeLog gst-plugins-good-1.2.0.ebuild
Date: Sun, 29 Sep 2013 17:50:16
Message-Id: 20130929175010.775C82004C@flycatcher.gentoo.org
1 eva 13/09/29 17:50:10
2
3 Modified: ChangeLog
4 Added: gst-plugins-good-1.2.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.162 media-libs/gst-plugins-good/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-good/ChangeLog?rev=1.162&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-good/ChangeLog?rev=1.162&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-good/ChangeLog?r1=1.161&r2=1.162
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-good/ChangeLog,v
20 retrieving revision 1.161
21 retrieving revision 1.162
22 diff -u -r1.161 -r1.162
23 --- ChangeLog 1 Sep 2013 17:08:29 -0000 1.161
24 +++ ChangeLog 29 Sep 2013 17:50:10 -0000 1.162
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/gst-plugins-good
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-good/ChangeLog,v 1.161 2013/09/01 17:08:29 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-good/ChangeLog,v 1.162 2013/09/29 17:50:10 eva Exp $
30 +
31 +*gst-plugins-good-1.2.0 (29 Sep 2013)
32 +
33 + 29 Sep 2013; Gilles Dartiguelongue <eva@g.o>
34 + +gst-plugins-good-1.2.0.ebuild:
35 + Version bump.
36
37 *gst-plugins-good-1.0.10 (01 Sep 2013)
38
39
40
41
42 1.1 media-libs/gst-plugins-good/gst-plugins-good-1.2.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-good/gst-plugins-good-1.2.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-good/gst-plugins-good-1.2.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gst-plugins-good-1.2.0.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-good/gst-plugins-good-1.2.0.ebuild,v 1.1 2013/09/29 17:50:10 eva Exp $
52
53 EAPI="5"
54
55 # order is important, gst-plugins10 after gst-plugins-good
56 inherit eutils flag-o-matic gst-plugins-good gst-plugins10
57
58 DESCRIPTION="Basepack of plugins for gstreamer"
59 HOMEPAGE="http://gstreamer.freedesktop.org/"
60
61 LICENSE="LGPL-2.1+"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
63 IUSE="+orc"
64
65 RDEPEND="
66 >=dev-libs/glib-2.32:2
67 >=media-libs/gst-plugins-base-1:${SLOT}
68 >=media-libs/gstreamer-1:${SLOT}
69 app-arch/bzip2
70 sys-libs/zlib
71 orc? ( >=dev-lang/orc-0.4.17 )
72 "
73 DEPEND="${RDEPEND}
74 >=dev-util/gtk-doc-am-1.12
75 !<media-libs/gst-plugins-bad-1.2.0:${SLOT}
76 "
77 # dtmf plugin move
78
79 src_configure() {
80 # gst doesnt handle optimisations well
81 strip-flags
82 replace-flags "-O3" "-O2"
83 filter-flags "-fprefetch-loop-arrays" # see bug 22249
84
85 # Always enable optional bz2 support for matroska
86 # Always enable optional zlib support for qtdemux and matroska
87 # Many media files require these to work, as some container headers are often
88 # compressed, bug #291154
89 gst-plugins10_src_configure \
90 --enable-bz2 \
91 --enable-zlib \
92 --disable-examples \
93 --with-default-audiosink=autoaudiosink \
94 --with-default-visualizer=goom
95 }
96
97 src_compile() {
98 default
99 }
100
101 src_install() {
102 DOCS="AUTHORS ChangeLog NEWS README RELEASE"
103 default
104 prune_libtool_files --modules
105 }