Gentoo Archives: gentoo-commits

From: "Olivier Crete (tester)" <tester@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/gst-plugins-good: ChangeLog gst-plugins-good-0.10.14.ebuild
Date: Mon, 30 Mar 2009 04:40:58
Message-Id: E1Lo9Iu-0002Ke-Kx@stork.gentoo.org
1 tester 09/03/30 04:40:56
2
3 Modified: ChangeLog
4 Added: gst-plugins-good-0.10.14.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.6.7/cvs/Linux i686)
8
9 Revision Changes Path
10 1.59 media-libs/gst-plugins-good/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/gst-plugins-good/ChangeLog?rev=1.59&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/gst-plugins-good/ChangeLog?rev=1.59&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/gst-plugins-good/ChangeLog?r1=1.58&r2=1.59
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-good/ChangeLog,v
19 retrieving revision 1.58
20 retrieving revision 1.59
21 diff -u -r1.58 -r1.59
22 --- ChangeLog 5 Dec 2008 20:49:09 -0000 1.58
23 +++ ChangeLog 30 Mar 2009 04:40:56 -0000 1.59
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/gst-plugins-good
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-good/ChangeLog,v 1.58 2008/12/05 20:49:09 ssuominen Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-good/ChangeLog,v 1.59 2009/03/30 04:40:56 tester Exp $
30 +
31 +*gst-plugins-good-0.10.14 (30 Mar 2009)
32 +
33 + 30 Mar 2009; Olivier CrĂȘte <tester@g.o>
34 + +gst-plugins-good-0.10.14.ebuild:
35 + Version bump
36
37 *gst-plugins-good-0.10.11 (05 Dec 2008)
38
39
40
41
42 1.1 media-libs/gst-plugins-good/gst-plugins-good-0.10.14.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/gst-plugins-good/gst-plugins-good-0.10.14.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/gst-plugins-good/gst-plugins-good-0.10.14.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gst-plugins-good-0.10.14.ebuild
48 ===================================================================
49 # Copyright 1999-2009 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-0.10.14.ebuild,v 1.1 2009/03/30 04:40:56 tester Exp $
52
53 # order is important, gnome2 after gst-plugins
54 inherit gst-plugins-good gst-plugins10 gnome2 eutils flag-o-matic libtool
55
56 DESCRIPTION="Basepack of plugins for gstreamer"
57 HOMEPAGE="http://gstreamer.net/"
58 SRC_URI="http://gstreamer.freedesktop.org/src/${PN}/${P}.tar.bz2"
59
60 LICENSE="LGPL-2.1"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
62 IUSE=""
63
64 RDEPEND=">=media-libs/gst-plugins-base-0.10.22
65 >=media-libs/gstreamer-0.10.22
66 >=dev-libs/liboil-0.3.14"
67 DEPEND="${RDEPEND}
68 >=sys-devel/gettext-0.11.5
69 dev-util/pkgconfig
70 !<media-libs/gst-plugins-bad-0.10.10"
71
72 # overrides the eclass
73 src_unpack() {
74 unpack ${A}
75 # Required for FreeBSD sane .so versioning
76 elibtoolize
77 }
78
79 src_compile() {
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 gst-plugins-good_src_configure \
86 --with-default-audiosink=autoaudiosink \
87 --with-default-visualizer=goom
88
89 emake || die "emake failed."
90 }
91
92 # override eclass
93 src_install() {
94 gnome2_src_install
95 }
96
97 DOCS="AUTHORS README RELEASE"
98
99 pkg_postinst () {
100 gnome2_pkg_postinst
101
102 echo
103 elog "The Gstreamer plugins setup has changed quite a bit on Gentoo,"
104 elog "applications now should provide the basic plugins needed."
105 echo
106 elog "The new seperate plugins are all named 'gst-plugins-<plugin>'."
107 elog "To get a listing of currently available plugins execute 'emerge -s gst-plugins-'."
108 elog "In most cases it shouldn't be needed though to emerge extra plugins."
109 }
110
111 pkg_postrm() {
112 gnome2_pkg_postrm
113 }