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-plugins/gst-plugins-libav: ChangeLog gst-plugins-libav-1.2.0.ebuild
Date: Sun, 29 Sep 2013 21:15:33
Message-Id: 20130929211529.DE6112004C@flycatcher.gentoo.org
1 eva 13/09/29 21:15:29
2
3 Modified: ChangeLog
4 Added: gst-plugins-libav-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.28 media-plugins/gst-plugins-libav/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-libav/ChangeLog?rev=1.28&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-libav/ChangeLog?rev=1.28&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-libav/ChangeLog?r1=1.27&r2=1.28
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-libav/ChangeLog,v
20 retrieving revision 1.27
21 retrieving revision 1.28
22 diff -u -r1.27 -r1.28
23 --- ChangeLog 6 Aug 2013 19:54:13 -0000 1.27
24 +++ ChangeLog 29 Sep 2013 21:15:29 -0000 1.28
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-plugins/gst-plugins-libav
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-libav/ChangeLog,v 1.27 2013/08/06 19:54:13 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-libav/ChangeLog,v 1.28 2013/09/29 21:15:29 eva Exp $
30 +
31 +*gst-plugins-libav-1.2.0 (29 Sep 2013)
32 +
33 + 29 Sep 2013; Gilles Dartiguelongue <eva@g.o>
34 + +gst-plugins-libav-1.2.0.ebuild:
35 + Version bump.
36
37 *gst-plugins-libav-1.1.0_pre20130128-r1 (06 Aug 2013)
38
39
40
41
42 1.1 media-plugins/gst-plugins-libav/gst-plugins-libav-1.2.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-libav/gst-plugins-libav-1.2.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/gst-plugins-libav/gst-plugins-libav-1.2.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gst-plugins-libav-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-plugins/gst-plugins-libav/gst-plugins-libav-1.2.0.ebuild,v 1.1 2013/09/29 21:15:29 eva Exp $
52
53 EAPI="5"
54
55 inherit eutils flag-o-matic
56
57 MY_PN="gst-libav"
58 DESCRIPTION="FFmpeg based gstreamer plugin"
59 HOMEPAGE="http://gstreamer.freedesktop.org/modules/gst-libav.html"
60 SRC_URI="http://gstreamer.freedesktop.org/src/${MY_PN}/${MY_PN}-${PV}.tar.xz"
61
62 LICENSE="GPL-2"
63 SLOT="1.0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
65 IUSE="+orc"
66
67 RDEPEND="
68 media-libs/gstreamer:1.0
69 media-libs/gst-plugins-base:1.0
70 >=virtual/ffmpeg-9
71 orc? ( >=dev-lang/orc-0.4.16 )
72 "
73 DEPEND="${RDEPEND}
74 >=dev-util/gtk-doc-am-1.12
75 virtual/pkgconfig
76 "
77
78 S="${WORKDIR}/${MY_PN}-${PV}"
79
80 src_prepare() {
81 sed -e 's/sleep 15//' -i configure.ac configure || die
82 }
83
84 src_configure() {
85 GST_PLUGINS_BUILD=""
86 # always use system ffmpeg/libav if possible
87 econf \
88 --disable-maintainer-mode \
89 --with-package-name="Gentoo GStreamer ebuild" \
90 --with-package-origin="http://www.gentoo.org" \
91 --disable-fatal-warnings \
92 --with-system-libav \
93 $(use_enable orc)
94 }
95
96 src_compile() {
97 # Don't build with -Werror
98 emake ERROR_CFLAGS=
99 }
100
101 src_install() {
102 DOCS="AUTHORS ChangeLog NEWS README TODO"
103 default
104 prune_libtool_files --modules
105 }
106
107 pkg_postinst() {
108 if has_version "media-video/ffmpeg"; then
109 elog "Please note that upstream uses media-video/libav"
110 elog "rather than media-video/ffmpeg. If you encounter any"
111 elog "issues try to move from ffmpeg to libav."
112 fi
113 }