Gentoo Archives: gentoo-commits

From: "Arun Raghavan (ford_prefect)" <ford_prefect@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/gst-plugins-ffmpeg: ChangeLog gst-plugins-ffmpeg-0.10.11.ebuild
Date: Sun, 30 Jan 2011 08:01:19
Message-Id: 20110130080108.E83302004E@flycatcher.gentoo.org
1 ford_prefect 11/01/30 08:01:08
2
3 Modified: ChangeLog
4 Added: gst-plugins-ffmpeg-0.10.11.ebuild
5 Log:
6 Bump to 0.10.11. Updated to ffmpeg 0.6 series (including new codecs) and some fixes/enhancements.
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.120 media-plugins/gst-plugins-ffmpeg/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-ffmpeg/ChangeLog?rev=1.120&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-ffmpeg/ChangeLog?rev=1.120&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-ffmpeg/ChangeLog?r1=1.119&r2=1.120
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-ffmpeg/ChangeLog,v
20 retrieving revision 1.119
21 retrieving revision 1.120
22 diff -u -r1.119 -r1.120
23 --- ChangeLog 5 Aug 2010 20:45:27 -0000 1.119
24 +++ ChangeLog 30 Jan 2011 08:01:08 -0000 1.120
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-plugins/gst-plugins-ffmpeg
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-ffmpeg/ChangeLog,v 1.119 2010/08/05 20:45:27 ssuominen Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-ffmpeg/ChangeLog,v 1.120 2011/01/30 08:01:08 ford_prefect Exp $
31 +
32 +*gst-plugins-ffmpeg-0.10.11 (30 Jan 2011)
33 +
34 + 30 Jan 2011; Arun Raghavan <ford_prefect@g.o>
35 + +gst-plugins-ffmpeg-0.10.11.ebuild:
36 + Bump to 0.10.11. Updated to ffmpeg 0.6 series (including new codecs) and some
37 + fixes/enhancements.
38
39 05 Aug 2010; Samuli Suominen <ssuominen@g.o>
40 gst-plugins-ffmpeg-0.10.9.ebuild:
41
42
43
44 1.1 media-plugins/gst-plugins-ffmpeg/gst-plugins-ffmpeg-0.10.11.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-ffmpeg/gst-plugins-ffmpeg-0.10.11.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-ffmpeg/gst-plugins-ffmpeg-0.10.11.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gst-plugins-ffmpeg-0.10.11.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-ffmpeg/gst-plugins-ffmpeg-0.10.11.ebuild,v 1.1 2011/01/30 08:01:08 ford_prefect Exp $
54
55 inherit flag-o-matic eutils base
56
57 PD=${FILESDIR}/${PV}
58 MY_PN=${PN/-plugins}
59 MY_P=${MY_PN}-${PV}
60
61 # Create a major/minor combo for SLOT
62 PVP=(${PV//[-\._]/ })
63 SLOT=${PVP[0]}.${PVP[1]}
64 #SLOT=0.10
65
66 DESCRIPTION="FFmpeg based gstreamer plugin"
67 HOMEPAGE="http://gstreamer.freedesktop.org/modules/gst-ffmpeg.html"
68 SRC_URI="http://gstreamer.freedesktop.org/src/${MY_PN}/${MY_P}.tar.bz2"
69
70 LICENSE="GPL-2"
71 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
72 IUSE=""
73
74 S=${WORKDIR}/${MY_P}
75
76 RDEPEND=">=media-libs/gstreamer-0.10.25
77 >=media-libs/gst-plugins-base-0.10.25
78 >=dev-libs/liboil-0.3.6"
79 DEPEND="${RDEPEND}
80 dev-util/pkgconfig"
81
82 src_compile() {
83 append-flags -fno-strict-aliasing
84
85 econf
86 emake || die "emake failed."
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install || die "emake install failed."
91 dodoc AUTHORS ChangeLog NEWS README TODO
92 }