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-base: ChangeLog gst-plugins-base-1.2.0.ebuild
Date: Sun, 29 Sep 2013 17:49:18
Message-Id: 20130929174914.28E782004C@flycatcher.gentoo.org
1 eva 13/09/29 17:49:14
2
3 Modified: ChangeLog
4 Added: gst-plugins-base-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.225 media-libs/gst-plugins-base/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-base/ChangeLog?rev=1.225&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-base/ChangeLog?rev=1.225&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-base/ChangeLog?r1=1.224&r2=1.225
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-base/ChangeLog,v
20 retrieving revision 1.224
21 retrieving revision 1.225
22 diff -u -r1.224 -r1.225
23 --- ChangeLog 1 Sep 2013 16:46:58 -0000 1.224
24 +++ ChangeLog 29 Sep 2013 17:49:13 -0000 1.225
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/gst-plugins-base
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-base/ChangeLog,v 1.224 2013/09/01 16:46:58 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-base/ChangeLog,v 1.225 2013/09/29 17:49:13 eva Exp $
30 +
31 +*gst-plugins-base-1.2.0 (29 Sep 2013)
32 +
33 + 29 Sep 2013; Gilles Dartiguelongue <eva@g.o>
34 + +gst-plugins-base-1.2.0.ebuild:
35 + Version bump.
36
37 *gst-plugins-base-1.0.10 (01 Sep 2013)
38
39
40
41
42 1.1 media-libs/gst-plugins-base/gst-plugins-base-1.2.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-base/gst-plugins-base-1.2.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-base/gst-plugins-base-1.2.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gst-plugins-base-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-base/gst-plugins-base-1.2.0.ebuild,v 1.1 2013/09/29 17:49:14 eva Exp $
52
53 EAPI="5"
54
55 inherit gst-plugins-base gst-plugins10
56
57 DESCRIPTION="Basepack of plugins for gstreamer"
58 HOMEPAGE="http://gstreamer.freedesktop.org/"
59
60 LICENSE="GPL-2+ LGPL-2+"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
62 IUSE="alsa +introspection ivorbis +ogg +orc +pango theora +vorbis X"
63 REQUIRED_USE="
64 ivorbis? ( ogg )
65 theora? ( ogg )
66 vorbis? ( ogg )
67 "
68
69 RDEPEND="
70 app-text/iso-codes
71 >=dev-libs/glib-2.32:2
72 >=media-libs/gstreamer-${PV}:1.0[introspection?]
73 sys-libs/zlib
74 alsa? ( >=media-libs/alsa-lib-0.9.1 )
75 introspection? ( >=dev-libs/gobject-introspection-1.31.1 )
76 ivorbis? ( media-libs/tremor )
77 ogg? ( >=media-libs/libogg-1 )
78 orc? ( >=dev-lang/orc-0.4.18 )
79 pango? ( >=x11-libs/pango-1.22 )
80 theora? ( >=media-libs/libtheora-1.1[encode] )
81 vorbis? ( >=media-libs/libvorbis-1 )
82 X? (
83 x11-libs/libX11
84 x11-libs/libXext
85 x11-libs/libXv )
86 "
87 DEPEND="${RDEPEND}
88 >=dev-util/gtk-doc-am-1.12
89 X? (
90 x11-proto/videoproto
91 x11-proto/xextproto
92 x11-proto/xproto )
93 "
94
95 src_prepare() {
96 # The AC_PATH_XTRA macro unnecessarily pulls in libSM and libICE even
97 # though they are not actually used. This needs to be fixed upstream by
98 # replacing AC_PATH_XTRA with PKG_CONFIG calls.
99 sed -i -e 's:X_PRE_LIBS -lSM -lICE:X_PRE_LIBS:' "${S}"/configure || die
100 }
101
102 src_configure() {
103 gst-plugins10_src_configure \
104 $(use_enable alsa) \
105 $(use_enable introspection) \
106 $(use_enable ivorbis) \
107 $(use_enable ogg) \
108 $(use_enable orc) \
109 $(use_enable pango) \
110 $(use_enable theora) \
111 $(use_enable vorbis) \
112 $(use_enable X x) \
113 $(use_enable X xshm) \
114 $(use_enable X xvideo) \
115 --disable-debug \
116 --disable-examples \
117 --disable-freetypetest \
118 --disable-static
119 # cdparanoia and libvisual are split out, per leio's request
120
121 # bug #366931, flag-o-matic for the whole thing is overkill
122 if [[ ${CHOST} == *86-*-darwin* ]] ; then
123 sed -i \
124 -e '/FLAGS = /s|-O[23]|-O1|g' \
125 gst/audioconvert/Makefile \
126 gst/volume/Makefile || die
127 fi
128 }
129
130 src_compile() {
131 default
132 }
133
134 src_install() {
135 DOCS="AUTHORS NEWS README RELEASE"
136 default
137 prune_libtool_files --modules
138 }